Summary: - Profile ID: d9f55876ba7744e8-85f36bf268962f69 - Task Type: QUERY - Start Time: 2024-04-25 23:23:57 - End Time: 2024-04-25 23:24:04 - Total: 6s925ms - Task State: EOF - User: root - Default Db: ods_demo - Sql Statement: WITH ODS_BASE_01 AS ( --运营人员 SELECT A.USER_ID, CASE WHEN MAX(CASE WHEN A.DATA_TYPE=1 THEN A.USER_NAME ELSE NULL END) IS NOT NULL THEN MAX(CASE WHEN A.DATA_TYPE=1 THEN A.USER_NAME ELSE NULL END) ELSE MAX(CASE WHEN A.DATA_TYPE=2 THEN A.USER_NAME ELSE NULL END) END AS USER_NAME, CASE WHEN MAX(CASE WHEN A.DATA_TYPE=1 THEN A.WORK_NAME ELSE NULL END) IS NOT NULL THEN MAX(CASE WHEN A.DATA_TYPE=1 THEN A.WORK_NAME ELSE NULL END) ELSE MAX(CASE WHEN A.DATA_TYPE=2 THEN A.WORK_NAME ELSE NULL END) END AS WORK_NAME FROM ODS_EXCEL_QYWX_ZONGBU A WHERE A.TYPE_ID='01' GROUP BY A.USER_ID ) , ODS_BASE_02 AS ( --按天 平均首次回复时长 SELECT DATE_FORMAT(A.STAT_DATE, '%Y%m%d') AS STATIS_DATE, A.USER_ID,A.AVG_REPLY_TIME FROM QYWX_USER_BEHAVIOR_DATA A INNER JOIN (SELECT DISTINCT USER_ID FROM ODS_EXCEL_QYWX_ZONGBU ) B ON A.USER_ID = B.USER_ID WHERE A.STAT_DATE >=DATE'2021-01-01' AND DATE_FORMAT(A.STAT_DATE, '%Y%m') >= '202401' AND AVG_REPLY_TIME IS NOT NULL ) , ODS_BASE_03 AS ( -- 按天 当天拉黑企微好友人数 SELECT A.USER_ID, CASE WHEN A.USER_BLOCKING_TIME IS NULL THEN DATE_FORMAT(A.EXTERNAL_BLOCKING_TIME, '%Y%m%d') WHEN A.USER_BLOCKING_TIME IS NOT NULL AND A.USER_BLOCKING_TIME < A.EXTERNAL_BLOCKING_TIME THEN DATE_FORMAT(A.USER_BLOCKING_TIME, '%Y%m%d') ELSE DATE_FORMAT(A.EXTERNAL_BLOCKING_TIME, '%Y%m%d') END AS STATIS_DATE, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS QW_NUM_QXGZ FROM QYWX_USER_CONTACT_RELATION A WHERE A.EXTERNAL_BLOCKING_TIME >=DATE'2021-01-01' AND DATE_FORMAT(A.EXTERNAL_BLOCKING_TIME, '%Y%m') >='202401' --时间参数 GROUP BY A.USER_ID, CASE WHEN A.USER_BLOCKING_TIME IS NULL THEN DATE_FORMAT(A.EXTERNAL_BLOCKING_TIME, '%Y%m%d') WHEN A.USER_BLOCKING_TIME IS NOT NULL AND A.USER_BLOCKING_TIME < A.EXTERNAL_BLOCKING_TIME THEN DATE_FORMAT(A.USER_BLOCKING_TIME, '%Y%m%d') ELSE DATE_FORMAT(A.EXTERNAL_BLOCKING_TIME, '%Y%m%d') END ) , ODS_BASE_04 AS ( -- 按天 当天新增企微好友人数 SELECT A.USER_ID, DATE_FORMAT(A.ADD_TIME, '%Y%m%d') AS STATIS_DATE, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS QW_NEW FROM QYWX_USER_CONTACT_RELATION A WHERE A.ADD_TIME >=DATE'2021-01-01' AND DATE_FORMAT(A.ADD_TIME, '%Y%m') >='202401' --时间参数 GROUP BY DATE_FORMAT(A.ADD_TIME, '%Y%m%d'),A.USER_ID ) , ODS_BASE_05 AS ( SELECT DATE_FORMAT(A.JOIN_TIME, '%Y%m%d') AS STATIS_DATE, B.OWNER AS USER_ID, COUNT(DISTINCT A.UNIONID) AS GROUP_NEW FROM QYWX_GROUPCHAT_MEMBER A LEFT JOIN QYWX_GROUPCHAT_INFO B ON A.CHAT_ID = B.CHAT_ID LEFT JOIN DIM_CUSTOMER C ON A.UNIONID=C.UNIONID LEFT JOIN QYWX_EXTERNAL_USER_INFO D ON A.UNIONID=D.UNION_ID LEFT JOIN QYWX_USER_CONTACT_RELATION E ON D.EXTERNAL_USER_ID=E.EXTERNAL_USER_ID WHERE A.UNIONID IS NOT NULL AND A.TYPE=2 --1 - 企业成员2 - 外部联系人 AND E.EXTERNAL_USER_DELETE_FLAG=0 AND E.USER_DELETE_FLAG =0 --企业微信好友 AND A.JOIN_TIME >=DATE'2021-01-01' --进群时间 AND DATE_FORMAT(A.JOIN_TIME, '%Y%m') >='202401' --时间参数 GROUP BY DATE_FORMAT(A.JOIN_TIME, '%Y%m%d'),B.OWNER ) , ODS_BASE_06 AS ( SELECT DATE_FORMAT(A.SUBMIT_DATE, '%Y%m%d') AS STATIS_DATE, A.STAFF_ID AS USER_ID, COUNT(DISTINCT A.CUS_ID) AS VIPCUS_NEW FROM ODS_VIPSHOP_SALE A LEFT JOIN DIM_PRODUCT_ONLINE B ON A.PRODUCT_ID = B.PRODUCT_ID WHERE DATE_FORMAT(A.SUBMIT_DATE, '%Y%m%d') >='20240101' --时间参数 AND (A.ORDER_TYPE = '14' OR A.PRODUCT_TEMPLATE_ID IN ('1935', '1936')) --购买超会 AND A.STAFF_ID IN (SELECT DISTINCT USER_ID FROM ODS_EXCEL_QYWX_ZONGBU WHERE TYPE_ID = '01' ) --中鱼塘运营人员 AND A.PAY_STATUS = '1' AND A.ORDER_STATUS_ID <> 7 AND A.TOTAL_FEE > 0 GROUP BY DATE_FORMAT(A.SUBMIT_DATE, '%Y%m%d'),A.STAFF_ID ) , ODS_BASE_07 AS ( SELECT DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') AS STATIS_DATE, A.STAFF_ID AS USER_ID, SUM(A.TOTAL_FEE) AS AMOUNT FROM ODS_VIPSHOP_SALE A INNER JOIN (SELECT DISTINCT USER_ID FROM ODS_EXCEL_QYWX_ZONGBU ) B ON A.STAFF_ID=B.USER_ID WHERE A.PAY_STATUS=1 AND A.SUBMIT_DATE>=DATE'2021-01-01' AND DATE_FORMAT(A.SUBMIT_DATE,'%Y%m') >='202401' --时间参数 GROUP BY DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d'),A.STAFF_ID ) , ODS_BASE_08 AS ( SELECT DATE_FORMAT(E.SUBMIT_DATE,'%Y%m%d') AS STATIS_DATE, A.USER_ID AS USER_ID, SUM(E.TOTAL_FEE) AS AMOUNT_QW , --企业微信好友销售 SUM(CASE WHEN F.PRODUCT_CATEGORY_ID='A361' THEN E.TOTAL_FEE ELSE NULL END) AS AMOUNT_MM, COUNT(DISTINCT CASE WHEN (E.ORDER_TYPE='14' OR E.PRODUCT_TEMPLATE_ID IN ('1935','1936') ) AND IFNULL(E.ORDER_STATUS_ID,'') <>7 AND E.TOTAL_FEE >0 THEN E.CUS_ID ELSE NULL END) AS VIPCUS_NEW_2 FROM QYWX_USER_CONTACT_RELATION A INNER JOIN ODS_EXCEL_QYWX_ZONGBU B ON A.USER_ID=B.USER_ID AND B.TYPE_ID='01' LEFT JOIN DIM_CUSTOMER_QYWX C ON A.EXTERNAL_USER_ID=C.EXTERNAL_USER_ID LEFT JOIN DIM_CUSTOMER D ON C.CUS_ID=D.CUS_ID LEFT JOIN ODS_VIPSHOP_SALE E ON C.CUS_ID =E.CUS_ID LEFT JOIN DIM_PRODUCT_ONLINE F ON E.PRODUCT_ID=F.PRODUCT_ID WHERE A.USER_DELETE_FLAG =0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND E.SUBMIT_DATE>=A.ADD_TIME AND DATE_FORMAT(E.SUBMIT_DATE,'%Y%m%d') >='20240101' AND E.PAY_STATUS =1 GROUP BY A.USER_ID,DATE_FORMAT(E.SUBMIT_DATE,'%Y%m%d') ) , ODS_BASE_09 AS ( SELECT DATE_FORMAT(F.SUBMIT_DATE,'%Y%m%d') AS STATIS_DATE, B.OWNER AS USER_ID, SUM(F.TOTAL_FEE) AS AMOUNT_GROUP, COUNT(DISTINCT CONCAT(CONCAT(F.CUS_ID,'&'),A.CHAT_ID)) AS GROUP_CUSNUM_BUY FROM QYWX_GROUPCHAT_MEMBER A INNER JOIN (SELECT A.CHAT_ID, MAX(A.OWNER) AS OWNER FROM QYWX_GROUPCHAT_INFO A WHERE A.NAME LIKE '%五谷磨房丨食疗养生群%' AND A.IS_DELETED ='0' GROUP BY A.CHAT_ID ) B ON A.CHAT_ID = B.CHAT_ID LEFT JOIN DIM_CUSTOMER C ON A.UNIONID=C.UNIONID INNER JOIN ODS_EXCEL_QYWX_ZONGBU D ON B.OWNER=D.USER_ID AND D.TYPE_ID='01' LEFT JOIN DIM_CUSTOMER_ONLINE E ON C.CUS_ID=E.CUS_ID LEFT JOIN QYWX_GROUPCHAT_MEMBER_CURRENT K ON A.CHAT_ID=K.CHAT_ID AND A.UNIONID=K.UNIONID LEFT JOIN ODS_VIPSHOP_SALE F ON C.CUS_ID =F.CUS_ID WHERE A.UNIONID IS NOT NULL AND A.TYPE=2 --1 - 企业成员2 - 外部联系人 AND K.UNIONID IS NOT NULL --在群 AND F.PAY_STATUS =1 AND (F.ORDER_STATUS_ID <>7 OR F.ORDER_STATUS_ID IS NULL) AND DATE_FORMAT(F.SUBMIT_DATE,'%Y%m%d') >='20240101' --时间参数 GROUP BY B.OWNER,DATE_FORMAT(F.SUBMIT_DATE,'%Y%m%d') ) , ODS_BASE_10 AS ( SELECT A.USER_ID, DATE_FORMAT(A.STAT_DATE,'%Y%m%d') AS STATIS_DATE, SUM(A.CHAT_CNT)AS CHAT_CNT , --聊天总数 IFNULL(AVG(A.REPLY_PERCENTAGE)/100,1) AS REPLY_PERCENTAGE --回复占比 FROM QYWX_USER_BEHAVIOR_DATA A INNER JOIN ODS_EXCEL_QYWX_ZONGBU B ON A.USER_ID=B.USER_ID AND B.TYPE_ID='01' WHERE DATE_FORMAT(A.STAT_DATE,'%Y%m%d') >='20240101' AND DATE_FORMAT(A.STAT_DATE,'%Y%m%d') < DATE_FORMAT(NOW(),'%Y%m%d') GROUP BY A.USER_ID,DATE_FORMAT(A.STAT_DATE,'%Y%m%d') ) , ODS_BASE_11 AS ( SELECT A.YMD AS STATIS_DATE, A.USER_ID, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS COMMENT_NUM, COUNT(DISTINCT CASE WHEN A.PL_FLAG='评论' THEN A.EXTERNAL_USER_ID ELSE NULL END) AS COMMENT_NUM_PL, COUNT(DISTINCT CASE WHEN A.DZ_FLAG='点赞' THEN A.EXTERNAL_USER_ID ELSE NULL END) AS COMMENT_NUM_DZ, COUNT(DISTINCT CASE WHEN B.TOTAL_FEE >0 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS COMMENT_CUS_NUM, SUM(B.TOTAL_FEE) AS COMMENT_CUS_AMOUNT FROM (SELECT DATE_FORMAT(A.COMMENT_TIME,'%Y%m%d') AS YMD, A.MOMENT_USER_ID AS USER_ID,B.CUS_ID, A.EXTERNAL_USER_ID, MAX(CASE WHEN A.TYPE=1 THEN '评论' ELSE NULL END) AS PL_FLAG, MAX(CASE WHEN A.TYPE=2 THEN '点赞' ELSE NULL END) AS DZ_FLAG FROM QYWX_MOMENT_COMMENT_LIST A LEFT JOIN DIM_CUSTOMER_QYWX B ON A.EXTERNAL_USER_ID=B.EXTERNAL_USER_ID LEFT JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.MOMENT_USER_ID=C.USER_ID WHERE A.TYPE IN ('1', '2') --评论和点赞 AND DATE_FORMAT(A.COMMENT_TIME,'%Y%m%d') >='20240101' AND C.TYPE_ID='01' --中鱼塘 AND A.EXTERNAL_USER_ID IS NOT NULL GROUP BY DATE_FORMAT(A.COMMENT_TIME,'%Y%m%d'),A.MOMENT_USER_ID,B.CUS_ID,A.EXTERNAL_USER_ID) A LEFT JOIN ODS_VIPSHOP_SALE B ON A.CUS_ID=B.CUS_ID AND A.YMD =DATE_FORMAT(B.SUBMIT_DATE,'%Y%m%d') AND B.PAY_STATUS=1 GROUP BY A.YMD,A.USER_ID ) , ODS_BASE_12 AS ( SELECT DATE_FORMAT(A.TIMESTAMP,'%Y%m%d') AS STATIS_DATE , B.USER_ID, COUNT(DISTINCT B.CUS_ID) AS GROUP_UV FROM WEBSTAT_USER_ACTION_FACT A INNER JOIN (SELECT B.OWNER AS USER_ID,D.CUS_ID FROM QYWX_GROUPCHAT_MEMBER A LEFT JOIN QYWX_GROUPCHAT_INFO B ON A.CHAT_ID = B.CHAT_ID LEFT JOIN QYWX_GROUPCHAT_MEMBER_CURRENT C ON A.CHAT_ID=C.CHAT_ID AND A.UNIONID=C.UNIONID LEFT JOIN DIM_CUSTOMER D ON A.UNIONID=D.UNIONID WHERE A.UNIONID IS NOT NULL AND A.TYPE=2 --1 - 企业成员2 - 外部联系人 AND B.IS_DELETED ='0' --目前在群 AND B.NAME LIKE '%五谷磨房丨食疗养生群%' GROUP BY B.OWNER,D.CUS_ID ) B ON A.USER_ID=B.CUS_ID WHERE A.TIMESTAMP >='2022-05-01' AND A.TIMESTAMP >='2024-01-01' AND A.USER_ID_TYPE ='CUSTOMER_ID' GROUP BY DATE_FORMAT(A.TIMESTAMP,'%Y%m%d'),B.USER_ID ) , ODS_BASE_13 AS ( SELECT X1.STATIS_DATE,X1.USER_ID, COUNT(DISTINCT CASE WHEN X2.FLAG='拉黑' THEN X1.EXTERNAL_USER_ID ELSE NULL END) AS QW_NEW_QX, COUNT(DISTINCT CASE WHEN X3.TOTAL_FEE >0 THEN X1.EXTERNAL_USER_ID ELSE NULL END) AS QW_NEW_CUS FROM (SELECT DATE_FORMAT(A.ADD_TIME,'%Y%m%d') AS STATIS_DATE, A.USER_ID,A.EXTERNAL_USER_ID,D.CUS_ID FROM QYWX_USER_CONTACT_RELATION A INNER JOIN ODS_EXCEL_QYWX_ZONGBU B ON A.USER_ID=B.USER_ID AND B.TYPE_ID='01' LEFT JOIN DIM_CUSTOMER_QYWX C ON A.EXTERNAL_USER_ID=C.EXTERNAL_USER_ID LEFT JOIN DIM_CUSTOMER D ON C.CUS_ID=D.CUS_ID WHERE A.USER_DELETE_FLAG =0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND DATE_FORMAT(A.ADD_TIME,'%Y%m%d') >='20240101' GROUP BY A.USER_ID,DATE_FORMAT(A.ADD_TIME,'%Y%m%d'),A.EXTERNAL_USER_ID,D.CUS_ID ) X1 LEFT JOIN ( SELECT DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') AS STATIS_DATE, A.EXTERNAL_USER_ID,A.USER_ID, '拉黑' AS FLAG FROM (SELECT A.EXTERNAL_USER_ID,A.USER_ID, CASE WHEN MIN(A.USER_BLOCKING_TIME) IS NULL THEN MIN(A.EXTERNAL_BLOCKING_TIME) WHEN MIN(A.USER_BLOCKING_TIME) IS NOT NULL AND MIN(A.USER_BLOCKING_TIME) < MIN(A.USER_BLOCKING_TIME) THEN MIN(A.USER_BLOCKING_TIME) ELSE MIN(A.EXTERNAL_BLOCKING_TIME) END AS QXGZ_TIME FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_WORKER B ON A.USER_ID =B.WORKER_ID INNER JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID AND C.TYPE_ID='01' GROUP BY A.EXTERNAL_USER_ID,A.USER_ID ) A WHERE DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d'),A.EXTERNAL_USER_ID,A.USER_ID ) X2 ON X1.STATIS_DATE=X2.STATIS_DATE AND X1.USER_ID=X2.USER_ID AND X1.EXTERNAL_USER_ID=X2.EXTERNAL_USER_ID LEFT JOIN (SELECT DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') AS STATIS_DATE,A.CUS_ID, SUM(A.TOTAL_FEE) AS TOTAL_FEE FROM ODS_VIPSHOP_SALE A WHERE A.PAY_STATUS=1 AND DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d'),A.CUS_ID ) X3 ON X1.STATIS_DATE=X3.STATIS_DATE AND X1.CUS_ID=X3.CUS_ID GROUP BY X1.STATIS_DATE,X1.USER_ID ) , ODS_BASE_14 AS ( SELECT X1.YMD AS STATIS_DATE,X1.USER_ID, COUNT(DISTINCT X1.CUS_ID) AS QW_NEW_WH, COUNT(DISTINCT CASE WHEN X2.FLAG='外呼' AND X3.TOTAL_FEE>0 THEN X1.CUS_ID ELSE NULL END) AS QW_NEW_CUS_WH, COUNT(DISTINCT CASE WHEN X2.FLAG='外呼' AND X4.FLAG='拉黑' THEN X1.CUS_ID ELSE NULL END) AS QW_NEW_QX_WH FROM (SELECT DATE_FORMAT(A.ADD_TIME,'%Y%m%d') AS YMD, B.CUS_ID,A.USER_ID FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_CUSTOMER_QYWX B ON A.EXTERNAL_USER_ID=B.EXTERNAL_USER_ID WHERE DATE_FORMAT(A.ADD_TIME,'%Y%m%d') >='20240101' AND (A.STATE LIKE '%百应%' OR A.STATE LIKE '%一知%') GROUP BY DATE_FORMAT(A.ADD_TIME,'%Y%m%d'),B.CUS_ID,A.USER_ID ) X1 LEFT JOIN (SELECT DATE_FORMAT(A.START_TIME,'%Y%m%d') AS YMD, A.CALLED_PHONE_NUMBER,B.CUS_ID, '外呼' AS FLAG FROM ODS_AI_CALLING_RECORD A LEFT JOIN DIM_CUSTOMER B ON A.CALLED_PHONE_NUMBER=B.CUS_MOBILE WHERE DATE_FORMAT(A.START_TIME,'%Y%m%d') >='20240101' AND A.RESULT_STATUS IN ('已接听','ANSWERED') GROUP BY DATE_FORMAT(A.START_TIME,'%Y%m%d'),A.CALLED_PHONE_NUMBER,B.CUS_ID ) X2 ON X1.YMD=X2.YMD AND X1.CUS_ID=X2.CUS_ID LEFT JOIN (SELECT DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') AS YMD,A.CUS_ID, SUM(A.TOTAL_FEE) AS TOTAL_FEE FROM ODS_VIPSHOP_SALE A WHERE A.PAY_STATUS=1 AND DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d'),A.CUS_ID ) X3 ON X1.YMD=X3.YMD AND X1.CUS_ID=X3.CUS_ID LEFT JOIN ( SELECT DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') AS YMD, A.EXTERNAL_USER_ID,A.USER_ID,A.CUS_ID, '拉黑' AS FLAG FROM (SELECT A.EXTERNAL_USER_ID,A.USER_ID,D.CUS_ID, CASE WHEN MIN(A.USER_BLOCKING_TIME) IS NULL THEN MIN(A.EXTERNAL_BLOCKING_TIME) WHEN MIN(A.USER_BLOCKING_TIME) IS NOT NULL AND MIN(A.USER_BLOCKING_TIME) < MIN(A.USER_BLOCKING_TIME) THEN MIN(A.USER_BLOCKING_TIME) ELSE MIN(A.EXTERNAL_BLOCKING_TIME) END AS QXGZ_TIME FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_WORKER B ON A.USER_ID =B.WORKER_ID INNER JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID AND C.TYPE_ID='01' LEFT JOIN DIM_CUSTOMER_QYWX D ON A.EXTERNAL_USER_ID=D.EXTERNAL_USER_ID GROUP BY A.EXTERNAL_USER_ID,A.USER_ID,D.CUS_ID ) A WHERE DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d'),A.EXTERNAL_USER_ID,A.USER_ID,A.CUS_ID ) X4 ON X1.YMD=X4.YMD AND X1.CUS_ID=X4.CUS_ID AND X1.USER_ID=X4.USER_ID GROUP BY X1.YMD,X1.USER_ID ) , ODS_BASE_15 AS ( SELECT X1.STATIS_DATE,X1.USER_ID, COUNT(DISTINCT X1.EXTERNAL_USER_ID) AS QW_NEW_BGK, COUNT(DISTINCT CASE WHEN X2.FLAG='拉黑' THEN X1.EXTERNAL_USER_ID ELSE NULL END) AS QW_NEW_CUS_BGK, COUNT(DISTINCT CASE WHEN X3.TOTAL_FEE >0 THEN X1.EXTERNAL_USER_ID ELSE NULL END) AS QW_NEW_QX_BGK FROM (SELECT DATE_FORMAT(A.ADD_TIME,'%Y%m%d') AS STATIS_DATE, A.USER_ID,A.EXTERNAL_USER_ID,D.CUS_ID FROM QYWX_USER_CONTACT_RELATION A INNER JOIN ODS_EXCEL_QYWX_ZONGBU B ON A.USER_ID=B.USER_ID AND B.TYPE_ID='01' LEFT JOIN DIM_CUSTOMER_QYWX C ON A.EXTERNAL_USER_ID=C.EXTERNAL_USER_ID LEFT JOIN DIM_CUSTOMER D ON C.CUS_ID=D.CUS_ID WHERE A.USER_DELETE_FLAG =0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND DATE_FORMAT(A.ADD_TIME,'%Y%m%d') >='20240101' GROUP BY A.USER_ID,DATE_FORMAT(A.ADD_TIME,'%Y%m%d'),A.EXTERNAL_USER_ID,D.CUS_ID ) X1 LEFT JOIN ( SELECT DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') AS STATIS_DATE, A.EXTERNAL_USER_ID,A.USER_ID, '拉黑' AS FLAG FROM (SELECT A.EXTERNAL_USER_ID,A.USER_ID, CASE WHEN MIN(A.USER_BLOCKING_TIME) IS NULL THEN MIN(A.EXTERNAL_BLOCKING_TIME) WHEN MIN(A.USER_BLOCKING_TIME) IS NOT NULL AND MIN(A.USER_BLOCKING_TIME) < MIN(A.USER_BLOCKING_TIME) THEN MIN(A.USER_BLOCKING_TIME) ELSE MIN(A.EXTERNAL_BLOCKING_TIME) END AS QXGZ_TIME FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_WORKER B ON A.USER_ID =B.WORKER_ID INNER JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID AND C.TYPE_ID='01' GROUP BY A.EXTERNAL_USER_ID,A.USER_ID ) A WHERE DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.QXGZ_TIME,'%Y%m%d'),A.EXTERNAL_USER_ID,A.USER_ID ) X2 ON X1.STATIS_DATE=X2.STATIS_DATE AND X1.USER_ID=X2.USER_ID AND X1.EXTERNAL_USER_ID=X2.EXTERNAL_USER_ID LEFT JOIN (SELECT DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') AS STATIS_DATE,A.CUS_ID, SUM(A.TOTAL_FEE) AS TOTAL_FEE FROM ODS_VIPSHOP_SALE A WHERE A.PAY_STATUS=1 AND DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d') >='20240101' GROUP BY DATE_FORMAT(A.SUBMIT_DATE,'%Y%m%d'),A.CUS_ID ) X3 ON X1.STATIS_DATE=X3.STATIS_DATE AND X1.CUS_ID=X3.CUS_ID GROUP BY X1.STATIS_DATE,X1.USER_ID ) , ODS_BASE_16 AS ( SELECT DATE_FORMAT(D.FRIST_FANS_TIME,'%Y%m%d') AS STATIS_DATE , A.USER_ID, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS GZH_NEW_NUM FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_CUSTOMER_QYWX B ON A.EXTERNAL_USER_ID = B.EXTERNAL_USER_ID LEFT JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID LEFT JOIN DIM_CUSTOMER D ON B.UNION_ID =D.UNIONID LEFT JOIN DIM_OPENID_B E ON B.UNION_ID=E.UNIONID WHERE C.USER_NAME IS NOT NULL --中鱼塘 AND A.USER_DELETE_FLAG =0 AND A.EXTERNAL_USER_DELETE_FLAG=0 --目前是好友 AND DATE_FORMAT(D.FRIST_FANS_TIME,'%Y%m%d') >='20240101' AND D.FANS_FLAG ='Y' --关注公众号大号 GROUP BY DATE_FORMAT(D.FRIST_FANS_TIME,'%Y%m%d'),A.USER_ID ) , ODS_BASE_17 AS ( SELECT DATE_FORMAT(E.SUBSCRIBE_TIME,'%Y%m%d') AS STATIS_DATE , A.USER_ID, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS GZH_NEW_NUM_2 FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_CUSTOMER_QYWX B ON A.EXTERNAL_USER_ID = B.EXTERNAL_USER_ID LEFT JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID LEFT JOIN DIM_CUSTOMER D ON B.UNION_ID =D.UNIONID LEFT JOIN DIM_OPENID_B E ON B.UNION_ID=E.UNIONID WHERE C.USER_NAME IS NOT NULL --中鱼塘 AND A.USER_DELETE_FLAG =0 AND A.EXTERNAL_USER_DELETE_FLAG=0 --目前是好友 AND DATE_FORMAT(D.FRIST_FANS_TIME,'%Y%m%d') >='20240101' AND E.SUBSCRIBE =1 --关注公众号小号 GROUP BY DATE_FORMAT(E.SUBSCRIBE_TIME,'%Y%m%d'),A.USER_ID ) SELECT V1.* ,V2.GROUP_CUSNUM,V3.QYH_NUM,V3.QYH_NUM_GZ, V3.VIPCUS_NUM,V3.REBUY_CUSNUM_7,V3.REBUY_CUSNUM_15, V3.REBUY_CUSNUM_30,V3.REBUY_CUSNUM_45,V3.REBUY_CUSNUM_60,V3.REBUY_CUSNUM_90, V3.GZH_NUM,V3.GZH_NUM_2,V3.GZH_NUM_HIS,V3.GZH_NUM_HIS_2 FROM (SELECT 'D' AS TIME_FLAG,A.DATEKEY AS STATIS_DATE,'01' AS DATA_FLAG, B.USER_ID,B.USER_NAME, MAX(C.AVG_REPLY_TIME) AS AVG_REPLY_TIME, MAX(D.QW_NUM_QXGZ) AS QW_NUM_QXGZ, MAX(E.QW_NEW) AS QW_NEW, MAX(F.GROUP_NEW) AS GROUP_NEW, MAX(J.VIPCUS_NEW) AS VIPCUS_NEW, MAX(K.AMOUNT) AS AMOUNT, MAX(H.AMOUNT_MM) AS AMOUNT_MM, MAX(H.AMOUNT_QW) AS AMOUNT_QW, MAX(H.VIPCUS_NEW_2) AS VIPCUS_NEW_2, MAX(I.AMOUNT_GROUP) AS AMOUNT_GROUP, MAX(I.GROUP_CUSNUM_BUY) AS GROUP_CUSNUM_BUY, MAX(L.CHAT_CNT) AS CHAT_CNT, MAX(L.REPLY_PERCENTAGE) AS REPLY_PERCENTAGE, MAX(M.COMMENT_NUM) AS COMMENT_NUM, MAX(M.COMMENT_CUS_NUM) AS COMMENT_CUS_NUM, MAX(M.COMMENT_CUS_AMOUNT) AS COMMENT_CUS_AMOUNT, MAX(M.COMMENT_NUM_DZ) AS COMMENT_NUM_DZ, MAX(M.COMMENT_NUM_PL) AS COMMENT_NUM_PL, MAX(N.GROUP_UV) AS GROUP_UV, MAX(O.QW_NEW_CUS) AS QW_NEW_CUS, MAX(O.QW_NEW_QX) AS QW_NEW_QX, MAX(P.QW_NEW_CUS_WH) AS QW_NEW_CUS_WH, MAX(P.QW_NEW_QX_WH) AS QW_NEW_QX_WH, MAX(Q.QW_NEW_BGK) AS QW_NEW_BGK, MAX(Q.QW_NEW_CUS_BGK) AS QW_NEW_CUS_BGK, MAX(Q.QW_NEW_QX_BGK) AS QW_NEW_QX_BGK, MAX(R.GZH_NEW_NUM) AS GZH_NEW_NUM, MAX(S.GZH_NEW_NUM_2) AS GZH_NEW_NUM_2 FROM DIMDATE A LEFT JOIN ODS_BASE_01 B ON 1=1 LEFT JOIN ODS_BASE_02 C ON B.USER_ID=C.USER_ID AND A.DATEKEY=C.STATIS_DATE LEFT JOIN ODS_BASE_03 D ON B.USER_ID=D.USER_ID AND A.DATEKEY=D.STATIS_DATE LEFT JOIN ODS_BASE_04 E ON B.USER_ID=E.USER_ID AND A.DATEKEY=E.STATIS_DATE LEFT JOIN ODS_BASE_05 F ON B.USER_ID=F.USER_ID AND A.DATEKEY=F.STATIS_DATE LEFT JOIN ODS_BASE_06 J ON B.USER_ID=J.USER_ID AND A.DATEKEY=J.STATIS_DATE LEFT JOIN ODS_BASE_07 K ON B.USER_ID=K.USER_ID AND A.DATEKEY=K.STATIS_DATE LEFT JOIN ODS_BASE_08 H ON B.USER_ID=H.USER_ID AND A.DATEKEY=H.STATIS_DATE LEFT JOIN ODS_BASE_09 I ON B.USER_ID=I.USER_ID AND A.DATEKEY=I.STATIS_DATE LEFT JOIN ODS_BASE_10 L ON B.USER_ID=L.USER_ID AND A.DATEKEY=L.STATIS_DATE LEFT JOIN ODS_BASE_11 M ON B.USER_ID=M.USER_ID AND A.DATEKEY=M.STATIS_DATE LEFT JOIN ODS_BASE_12 N ON B.USER_ID=N.USER_ID AND A.DATEKEY=N.STATIS_DATE LEFT JOIN ODS_BASE_13 O ON B.USER_ID=O.USER_ID AND A.DATEKEY=O.STATIS_DATE LEFT JOIN ODS_BASE_14 P ON B.USER_ID=P.USER_ID AND A.DATEKEY=P.STATIS_DATE LEFT JOIN ODS_BASE_15 Q ON B.USER_ID=Q.USER_ID AND A.DATEKEY=Q.STATIS_DATE LEFT JOIN ODS_BASE_16 R ON B.USER_ID=R.USER_ID AND A.DATEKEY=R.STATIS_DATE LEFT JOIN ODS_BASE_17 S ON B.USER_ID=S.USER_ID AND A.DATEKEY=S.STATIS_DATE WHERE A.DATEKEY >='20240101' GROUP BY A.DATEKEY,B.USER_ID,B.USER_NAME ) V1 LEFT JOIN (SELECT B.OWNER AS USER_ID, COUNT(DISTINCT CASE WHEN C.UNIONID IS NOT NULL THEN A.UNIONID ELSE NULL END) AS GROUP_CUSNUM --在群人数 FROM QYWX_GROUPCHAT_MEMBER A LEFT JOIN QYWX_GROUPCHAT_INFO B ON A.CHAT_ID = B.CHAT_ID LEFT JOIN QYWX_GROUPCHAT_MEMBER_CURRENT C ON A.CHAT_ID=C.CHAT_ID AND A.UNIONID=C.UNIONID WHERE A.UNIONID IS NOT NULL AND A.TYPE=2 --1 - 企业成员2 - 外部联系人 AND B.IS_DELETED ='0' --目前在群 AND B.NAME LIKE '%五谷磨房丨食疗养生群%' GROUP BY B.OWNER ) V2 ON V1.USER_ID=V2.USER_ID LEFT JOIN (SELECT C.USER_ID, COUNT(DISTINCT A.EXTERNAL_USER_ID) AS QYH_NUM, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS QYH_NUM_GZ, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND D.VIP_CUS_STATUS=1 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS VIPCUS_NUM, --20220607 企微好友当前超会身份 COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=7 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_7, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=15 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_15, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=30 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_30, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=45 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_45, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=60 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_60, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND F.FIRST_BUY_TIME IS NOT NULL AND DATE(F.SECOND_BUY_TIME) - DATE(F.FIRST_BUY_TIME) <=90 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS REBUY_CUSNUM_90, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND E.FANS_FLAG='Y' THEN A.EXTERNAL_USER_ID ELSE NULL END) AS GZH_NUM, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND J.SUBSCRIBE=1 THEN A.EXTERNAL_USER_ID ELSE NULL END) AS GZH_NUM_2, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND (E.GZ_DATE IS NOT NULL OR E.QXGZ_DATE IS NOT NULL) THEN A.EXTERNAL_USER_ID ELSE NULL END) AS GZH_NUM_HIS, COUNT(DISTINCT CASE WHEN A.USER_DELETE_FLAG=0 AND A.EXTERNAL_USER_DELETE_FLAG=0 AND J.OPENID IS NOT NULL THEN A.EXTERNAL_USER_ID ELSE NULL END) AS GZH_NUM_HIS_2 FROM QYWX_USER_CONTACT_RELATION A LEFT JOIN DIM_CUSTOMER_QYWX B ON A.EXTERNAL_USER_ID = B.EXTERNAL_USER_ID LEFT JOIN ODS_EXCEL_QYWX_ZONGBU C ON A.USER_ID=C.USER_ID LEFT JOIN DIM_CUSTOMER_ONLINE D ON B.CUS_ID =D.CUS_ID LEFT JOIN DIM_CUSTOMER E ON B.CUS_ID=E.CUS_ID LEFT JOIN DIM_CUSTOMER_QYWX F ON B.CUS_ID =F.CUS_ID LEFT JOIN DIM_OPENID_B J ON E.UNIONID=J.UNIONID WHERE C.TYPE_ID='01' --中鱼塘 GROUP BY C.USER_ID ) V3 ON V1.USER_ID=V3.USER_ID WHERE V1.STATIS_DATE < DATE_FORMAT(NOW(),'%Y%m%d') Execution Summary: - Parse SQL Time: 23ms - Nereids Analysis Time: 53ms - Nereids Rewrite Time: 290ms - Nereids Optimize Time: 51ms - Nereids Translate Time: 13ms - Workload Group: normal - Analysis Time: 53ms - Plan Time: 380ms - JoinReorder Time: N/A - CreateSingleNode Time: N/A - QueryDistributed Time: N/A - Init Scan Node Time: N/A - Finalize Scan Node Time: N/A - Get Splits Time: N/A - Get PARTITIONS Time: N/A - Get PARTITION FILES Time: N/A - Create Scan Range Time: N/A - Schedule Time: 591ms - Fetch Result Time: 5s807ms - Write Result Time: 1ms - Wait and Fetch Result Time: 5s901ms - Doris Version: selectdb-doris-2.1.1-rc05-7e666ac1a3 - Is Nereids: Yes - Is Pipeline: Yes - Is Cached: No - Total Instances Num: 1172 - Instances Num Per BE: 192.168.18.88:8060:1172 - Parallel Fragment Exec Instance Num: 12 - Trace ID: MergedProfile Fragments: Fragment 0: Pipeline : 0(instance_num=1): RESULT_SINK_OPERATOR (id=0): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 1 - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 7.975us, max 7.975us, min 7.975us - ExecTime: avg 36.628ms, max 36.628ms, min 36.628ms - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 73.374us, max 73.374us, min 73.374us - RowsProduced: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForDependency[RESULT_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=389): - PlanInfo - offset: 0 - BlocksProduced: sum 10, avg 10, max 10, min 10 - CloseTime: avg 6.360us, max 6.360us, min 6.360us - ExecTime: avg 750.857us, max 750.857us, min 750.857us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.60 MB, avg 5.60 MB, max 5.60 MB, min 5.60 MB - OpenTime: avg 37.848us, max 37.848us, min 37.848us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 5s884ms, max 5s884ms, min 5s884ms Fragment 1: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: sum 10, avg 2, max 2, min 2 - CloseTime: avg 14.235us, max 17.772us, min 9.940us - ExecTime: avg 584.889us, max 706.720us, min 337.942us - InputRows: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 47.476us, max 68.56us, min 39.898us - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=388): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - cardinality=148 - vec output tuple id: 391 - output tuple id: 391 - vIntermediate tuple ids: 390 - hash output slot ids: 392 393 394 395 396 397 398 399 400 401 402 403 404 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 - projections: TIME_FLAG, STATIS_DATE, DATA_FLAG, USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_MM, AMOUNT_QW, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, COMMENT_NUM_DZ, COMMENT_NUM_PL, GROUP_UV, QW_NEW_CUS, QW_NEW_QX, QW_NEW_CUS_WH, QW_NEW_QX_WH, QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, GZH_NEW_NUM, GZH_NEW_NUM_2, GROUP_CUSNUM, QYH_NUM, QYH_NUM_GZ, VIPCUS_NUM, REBUY_CUSNUM_7, REBUY_CUSNUM_15, REBUY_CUSNUM_30, REBUY_CUSNUM_45, REBUY_CUSNUM_60, REBUY_CUSNUM_90, GZH_NUM, GZH_NUM_2, GZH_NUM_HIS, GZH_NUM_HIS_2 - project output tuple id: 391 - BlocksProduced: sum 10, avg 2, max 2, min 2 - CloseTime: avg 47.729us, max 75.859us, min 18.220us - ExecTime: avg 1.587ms, max 2.29ms, min 1.23ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 112.00 KB, avg 22.40 KB, max 36.00 KB, min 16.00 KB - ProbeKeyArena: sum 112.00 KB, avg 22.40 KB, max 36.00 KB, min 16.00 KB - OpenTime: avg 65.239us, max 74.344us, min 54.622us - ProbeRows: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - ProjectionTime: avg 460.219us, max 654.796us, min 250.801us - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s7ms, max 1s12ms, min 1s3ms HASH_JOIN_OPERATOR (id=387): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF118[min_max] <- USER_ID(21/32/2048), RF119[bloom] <- USER_ID(21/32/2048) - cardinality=148 - vec output tuple id: 389 - output tuple id: 389 - vIntermediate tuple ids: 388 - hash output slot ids: 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4465 4401 4402 4403 4404 4405 4406 4407 4408 4409 - projections: QW_NEW_QX_WH, QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, GZH_NEW_NUM, GZH_NEW_NUM_2, GROUP_CUSNUM, USER_ID, USER_NAME, TIME_FLAG, STATIS_DATE, DATA_FLAG, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_MM, AMOUNT_QW, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, COMMENT_NUM_DZ, COMMENT_NUM_PL, GROUP_UV, QW_NEW_CUS, QW_NEW_QX, QW_NEW_CUS_WH - project output tuple id: 389 - BlocksProduced: sum 10, avg 2, max 2, min 2 - CloseTime: avg 17.733us, max 35.587us, min 6.618us - ExecTime: avg 1.619ms, max 2.269ms, min 1.14ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 20.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 20.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 56.710us, max 89.544us, min 41.377us - ProbeRows: sum 39, avg 7, max 11, min 6 - ProjectionTime: avg 449.665us, max 697.630us, min 215.211us - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s131ms, max 2s259ms, min 2s44ms AGGREGATION_OPERATOR (id=386): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN ( not UNIONID IS NULL) THEN cast(UNIONID as TEXT) ELSE NULL END))[#4463] - group by: OWNER - cardinality=2,299 - projections: OWNER, multi_distinct_count(DISTINCT CASE WHEN ( not UNIONID IS NULL) THEN cast(UNIONID as TEXT) ELSE NULL END) - project output tuple id: 387 - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 977ns, max 1.724us, min 434ns - ExecTime: avg 68.475us, max 116.92us, min 33.973us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 13.296us, max 16.788us, min 9.969us - ProjectionTime: avg 13.109us, max 26.778us, min 7.724us - RowsProduced: sum 39, avg 7, max 11, min 6 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s607ms, max 2s758ms, min 2s528ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=388): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 100.708us, max 125.987us, min 66.680us - InputRows: sum 75, avg 15, max 19, min 11 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 8.76 KB, avg 1.75 KB, max 2.22 KB, min 1.28 KB - BuildKeyArena: sum 20.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 852.00 B, avg 170.00 B, max 212.00 B, min 116.00 B - PeakMemoryUsage: sum 9.55 KB, avg 1.91 KB, max 2.42 KB, min 1.39 KB - OpenTime: avg 23.51us, max 30.911us, min 14.606us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=24): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#378], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN ((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#379], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (VIP_CUS_STATUS = 1)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#380], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 7))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#381], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 15))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#382], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 30))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#383], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 45))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#384], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 60))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#385], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 90))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#386], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (FANS_FLAG = 'Y')) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#387], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (cast(SUBSCRIBE as DOUBLE) = cast(1 as DOUBLE))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#388], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not GZ_DATE IS NULL) OR ( not QXGZ_DATE IS NULL))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#389], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not OPENID IS NULL)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#390] - group by: USER_ID - cardinality=21 - projections: USER_ID, QYH_NUM, multi_distinct_count(DISTINCT CASE WHEN ((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (VIP_CUS_STATUS = 1)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 7))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 15))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 30))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 45))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 60))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not FIRST_BUY_TIME IS NULL) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 90))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (FANS_FLAG = 'Y')) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (cast(SUBSCRIBE as DOUBLE) = cast(1 as DOUBLE))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not GZ_DATE IS NULL) OR ( not QXGZ_DATE IS NULL))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), multi_distinct_count(DISTINCT CASE WHEN (((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not OPENID IS NULL)) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END) - project output tuple id: 22 - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 586ns, max 712ns, min 395ns - ExecTime: avg 116.561us, max 153.291us, min 88.432us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 14.772us, max 23.675us, min 11.6us - ProjectionTime: avg 33.692us, max 47.119us, min 24.97us - RowsProduced: sum 75, avg 15, max 19, min 11 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 5s885ms, max 5s890ms, min 5s881ms Pipeline : 2(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=387): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.26ms, max 1.248ms, min 821.935us - InputRows: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.04 MB, avg 623.25 KB, max 745.14 KB, min 468.09 KB - BuildKeyArena: sum 172.00 KB, avg 34.40 KB, max 40.00 KB, min 28.00 KB - HashTable: sum 108.97 KB, avg 21.79 KB, max 26.68 KB, min 14.75 KB - PeakMemoryUsage: sum 3.30 MB, avg 675.43 KB, max 807.81 KB, min 506.83 KB - OpenTime: avg 36.730us, max 47.472us, min 27.862us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=375): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 12, max 12, min 12 - CloseTime: avg 7.521us, max 18.423us, min 3.807us - ExecTime: avg 278.827us, max 308.922us, min 247.502us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.03 MB, avg 414.75 KB, max 511.50 KB, min 321.50 KB - OpenTime: avg 23.69us, max 27.311us, min 19.533us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s876ms, max 4s876ms, min 4s876ms Pipeline : 3(instance_num=5): AGGREGATION_SINK_OPERATOR (id=386): - CloseTime: avg 1.282us, max 1.818us, min 1.98us - ExecTime: avg 2.14ms, max 3.76ms, min 922.892us - InputRows: sum 147, avg 29, max 41, min 16 - MemoryUsage: sum , avg , max , min - HashTable: sum 81.41 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 2.66 MB, avg 544.28 KB, max 544.28 KB, min 544.28 KB - SerializeKeyArena: sum 2.58 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 58.303us, max 67.772us, min 47.135us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=385): - PlanInfo - offset: 0 - BlocksProduced: sum 25, avg 5, max 5, min 5 - CloseTime: avg 13.7us, max 13.594us, min 11.715us - ExecTime: avg 99.38us, max 116.654us, min 83.295us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 792.09 KB, avg 158.42 KB, max 256.88 KB, min 68.78 KB - OpenTime: avg 23.134us, max 26.790us, min 17.943us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 147, avg 29, max 41, min 16 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s275ms, max 2s416ms, min 2s70ms Pipeline : 4(instance_num=5): AGGREGATION_SINK_OPERATOR (id=24): - CloseTime: avg 1.279us, max 2.449us, min 747ns - ExecTime: avg 107.182ms, max 148.341ms, min 68.806ms - InputRows: sum 876, avg 175, max 221, min 132 - MemoryUsage: sum , avg , max , min - HashTable: sum 81.41 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 25.16 MB, avg 5.03 MB, max 5.03 MB, min 5.03 MB - SerializeKeyArena: sum 25.08 MB, avg 5.02 MB, max 5.02 MB, min 5.02 MB - OpenTime: avg 99.270us, max 109.807us, min 87.544us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=23): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 12, max 12, min 12 - CloseTime: avg 6.607us, max 11.400us, min 3.211us - ExecTime: avg 536.543us, max 617.941us, min 457.41us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 29.16 MB, avg 5.83 MB, max 10.21 MB, min 3.43 MB - OpenTime: avg 20.832us, max 23.392us, min 17.763us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 876, avg 175, max 221, min 132 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 5s777ms, max 5s811ms, min 5s731ms Fragment 2: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - BlocksProduced: sum 25, avg 5, max 5, min 5 - CloseTime: avg 16.445us, max 20.936us, min 14.304us - ExecTime: avg 280.238us, max 333.478us, min 248.210us - InputRows: sum 147, avg 29, max 31, min 27 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.62 MB, avg 332.12 KB, max 353.81 KB, min 321.75 KB - OpenTime: avg 77.177us, max 93.924us, min 58.103us - RowsProduced: sum 147, avg 29, max 31, min 27 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT if(( not UNIONID IS NULL), cast(UNIONID as TEXT), NULL))[#4461] - group by: OWNER - cardinality=2,299 - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 27.858us, max 57.564us, min 15.90us - ExecTime: avg 6.924ms, max 16.762ms, min 3.447ms - MemoryUsage: sum , avg , max , min - HashTable: sum 81.41 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 2.66 MB, avg 544.28 KB, max 544.28 KB, min 544.28 KB - SerializeKeyArena: sum 2.58 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 80.644us, max 91.224us, min 57.256us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 147, avg 29, max 31, min 27 HASH_JOIN_OPERATOR (id=383): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF114[min_max] <- CHAT_ID(2299/2048/2048), RF115[bloom] <- CHAT_ID(2299/2048/2048), RF116[min_max] <- UNIONID(49301/65536/65536), RF117[bloom] <- UNIONID(49301/65536/65536) - cardinality=51,334 - vec output tuple id: 384 - output tuple id: 384 - vIntermediate tuple ids: 383 - hash output slot ids: 4439 4441 4443 - projections: OWNER, if(UNIONID IS NOT NULL, CAST(UNIONID AS TEXT), NULL) - project output tuple id: 384 - BlocksProduced: sum 125, avg 25, max 27, min 23 - CloseTime: avg 21.553us, max 32.646us, min 11.940us - ExecTime: avg 22.196ms, max 37.501ms, min 13.812ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.39 MB, avg 900.00 KB, max 984.00 KB, min 852.00 KB - ProbeKeyArena: sum 4.39 MB, avg 900.00 KB, max 984.00 KB, min 852.00 KB - OpenTime: avg 23.845us, max 26.970us, min 20.233us - ProbeRows: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - ProjectionTime: avg 3.304ms, max 13.170ms, min 630.0us - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s312ms, max 1s419ms, min 1s231ms EXCHANGE_OPERATOR (id=382): - PlanInfo - offset: 0 - BlocksProduced: sum 99, avg 19, max 20, min 19 - CloseTime: avg 14.374us, max 21.694us, min 11.721us - ExecTime: avg 310.35us, max 327.989us, min 276.202us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 39.06 MB, avg 7.81 MB, max 8.15 MB, min 7.50 MB - OpenTime: avg 30.359us, max 46.463us, min 23.1us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 589.851ms, max 590.256ms, min 589.517ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=383): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 29.563ms, max 58.309ms, min 9.386ms - InputRows: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 14.61 MB, avg 2.92 MB, max 3.15 MB, min 2.58 MB - BuildKeyArena: sum 11.93 MB, avg 2.39 MB, max 2.57 MB, min 2.12 MB - HashTable: sum 2.11 MB, avg 432.60 KB, max 445.91 KB, min 412.76 KB - PeakMemoryUsage: sum 28.63 MB, avg 5.73 MB, max 6.14 MB, min 5.09 MB - OpenTime: avg 46.0us, max 73.980us, min 34.785us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=380): - PlanInfo - offset: 0 - BlocksProduced: sum 47, avg 9, max 10, min 8 - CloseTime: avg 19.294us, max 30.170us, min 13.336us - ExecTime: avg 254.445us, max 311.513us, min 163.662us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 10.80 MB, avg 2.16 MB, max 2.89 MB, min 1.47 MB - OpenTime: avg 23.930us, max 26.116us, min 21.192us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s263ms, max 1s425ms, min 1s7ms Fragment 3: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - BlocksProduced: sum 105, avg 21, max 23, min 20 - CloseTime: avg 16.4us, max 19.615us, min 12.165us - ExecTime: avg 43.725ms, max 88.782ms, min 14.602ms - InputRows: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 39.06 MB, avg 7.81 MB, max 8.05 MB, min 7.43 MB - OpenTime: avg 65.133us, max 77.724us, min 55.32us - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER_CURRENT(QYWX_GROUPCHAT_MEMBER_CURRENT), PREAGGREGATION: ON - runtime filters: RF114[min_max] -> CHAT_ID, RF115[bloom] -> CHAT_ID, RF116[min_max] -> UNIONID, RF117[bloom] -> UNIONID - partitions=1/1 (QYWX_GROUPCHAT_MEMBER_CURRENT), tablets=5/5, tabletList=15193,15195,15197 ... - cardinality=399083, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 34.468us, max 41.542us, min 28.72us - ExecTime: avg 11.903ms, max 13.729ms, min 9.489ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 287.526us, max 389.105us, min 187.637us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 11.320ms, max 13.46ms, min 9.3ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 28.54 MB, avg 5.71 MB, max 6.03 MB, min 5.46 MB Fragment 4: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - BlocksProduced: sum 50, avg 16, max 17, min 16 - CloseTime: avg 14.672us, max 19.398us, min 11.277us - ExecTime: avg 33.512ms, max 48.462ms, min 11.3ms - InputRows: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 22.06 MB, avg 7.35 MB, max 7.96 MB, min 6.70 MB - OpenTime: avg 57.638us, max 73.188us, min 48.366us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=379): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - runtime filters: RF112[min_max] <- CHAT_ID(2299/2048/2048), RF113[in_or_bloom] <- CHAT_ID(2299/2048/2048) - cardinality=49,301 - vec output tuple id: 381 - output tuple id: 381 - vIntermediate tuple ids: 380 - hash output slot ids: 4433 4434 4419 - projections: OWNER, CHAT_ID, UNIONID - project output tuple id: 381 - BlocksProduced: sum 130, avg 43, max 47, min 41 - CloseTime: avg 8.810us, max 11.908us, min 6.994us - ExecTime: avg 28.958ms, max 63.947ms, min 11.424ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.20 MB, avg 408.00 KB, max 408.00 KB, min 408.00 KB - ProbeKeyArena: sum 1.20 MB, avg 408.00 KB, max 408.00 KB, min 408.00 KB - OpenTime: avg 29.140us, max 32.688us, min 27.74us - ProbeRows: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - ProjectionTime: avg 9.728ms, max 26.952ms, min 933.950us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 140.95ms, max 419.903ms, min 0ns OLAP_SCAN_OPERATOR (id=378. table name = QYWX_GROUPCHAT_MEMBER): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER(QYWX_GROUPCHAT_MEMBER), PREAGGREGATION: ON - PREDICATES: (TYPE = 2) AND UNIONID IS NOT NULL - runtime filters: RF112[min_max] -> CHAT_ID, RF113[in_or_bloom] -> CHAT_ID - partitions=1/1 (QYWX_GROUPCHAT_MEMBER), tablets=3/3, tabletList=15206,15208,15210 - cardinality=1111362, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CHAT_ID, UNIONID - project output tuple id: 379 - BlocksProduced: sum 139, avg 46, max 47, min 46 - CloseTime: avg 45.323us, max 55.165us, min 33.191us - ExecTime: avg 262.24ms, max 386.353ms, min 54.148ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 396.184us, max 441.393us, min 334.152us - ProjectionTime: avg 33.260ms, max 53.584ms, min 4.537ms - RowsProduced: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 227.839ms, max 331.804ms, min 48.621ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 30.80 MB, avg 10.27 MB, max 10.27 MB, min 10.27 MB Pipeline : 1(instance_num=3): HASH_JOIN_SINK_OPERATOR (id=379): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 124.689us, max 142.435us, min 103.435us - InputRows: sum 447, avg 149, max 160, min 139 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 22.62 KB, avg 7.54 KB, max 8.10 KB, min 7.03 KB - BuildKeyArena: sum 36.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - HashTable: sum 4.77 KB, avg 1.59 KB, max 1.63 KB, min 1.55 KB - PeakMemoryUsage: sum 51.36 KB, avg 17.12 KB, max 17.73 KB, min 16.57 KB - OpenTime: avg 23.736us, max 26.931us, min 18.274us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=377): - PlanInfo - offset: 0 - BlocksProduced: sum 3, avg 1, max 1, min 1 - CloseTime: avg 8.907us, max 11.625us, min 4.277us - ExecTime: avg 41.180us, max 52.975us, min 30.273us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.75 KB, avg 12.25 KB, max 12.25 KB, min 12.25 KB - OpenTime: avg 25.768us, max 31.63us, min 21.874us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 447, avg 149, max 160, min 139 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 971.506ms, max 971.554ms, min 971.415ms Fragment 5: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=377,dst_id=377): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 12.790us, max 12.790us, min 12.790us - ExecTime: avg 151.374us, max 151.374us, min 151.374us - InputRows: sum 447, avg 447, max 447, min 447 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.75 KB, avg 36.75 KB, max 36.75 KB, min 36.75 KB - OpenTime: avg 49.668us, max 49.668us, min 49.668us - RowsProduced: sum 447, avg 447, max 447, min 447 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=376. table name = QYWX_GROUPCHAT_INFO): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_INFO(QYWX_GROUPCHAT_INFO), PREAGGREGATION: ON - PREDICATES: NAME like '%五谷磨房丨食疗养生群%' AND (IS_DELETED = 0) - runtime filters: RF118[min_max] -> CAST(OWNER AS VARCHAR(15)), RF119[bloom] -> CAST(OWNER AS VARCHAR(15)) - partitions=1/1 (QYWX_GROUPCHAT_INFO), tablets=1/1, tabletList=18523 - cardinality=22996, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: OWNER, CHAT_ID - project output tuple id: 377 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 41.476us, max 41.476us, min 41.476us - ExecTime: avg 104.81ms, max 104.81ms, min 104.81ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 261.680us, max 261.680us, min 261.680us - ProjectionTime: avg 14.823us, max 14.823us, min 14.823us - RowsProduced: sum 447, avg 447, max 447, min 447 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 103.714ms, max 103.714ms, min 103.714ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 116.00 KB, avg 116.00 KB, max 116.00 KB, min 116.00 KB Fragment 6: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 12.252us, max 27.91us, min 9.16us - ExecTime: avg 761.736us, max 1.84ms, min 599.460us - InputRows: sum 9.2K (9200), avg 766, max 808, min 722 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.42 MB, avg 377.04 KB, max 394.25 KB, min 355.00 KB - OpenTime: avg 63.469us, max 77.494us, min 53.509us - RowsProduced: sum 9.2K (9200), avg 766, max 808, min 722 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=374): - PlanInfo - output: max(partial_max(AVG_REPLY_TIME))[#4349], max(partial_max(QW_NUM_QXGZ))[#4350], max(partial_max(QW_NEW))[#4351], max(partial_max(GROUP_NEW))[#4352], max(partial_max(VIPCUS_NEW))[#4353], max(partial_max(AMOUNT))[#4354], max(partial_max(AMOUNT_MM))[#4355], max(partial_max(AMOUNT_QW))[#4356], max(partial_max(VIPCUS_NEW_2))[#4357], max(partial_max(AMOUNT_GROUP))[#4358], max(partial_max(GROUP_CUSNUM_BUY))[#4359], max(partial_max(CHAT_CNT))[#4360], max(partial_max(REPLY_PERCENTAGE))[#4361], max(partial_max(COMMENT_NUM))[#4362], max(partial_max(COMMENT_CUS_NUM))[#4363], max(partial_max(COMMENT_CUS_AMOUNT))[#4364], max(partial_max(COMMENT_NUM_DZ))[#4365], max(partial_max(COMMENT_NUM_PL))[#4366], max(partial_max(GROUP_UV))[#4367], max(partial_max(QW_NEW_CUS))[#4368], max(partial_max(QW_NEW_QX))[#4369], max(partial_max(QW_NEW_CUS_WH))[#4370], max(partial_max(QW_NEW_QX_WH))[#4371], max(partial_max(QW_NEW_BGK))[#4372], max(partial_max(QW_NEW_CUS_BGK))[#4373], max(partial_max(QW_NEW_QX_BGK))[#4374], max(partial_max(GZH_NEW_NUM))[#4375], max(partial_max(GZH_NEW_NUM_2))[#4376] - group by: DATEKEY, USER_ID, USER_NAME - cardinality=148 - projections: 'D', DATEKEY, '01', USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_MM, AMOUNT_QW, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, COMMENT_NUM_DZ, COMMENT_NUM_PL, GROUP_UV, QW_NEW_CUS, QW_NEW_QX, QW_NEW_CUS_WH, QW_NEW_QX_WH, QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, GZH_NEW_NUM, GZH_NEW_NUM_2 - project output tuple id: 375 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 582ns, max 1.214us, min 342ns - ExecTime: avg 959.272us, max 1.246ms, min 698.543us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 12.616us, max 16.912us, min 8.609us - ProjectionTime: avg 201.895us, max 263.308us, min 162.513us - RowsProduced: sum 9.2K (9200), avg 766, max 808, min 722 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s874ms, max 4s875ms, min 4s874ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=374): - CloseTime: avg 1.493us, max 3.447us, min 615ns - ExecTime: avg 1.464ms, max 1.904ms, min 1.213ms - InputRows: sum 9.2K (9200), avg 766, max 808, min 722 - MemoryUsage: sum , avg , max , min - HashTable: sum 287.72 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 79.12 MB, avg 6.59 MB, max 6.59 MB, min 6.59 MB - SerializeKeyArena: sum 78.84 MB, avg 6.57 MB, max 6.57 MB, min 6.57 MB - OpenTime: avg 123.249us, max 146.57us, min 110.734us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=373): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.563us, max 9.545us, min 2.109us - ExecTime: avg 254.296us, max 361.749us, min 196.608us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.53 MB, avg 215.82 KB, max 316.50 KB, min 77.00 KB - OpenTime: avg 28.244us, max 38.104us, min 20.940us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 808, min 722 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s871ms, max 4s872ms, min 4s870ms Fragment 7: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.556us, max 24.424us, min 11.162us - ExecTime: avg 1.334ms, max 1.765ms, min 987.194us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.04 MB, avg 344.63 KB, max 359.88 KB, min 334.63 KB - OpenTime: avg 122.651us, max 283.587us, min 93.832us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - PlanInfo - STREAMING - output: partial_max(AVG_REPLY_TIME)[#4318], partial_max(QW_NUM_QXGZ)[#4319], partial_max(QW_NEW)[#4320], partial_max(GROUP_NEW)[#4321], partial_max(VIPCUS_NEW)[#4322], partial_max(AMOUNT)[#4323], partial_max(AMOUNT_MM)[#4324], partial_max(AMOUNT_QW)[#4325], partial_max(VIPCUS_NEW_2)[#4326], partial_max(AMOUNT_GROUP)[#4327], partial_max(GROUP_CUSNUM_BUY)[#4328], partial_max(CHAT_CNT)[#4329], partial_max(REPLY_PERCENTAGE)[#4330], partial_max(COMMENT_NUM)[#4331], partial_max(COMMENT_CUS_NUM)[#4332], partial_max(COMMENT_CUS_AMOUNT)[#4333], partial_max(COMMENT_NUM_DZ)[#4334], partial_max(COMMENT_NUM_PL)[#4335], partial_max(GROUP_UV)[#4336], partial_max(QW_NEW_CUS)[#4337], partial_max(QW_NEW_QX)[#4338], partial_max(QW_NEW_CUS_WH)[#4339], partial_max(QW_NEW_QX_WH)[#4340], partial_max(QW_NEW_BGK)[#4341], partial_max(QW_NEW_CUS_BGK)[#4342], partial_max(QW_NEW_QX_BGK)[#4343], partial_max(GZH_NEW_NUM)[#4344], partial_max(GZH_NEW_NUM_2)[#4345] - group by: DATEKEY, USER_ID, USER_NAME - cardinality=148 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 81.522us, max 123.45us, min 55.423us - ExecTime: avg 2.359ms, max 3.203ms, min 1.807ms - MemoryUsage: sum , avg , max , min - HashTable: sum 287.72 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 79.12 MB, avg 6.59 MB, max 6.59 MB, min 6.59 MB - SerializeKeyArena: sum 78.84 MB, avg 6.57 MB, max 6.57 MB, min 6.57 MB - OpenTime: avg 138.280us, max 185.187us, min 116.943us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 HASH_JOIN_OPERATOR (id=371): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=6,049,216 - vec output tuple id: 372 - output tuple id: 372 - vIntermediate tuple ids: 371 - hash output slot ids: 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4248 4249 616 4219 4220 4221 4222 4223 - projections: DATEKEY, USER_ID, USER_NAME, QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, GZH_NEW_NUM, GZH_NEW_NUM_2, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, GROUP_UV, QW_NEW_QX, QW_NEW_CUS, QW_NEW_CUS_WH, QW_NEW_QX_WH - project output tuple id: 372 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 41.7us, max 63.516us, min 23.976us - ExecTime: avg 670.571us, max 941.216us, min 445.57us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - ProbeKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - OpenTime: avg 54.545us, max 68.614us, min 36.806us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 200.111us, max 283.911us, min 144.540us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=370): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 6.506us, max 9.974us, min 4.705us - ExecTime: avg 40.295us, max 59.441us, min 31.667us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.23 MB, avg 360.65 KB, max 365.98 KB, min 357.98 KB - OpenTime: avg 25.709us, max 40.75us, min 19.241us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s867ms, max 4s868ms, min 4s867ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=371): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 79.983us, max 141.694us, min 52.212us - InputRows: sum 542, avg 45, max 53, min 35 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 16.94 KB, avg 1.41 KB, max 1.66 KB, min 1.09 KB - BuildKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 5.21 KB, avg 444.00 B, max 476.00 B, min 404.00 B - PeakMemoryUsage: sum 22.05 KB, avg 1.84 KB, max 2.11 KB, min 1.48 KB - OpenTime: avg 17.807us, max 60.177us, min 9.235us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=42): - PlanInfo - offset: 0 - BlocksProduced: sum 142, avg 11, max 12, min 11 - CloseTime: avg 5.12us, max 7.920us, min 1.826us - ExecTime: avg 60.153us, max 103.207us, min 42.726us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 23.28 KB, avg 1.94 KB, max 3.28 KB, min 1.31 KB - OpenTime: avg 19.720us, max 29.61us, min 14.885us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 542, avg 45, max 53, min 35 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s620ms, max 4s630ms, min 4s614ms Fragment 8: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.565us, max 27.711us, min 8.21us - ExecTime: avg 702.98us, max 2.664ms, min 435.447us - InputRows: sum 9.2K (9200), avg 766, max 9.2K (9200), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.01 MB, avg 342.07 KB, max 3.98 MB, min 2.63 KB - OpenTime: avg 106.480us, max 142.302us, min 92.759us - RowsProduced: sum 9.2K (9200), avg 766, max 9.2K (9200), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=369): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=6,049,216 - vec output tuple id: 370 - output tuple id: 370 - vIntermediate tuple ids: 369 - hash output slot ids: 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4184 4185 826 4156 4157 4158 4159 - projections: QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, GZH_NEW_NUM, USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, GROUP_UV, DATEKEY, QW_NEW_QX, QW_NEW_CUS, CAST(DATEKEY AS DOUBLE), QW_NEW_CUS_WH, QW_NEW_QX_WH - project output tuple id: 370 - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 13.413us, max 46.582us, min 7.29us - ExecTime: avg 436.140us, max 3.961ms, min 81.413us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - ProbeKeyArena: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 52.171us, max 64.263us, min 41.495us - ProbeRows: sum 9.2K (9200), avg 766, max 9.2K (9200), min 0 - ProjectionTime: avg 102.887us, max 789.764us, min 16.663us - RowsProduced: sum 9.2K (9200), avg 766, max 9.2K (9200), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 13.747us, max 83.292us, min 1.466us - GetBlockFailedTime: sum 17, avg 1, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.98 MB, avg 254.62 KB, max 2.98 MB, min 0.00 - OpenTime: avg 1.738us, max 3.920us, min 894ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 9.2K (9200), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s862ms, max 4s863ms, min 4s861ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 38.455us, max 79.289us, min 10.939us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.213us, max 4.611us, min 1.620us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=368): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=6,049,216 - vec output tuple id: 368 - output tuple id: 368 - vIntermediate tuple ids: 367 - hash output slot ids: 4097 4098 4099 4100 4101 4102 4103 1224 4104 1225 4105 1226 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 - projections: QW_NEW_BGK, QW_NEW_CUS_BGK, QW_NEW_QX_BGK, USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, GROUP_UV, DATEKEY, QW_NEW_QX, QW_NEW_CUS, CAST(DATEKEY AS DOUBLE), QW_NEW_CUS_WH, QW_NEW_QX_WH - project output tuple id: 368 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 34.240us, max 87.845us, min 19.747us - ExecTime: avg 537.489us, max 733.461us, min 427.526us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - ProbeKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - OpenTime: avg 43.501us, max 53.810us, min 32.223us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 187.282us, max 286.520us, min 138.111us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=367): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 7.197us, max 24.557us, min 2.716us - ExecTime: avg 36.364us, max 58.270us, min 28.282us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.68 MB, avg 314.05 KB, max 327.27 KB, min 302.66 KB - OpenTime: avg 22.767us, max 31.918us, min 16.186us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s861ms, max 4s862ms, min 4s861ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=369): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 39.953us, max 202.580us, min 16.218us - InputRows: sum 964, avg 80, max 964, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 30.11 KB, avg 2.51 KB, max 30.11 KB, min 0.00 - BuildKeyArena: sum 28.00 KB, avg 2.33 KB, max 28.00 KB, min 0.00 - HashTable: sum 11.77 KB, avg 1004.00 B, max 11.77 KB, min 0.00 - PeakMemoryUsage: sum 65.88 KB, avg 5.49 KB, max 65.88 KB, min 0.00 - OpenTime: avg 16.317us, max 31.405us, min 9.299us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 4s193ms, max 4s574ms, min 0ns EXCHANGE_OPERATOR (id=60): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 5.28us, max 11.818us, min 2.148us - ExecTime: avg 30.554us, max 101.239us, min 18.165us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 23.25 KB, avg 1.94 KB, max 23.25 KB, min 0.00 - OpenTime: avg 18.879us, max 37.362us, min 12.232us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 964, avg 80, max 964, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 376.0ms, max 4s512ms, min 0ns Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=368): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 127.927us, max 194.236us, min 91.852us - InputRows: sum 2.315K (2315), avg 192, max 208, min 175 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 108.24 KB, avg 9.02 KB, max 9.73 KB, min 8.19 KB - BuildKeyArena: sum 136.00 KB, avg 11.33 KB, max 12.00 KB, min 4.00 KB - HashTable: sum 21.14 KB, avg 1.76 KB, max 1.82 KB, min 1.69 KB - PeakMemoryUsage: sum 217.28 KB, avg 18.11 KB, max 19.54 KB, min 9.87 KB - OpenTime: avg 15.334us, max 26.853us, min 7.686us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=97): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 5.477us, max 11.595us, min 2.103us - ExecTime: avg 85.530us, max 111.519us, min 64.485us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 91.94 KB, avg 7.66 KB, max 16.75 KB, min 5.06 KB - OpenTime: avg 22.504us, max 30.810us, min 15.501us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.315K (2315), avg 192, max 208, min 175 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s700ms, max 4s706ms, min 4s692ms Fragment 9: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.998us, max 33.774us, min 9.220us - ExecTime: avg 799.55us, max 1.46ms, min 656.173us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.59 MB, avg 306.07 KB, max 311.41 KB, min 303.41 KB - OpenTime: avg 98.170us, max 123.913us, min 81.209us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=366): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=6,049,216 - vec output tuple id: 366 - output tuple id: 366 - vIntermediate tuple ids: 365 - hash output slot ids: 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 1715 1716 - projections: USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, GROUP_UV, DATEKEY, QW_NEW_QX, QW_NEW_CUS, QW_NEW_CUS_WH, QW_NEW_QX_WH, CAST(DATEKEY AS DOUBLE) - project output tuple id: 366 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 34.464us, max 58.214us, min 20.555us - ExecTime: avg 500.66us, max 664.243us, min 401.177us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - ProbeKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - OpenTime: avg 38.613us, max 48.289us, min 31.287us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 182.486us, max 255.254us, min 144.241us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=365): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 5.858us, max 16.946us, min 3.440us - ExecTime: avg 36.169us, max 66.481us, min 26.211us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.48 MB, avg 296.69 KB, max 307.92 KB, min 283.00 KB - OpenTime: avg 23.979us, max 42.42us, min 16.395us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s860ms, max 4s860ms, min 4s859ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=366): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 45.522us, max 67.794us, min 30.535us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - BuildKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 288.00 B, avg 24.00 B, max 24.00 B, min 24.00 B - PeakMemoryUsage: sum 192.00 B, avg 16.00 B, max 16.00 B, min 16.00 B - OpenTime: avg 16.154us, max 28.164us, min 8.521us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=138): - PlanInfo - offset: 0 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.812us, max 10.699us, min 1.764us - ExecTime: avg 27.41us, max 38.301us, min 17.985us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.72 KB, avg 2.23 KB, max 2.23 KB, min 2.23 KB - OpenTime: avg 19.639us, max 25.562us, min 13.677us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s356ms, max 4s356ms, min 4s355ms Fragment 10: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.37us, max 15.692us, min 8.589us - ExecTime: avg 717.982us, max 1.120ms, min 547.791us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.38 MB, avg 288.07 KB, max 293.41 KB, min 285.41 KB - OpenTime: avg 94.478us, max 114.406us, min 81.517us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=364): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=6,049,216 - vec output tuple id: 364 - output tuple id: 364 - vIntermediate tuple ids: 363 - hash output slot ids: 2112 2113 3993 3994 3995 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 - projections: USER_ID, USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, GROUP_NEW, VIPCUS_NEW, AMOUNT, AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, CHAT_CNT, REPLY_PERCENTAGE, COMMENT_NUM, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, COMMENT_CUS_AMOUNT, GROUP_UV, DATEKEY, QW_NEW_QX, QW_NEW_CUS, CAST(DATEKEY AS DOUBLE) - project output tuple id: 364 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 31.388us, max 65.322us, min 18.46us - ExecTime: avg 501.724us, max 774.451us, min 367.187us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - ProbeKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - OpenTime: avg 37.670us, max 46.953us, min 32.81us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 164.392us, max 220.826us, min 126.626us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=363): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 4.943us, max 7.189us, min 3.726us - ExecTime: avg 33.942us, max 47.196us, min 26.201us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.24 MB, avg 276.86 KB, max 287.15 KB, min 269.25 KB - OpenTime: avg 22.523us, max 34.717us, min 13.778us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s859ms, max 4s859ms, min 4s858ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=364): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 88.845us, max 127.7us, min 65.162us - InputRows: sum 2.315K (2315), avg 192, max 208, min 175 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 90.16 KB, avg 7.51 KB, max 8.10 KB, min 6.82 KB - BuildKeyArena: sum 136.00 KB, avg 11.33 KB, max 12.00 KB, min 4.00 KB - HashTable: sum 21.14 KB, avg 1.76 KB, max 1.82 KB, min 1.69 KB - PeakMemoryUsage: sum 199.20 KB, avg 16.60 KB, max 17.91 KB, min 8.50 KB - OpenTime: avg 14.123us, max 26.305us, min 8.41us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=175): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.812us, max 8.278us, min 1.665us - ExecTime: avg 63.49us, max 86.678us, min 36.443us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 84.94 KB, avg 7.08 KB, max 13.00 KB, min 4.00 KB - OpenTime: avg 20.822us, max 27.770us, min 13.492us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.315K (2315), avg 192, max 208, min 175 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s621ms, max 4s624ms, min 4s613ms Fragment 11: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.66us, max 27.550us, min 8.900us - ExecTime: avg 980.783us, max 1.877ms, min 718.59us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.16 MB, avg 270.07 KB, max 275.41 KB, min 267.41 KB - OpenTime: avg 90.413us, max 101.863us, min 76.512us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=362): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(STATIS_DATE as DOUBLE) = expr_cast(DATEKEY as DOUBLE)) - runtime filters: RF110[min_max] <- USER_ID(21/32/2048), RF111[bloom] <- USER_ID(21/32/2048) - cardinality=6,049,216 - vec output tuple id: 362 - output tuple id: 362 - vIntermediate tuple ids: 361 - hash output slot ids: 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3766 3768 3769 3770 3771 3772 3773 3774 3775 3967 - projections: AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, CAST(DATEKEY AS DOUBLE), AMOUNT_GROUP, GROUP_CUSNUM_BUY, USER_ID, CHAT_CNT, USER_NAME, REPLY_PERCENTAGE, COMMENT_NUM, AVG_REPLY_TIME, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, QW_NUM_QXGZ, COMMENT_CUS_AMOUNT, QW_NEW, GROUP_UV, DATEKEY, GROUP_NEW, VIPCUS_NEW, AMOUNT - project output tuple id: 362 - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 13.90us, max 26.39us, min 8.23us - ExecTime: avg 1.274ms, max 1.743ms, min 965.787us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 37.748us, max 52.192us, min 29.167us - ProbeRows: sum 4.274K (4274), avg 356, max 371, min 342 - ProjectionTime: avg 321.252us, max 501.392us, min 230.481us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=361): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 9.956us, max 32.936us, min 3.707us - ExecTime: avg 81.363us, max 115.180us, min 65.267us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 103.13 KB, avg 8.59 KB, max 12.38 KB, min 6.13 KB - OpenTime: avg 22.449us, max 31.123us, min 15.175us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.274K (4274), avg 356, max 371, min 342 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s856ms, max 4s856ms, min 4s855ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=362): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 328.898us, max 409.852us, min 259.712us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.23 MB, avg 190.06 KB, max 194.73 KB, min 182.77 KB - BuildKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - HashTable: sum 93.03 KB, avg 7.75 KB, max 7.84 KB, min 7.61 KB - PeakMemoryUsage: sum 2.55 MB, avg 217.80 KB, max 222.56 KB, min 210.37 KB - OpenTime: avg 26.6us, max 46.572us, min 17.245us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=339): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 8.86us, max 28.383us, min 3.874us - ExecTime: avg 73.622us, max 131.1us, min 38.740us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.15 MB, avg 268.93 KB, max 278.89 KB, min 261.41 KB - OpenTime: avg 19.761us, max 29.124us, min 13.562us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s782ms, max 4s783ms, min 4s780ms Fragment 12: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.207us, max 14.265us, min 8.838us - ExecTime: avg 328.828us, max 669.604us, min 238.731us - InputRows: sum 4.274K (4274), avg 356, max 381, min 326 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 240.38 KB, avg 20.03 KB, max 21.00 KB, min 18.50 KB - OpenTime: avg 94.1us, max 123.100us, min 79.152us - RowsProduced: sum 4.274K (4274), avg 356, max 381, min 326 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=360): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CUS_ID))[#3964] - group by: STATIS_DATE, USER_ID - cardinality=6,049,216 - projections: USER_ID, CAST(STATIS_DATE AS DOUBLE), GROUP_UV - project output tuple id: 360 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 466ns, max 599ns, min 318ns - ExecTime: avg 101.483us, max 134.886us, min 80.57us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.247us, max 13.303us, min 7.774us - ProjectionTime: avg 42.832us, max 83.984us, min 28.696us - RowsProduced: sum 4.274K (4274), avg 356, max 381, min 326 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s856ms, max 4s857ms, min 4s855ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=360): - CloseTime: avg 1.305us, max 1.887us, min 911ns - ExecTime: avg 3.621ms, max 4.624ms, min 2.794ms - InputRows: sum 46.132K (46132), avg 3.844K (3844), max 4.102K (4102), min 3.52K (3520) - MemoryUsage: sum , avg , max , min - HashTable: sum 143.72 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 6.42 MB, avg 547.98 KB, max 547.98 KB, min 547.98 KB - SerializeKeyArena: sum 6.28 MB, avg 536.00 KB, max 536.00 KB, min 536.00 KB - OpenTime: avg 29.748us, max 38.805us, min 21.822us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=359): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.988us, max 6.881us, min 3.635us - ExecTime: avg 160.533us, max 252.175us, min 119.38us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.19 MB, avg 527.92 KB, max 711.00 KB, min 316.00 KB - OpenTime: avg 22.767us, max 34.340us, min 16.259us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 46.132K (46132), avg 3.844K (3844), max 4.102K (4102), min 3.52K (3520) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s850ms, max 4s851ms, min 4s850ms Fragment 13: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.742us, max 18.110us, min 10.976us - ExecTime: avg 976.669us, max 1.354ms, min 797.337us - InputRows: sum 46.132K (46132), avg 3.844K (3844), max 3.973K (3973), min 3.743K (3743) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.02 MB, avg 940.00 KB, max 948.00 KB, min 884.00 KB - OpenTime: avg 87.774us, max 104.63us, min 82.291us - RowsProduced: sum 46.132K (46132), avg 3.844K (3844), max 3.973K (3973), min 3.743K (3743) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT CUS_ID)[#3961] - group by: STATIS_DATE, USER_ID - cardinality=6,049,216 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 656.802us, max 927.637us, min 538.874us - ExecTime: avg 162.82ms, max 222.898ms, min 111.77ms - MemoryUsage: sum , avg , max , min - HashTable: sum 2.25 MB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 9.84 MB, avg 839.98 KB, max 839.98 KB, min 839.98 KB - SerializeKeyArena: sum 7.59 MB, avg 648.00 KB, max 648.00 KB, min 648.00 KB - OpenTime: avg 35.387us, max 49.9us, min 28.374us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 46.132K (46132), avg 3.844K (3844), max 3.973K (3973), min 3.743K (3743) HASH_JOIN_OPERATOR (id=357): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (expr_cast(USER_ID as DOUBLE) = expr_cast(CUS_ID as DOUBLE)) - runtime filters: RF108[min_max] <- expr_cast(CUS_ID as DOUBLE)(5963088/8388608/8388608), RF109[bloom] <- expr_cast(CUS_ID as DOUBLE)(5963088/8388608/8388608) - cardinality=12,098,432 - vec output tuple id: 357 - output tuple id: 357 - vIntermediate tuple ids: 356 - hash output slot ids: 3920 3922 3949 - projections: date_format(TIMESTAMP, '%Y%m%d'), USER_ID, CUS_ID - project output tuple id: 357 - BlocksProduced: sum 8.457K (8457), avg 704, max 767, min 662 - CloseTime: avg 12.259us, max 32.233us, min 5.841us - ExecTime: avg 244.480ms, max 314.597ms, min 181.358ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 21.950us, max 28.387us, min 16.186us - ProbeRows: sum 28.093285M (28093285), avg 2.341107M (2341107), max 2.474327M (2474327), min 2.216028M (2216028) - ProjectionTime: avg 103.10ms, max 159.417ms, min 64.730ms - RowsProduced: sum 20.690686M (20690686), avg 1.724223M (1724223), max 2.19987M (2199870), min 1.451045M (1451045) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s439ms, max 3s512ms, min 3s258ms EXCHANGE_OPERATOR (id=356): - PlanInfo - offset: 0 - BlocksProduced: sum 6.703K (6703), avg 558, max 589, min 529 - CloseTime: avg 7.718us, max 24.613us, min 4.217us - ExecTime: avg 51.214ms, max 104.575ms, min 5.700ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 225.76 MB, avg 18.81 MB, max 19.79 MB, min 17.78 MB - OpenTime: avg 23.783us, max 33.866us, min 17.349us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 28.093285M (28093285), avg 2.341107M (2341107), max 2.474327M (2474327), min 2.216028M (2216028) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 731.762ms, max 784.88ms, min 689.393ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=357): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 13.22ms, max 35.239ms, min 3.566ms - InputRows: sum 159.729K (159729), avg 13.31K (13310), max 13.619K (13619), min 12.992K (12992) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 5.14 MB, avg 438.28 KB, max 448.54 KB, min 428.00 KB - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 1.36 MB, avg 116.00 KB, max 117.21 KB, min 114.76 KB - PeakMemoryUsage: sum 6.50 MB, avg 554.28 KB, max 565.74 KB, min 542.75 KB - OpenTime: avg 26.18us, max 48.617us, min 14.158us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=354): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.432us, max 17.576us, min 8.259us - ExecTime: avg 178.315us, max 237.82us, min 140.25us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.48 MB, avg 382.33 KB, max 496.00 KB, min 248.00 KB - OpenTime: avg 17.67us, max 24.610us, min 11.606us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 13.619K (13619), min 12.992K (12992) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s8ms, max 4s22ms, min 3s972ms Fragment 14: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - BlocksProduced: sum 6.71K (6710), avg 559, max 1.235K (1235), min 208 - CloseTime: avg 13.891us, max 19.732us, min 10.273us - ExecTime: avg 180.856ms, max 505.848ms, min 36.846ms - InputRows: sum 28.093285M (28093285), avg 2.341107M (2341107), max 5.197391M (5197391), min 847.308K (847308) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 892.58 MB, avg 74.38 MB, max 166.37 MB, min 26.69 MB - OpenTime: avg 89.947us, max 104.15us, min 68.806us - RowsProduced: sum 28.093285M (28093285), avg 2.341107M (2341107), max 5.197391M (5197391), min 847.308K (847308) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - PlanInfo - TABLE: ods_demo.WEBSTAT_USER_ACTION_FACT(WEBSTAT_USER_ACTION_FACT), PREAGGREGATION: ON - PREDICATES: (TIMESTAMP >= '2024-01-01 00:00:00') AND (USER_ID_TYPE = 'CUSTOMER_ID') - runtime filters: RF108[min_max] -> CAST(USER_ID AS DOUBLE), RF109[bloom] -> CAST(USER_ID AS DOUBLE) - partitions=4/76 (p202401,p202402,p202403,p202404), tablets=40/40, tabletList=13208,13210,13212 ... - cardinality=43490477, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: TIMESTAMP, CAST(USER_ID AS DOUBLE) - project output tuple id: 355 - BlocksProduced: sum 7.598K (7598), avg 633, max 1.422K (1422), min 219 - CloseTime: avg 186.838us, max 312.385us, min 115.330us - ExecTime: avg 545.842ms, max 1s353ms, min 171.156ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.82ms, max 8.714ms, min 246.870us - ProjectionTime: avg 308.911ms, max 961.670ms, min 57.339ms - RowsProduced: sum 28.093285M (28093285), avg 2.341107M (2341107), max 5.197391M (5197391), min 847.308K (847308) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 228.941ms, max 454.903ms, min 64.929ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 299.32 MB, avg 24.94 MB, max 60.33 MB, min 10.13 MB Fragment 15: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.908us, max 25.113us, min 9.696us - ExecTime: avg 1.764ms, max 1.848ms, min 1.521ms - InputRows: sum 159.729K (159729), avg 13.31K (13310), max 13.464K (13464), min 13.144K (13144) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 8.72 MB, avg 744.00 KB, max 744.00 KB, min 744.00 KB - OpenTime: avg 79.732us, max 96.848us, min 71.595us - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 13.464K (13464), min 13.144K (13144) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - PlanInfo - group by: OWNER, CUS_ID - cardinality=5,963,088 - projections: CUS_ID, CAST(CUS_ID AS DOUBLE), OWNER - project output tuple id: 353 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.233us, max 13.359us, min 2.124us - ExecTime: avg 3.749ms, max 4.122ms, min 3.39ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 6.779us, max 25.650us, min 3.363us - ProjectionTime: avg 272.544us, max 340.723us, min 219.420us - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 13.464K (13464), min 13.144K (13144) EXCHANGE_OPERATOR (id=352): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 9.318us, max 20.579us, min 3.917us - ExecTime: avg 122.96us, max 151.539us, min 102.67us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.16 MB, avg 354.67 KB, max 516.00 KB, min 264.00 KB - OpenTime: avg 24.193us, max 46.62us, min 16.491us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 13.464K (13464), min 13.144K (13144) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s920ms, max 3s938ms, min 3s875ms Fragment 16: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.42us, max 21.873us, min 10.161us - ExecTime: avg 7.912ms, max 23.409ms, min 5.715ms - InputRows: sum 159.729K (159729), avg 13.31K (13310), max 14.231K (14231), min 12.601K (12601) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.09 MB, avg 519.67 KB, max 528.00 KB, min 466.00 KB - OpenTime: avg 90.818us, max 129.130us, min 70.383us - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 14.231K (14231), min 12.601K (12601) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - PlanInfo - STREAMING - group by: OWNER, CUS_ID - cardinality=5,963,088 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.455us, max 20.849us, min 1.586us - ExecTime: avg 14.348ms, max 50.401ms, min 6.96ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 6.304us, max 9.410us, min 4.694us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 14.231K (14231), min 12.601K (12601) HASH_JOIN_OPERATOR (id=350): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF106[min_max] <- UNIONID(52568/65536/65536), RF107[in_or_bloom] <- UNIONID(52568/65536/65536) - cardinality=5,963,088 - vec output tuple id: 350 - output tuple id: 350 - vIntermediate tuple ids: 349 - hash output slot ids: 3837 3838 - projections: OWNER, CUS_ID - project output tuple id: 350 - BlocksProduced: sum 4.968K (4968), avg 414, max 419, min 408 - CloseTime: avg 18.642us, max 38.271us, min 7.334us - ExecTime: avg 124.337ms, max 159.640ms, min 88.999ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.79 MB, avg 153.00 KB, max 384.00 KB, min 132.00 KB - ProbeKeyArena: sum 1.79 MB, avg 153.00 KB, max 384.00 KB, min 132.00 KB - OpenTime: avg 17.96us, max 27.102us, min 13.719us - ProbeRows: sum 19.728945M (19728945), avg 1.644078M (1644078), max 1.672625M (1672625), min 1.625142M (1625142) - ProjectionTime: avg 975.911us, max 1.123ms, min 796.174us - RowsProduced: sum 171.225K (171225), avg 14.268K (14268), max 15.025K (15025), min 13.395K (13395) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s389ms, max 2s442ms, min 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 4.973K (4973), avg 414, max 420, min 409 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.291ms, max 12.34ms, min 1.263ms - GetBlockFailedTime: sum 136, avg 11, max 18, min 5 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 191.92 MB, avg 15.99 MB, max 25.41 MB, min 11.11 MB - OpenTime: avg 1.236us, max 4.875us, min 775ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 19.728945M (19728945), avg 1.644078M (1644078), max 1.672625M (1672625), min 1.625142M (1625142) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 819.827ms, max 935.62ms, min 705.667ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 644.373us, max 1.234ms, min 276.947us - InputRows: sum 19.728945M (19728945), avg 1.644078M (1644078), max 2.89375M (2893750), min 601.53K (601530) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.752us, max 4.127us, min 1.479us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 2s178ms, max 2s178ms, min 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF106[min_max] -> CAST(UNIONID AS VARCHAR(32)), RF107[in_or_bloom] -> CAST(UNIONID AS VARCHAR(32)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 4.973K (4973), avg 414, max 729, min 152 - CloseTime: avg 76.414us, max 118.779us, min 39.588us - ExecTime: avg 284.787ms, max 505.519ms, min 160.184ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 268.686us, max 396.534us, min 194.992us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 19.728945M (19728945), avg 1.644078M (1644078), max 2.89375M (2893750), min 601.53K (601530) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 281.862ms, max 503.545ms, min 156.87ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 262.49 MB, avg 21.87 MB, max 31.85 MB, min 10.12 MB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=350): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.107ms, max 24.491ms, min 30.964us - InputRows: sum 180.831K (180831), avg 15.069K (15069), max 180.831K (180831), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 8.40 MB, avg 717.06 KB, max 8.40 MB, min 0.00 - BuildKeyArena: sum 5.52 MB, avg 471.33 KB, max 5.52 MB, min 0.00 - HashTable: sum 1.69 MB, avg 144.20 KB, max 1.69 MB, min 0.00 - PeakMemoryUsage: sum 15.61 MB, avg 1.30 MB, max 15.61 MB, min 0.00 - OpenTime: avg 25.27us, max 62.286us, min 13.664us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 2s746ms, max 2s996ms, min 0ns EXCHANGE_OPERATOR (id=348): - PlanInfo - offset: 0 - BlocksProduced: sum 125, avg 10, max 125, min 0 - CloseTime: avg 7.961us, max 18.72us, min 2.256us - ExecTime: avg 181.500us, max 1.863ms, min 23.596us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.45 MB, avg 550.46 KB, max 6.45 MB, min 0.00 - OpenTime: avg 20.347us, max 25.65us, min 14.882us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 180.831K (180831), avg 15.069K (15069), max 180.831K (180831), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 219.231ms, max 2s630ms, min 0ns Fragment 17: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: sum 125, avg 25, max 27, min 23 - CloseTime: avg 14.904us, max 18.917us, min 13.191us - ExecTime: avg 698.675us, max 755.995us, min 622.527us - InputRows: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 34.151us, max 41.832us, min 28.659us - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=347): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF102[min_max] <- CHAT_ID(2299/2048/2048), RF103[bloom] <- CHAT_ID(2299/2048/2048), RF104[min_max] <- UNIONID(52568/65536/65536), RF105[bloom] <- UNIONID(52568/65536/65536) - cardinality=54,736 - vec output tuple id: 347 - output tuple id: 347 - vIntermediate tuple ids: 346 - hash output slot ids: 3817 3818 - projections: UNIONID, OWNER - project output tuple id: 347 - BlocksProduced: sum 125, avg 25, max 27, min 23 - CloseTime: avg 14.251us, max 24.950us, min 7.225us - ExecTime: avg 17.691ms, max 29.15ms, min 13.522ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.92 MB, avg 802.40 KB, max 996.00 KB, min 364.00 KB - ProbeKeyArena: sum 3.92 MB, avg 802.40 KB, max 996.00 KB, min 364.00 KB - OpenTime: avg 16.436us, max 20.646us, min 13.720us - ProbeRows: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - ProjectionTime: avg 348.926us, max 365.323us, min 331.287us - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s700ms, max 2s29ms, min 1s488ms EXCHANGE_OPERATOR (id=346): - PlanInfo - offset: 0 - BlocksProduced: sum 99, avg 19, max 20, min 19 - CloseTime: avg 11.805us, max 15.332us, min 9.433us - ExecTime: avg 259.390us, max 274.784us, min 252.933us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 39.06 MB, avg 7.81 MB, max 8.15 MB, min 7.50 MB - OpenTime: avg 19.242us, max 24.462us, min 12.262us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 667.43ms, max 667.980ms, min 666.388ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=347): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 18.771ms, max 32.617ms, min 6.8ms - InputRows: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 14.61 MB, avg 2.92 MB, max 3.15 MB, min 2.58 MB - BuildKeyArena: sum 11.93 MB, avg 2.39 MB, max 2.57 MB, min 2.12 MB - HashTable: sum 2.11 MB, avg 432.60 KB, max 445.91 KB, min 412.76 KB - PeakMemoryUsage: sum 28.63 MB, avg 5.73 MB, max 6.14 MB, min 5.09 MB - OpenTime: avg 46.588us, max 107.203us, min 27.410us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=344): - PlanInfo - offset: 0 - BlocksProduced: sum 47, avg 9, max 10, min 8 - CloseTime: avg 12.294us, max 13.426us, min 11.190us - ExecTime: avg 248.544us, max 300.746us, min 177.783us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.74 MB, avg 2.55 MB, max 4.00 MB, min 1.89 MB - OpenTime: avg 20.735us, max 28.400us, min 15.177us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s860ms, max 2s82ms, min 1s570ms Fragment 18: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - BlocksProduced: sum 105, avg 21, max 23, min 20 - CloseTime: avg 14.457us, max 17.724us, min 11.623us - ExecTime: avg 30.104ms, max 74.76ms, min 12.294ms - InputRows: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 39.06 MB, avg 7.81 MB, max 8.05 MB, min 7.43 MB - OpenTime: avg 46.284us, max 52.566us, min 39.171us - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER_CURRENT(QYWX_GROUPCHAT_MEMBER_CURRENT), PREAGGREGATION: ON - runtime filters: RF102[min_max] -> CHAT_ID, RF103[bloom] -> CHAT_ID, RF104[min_max] -> UNIONID, RF105[bloom] -> UNIONID - partitions=1/1 (QYWX_GROUPCHAT_MEMBER_CURRENT), tablets=5/5, tabletList=15193,15195,15197 ... - cardinality=399083, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 29.31us, max 37.590us, min 21.721us - ExecTime: avg 80.791ms, max 125.708ms, min 15.647ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 196.886us, max 265.544us, min 138.274us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 80.328ms, max 125.227ms, min 15.149ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 28.54 MB, avg 5.71 MB, max 6.03 MB, min 5.46 MB Fragment 19: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - BlocksProduced: sum 50, avg 16, max 17, min 16 - CloseTime: avg 13.811us, max 16.625us, min 11.469us - ExecTime: avg 14.402ms, max 24.88ms, min 9.366ms - InputRows: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 22.06 MB, avg 7.35 MB, max 7.96 MB, min 6.70 MB - OpenTime: avg 46.442us, max 51.531us, min 42.747us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=343): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - runtime filters: RF100[min_max] <- CHAT_ID(2299/2048/2048), RF101[in_or_bloom] <- CHAT_ID(2299/2048/2048) - cardinality=52,568 - vec output tuple id: 344 - output tuple id: 344 - vIntermediate tuple ids: 343 - hash output slot ids: 3811 3812 3797 - projections: UNIONID, OWNER, CHAT_ID - project output tuple id: 344 - BlocksProduced: sum 130, avg 43, max 47, min 41 - CloseTime: avg 10.24us, max 10.991us, min 8.659us - ExecTime: avg 11.764ms, max 13.395ms, min 10.860ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.20 MB, avg 408.00 KB, max 408.00 KB, min 408.00 KB - ProbeKeyArena: sum 1.20 MB, avg 408.00 KB, max 408.00 KB, min 408.00 KB - OpenTime: avg 20.468us, max 29.712us, min 14.786us - ProbeRows: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - ProjectionTime: avg 1.170ms, max 1.342ms, min 982.268us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 438.72ms, max 670.365ms, min 0ns OLAP_SCAN_OPERATOR (id=342. table name = QYWX_GROUPCHAT_MEMBER): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER(QYWX_GROUPCHAT_MEMBER), PREAGGREGATION: ON - PREDICATES: UNIONID IS NOT NULL AND (TYPE = 2) - runtime filters: RF100[min_max] -> CHAT_ID, RF101[in_or_bloom] -> CHAT_ID - partitions=1/1 (QYWX_GROUPCHAT_MEMBER), tablets=3/3, tabletList=15206,15208,15210 - cardinality=1111362, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CHAT_ID, UNIONID - project output tuple id: 342 - BlocksProduced: sum 139, avg 46, max 47, min 46 - CloseTime: avg 57.768us, max 72.0us, min 46.845us - ExecTime: avg 156.961ms, max 310.721ms, min 67.629ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 222.125us, max 264.586us, min 181.600us - ProjectionTime: avg 37.671ms, max 79.800ms, min 9.869ms - RowsProduced: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 114.509ms, max 218.170ms, min 56.995ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 30.80 MB, avg 10.27 MB, max 10.27 MB, min 10.27 MB Pipeline : 1(instance_num=3): HASH_JOIN_SINK_OPERATOR (id=343): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 128.919us, max 163.917us, min 110.286us - InputRows: sum 447, avg 149, max 160, min 139 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 22.62 KB, avg 7.54 KB, max 8.10 KB, min 7.03 KB - BuildKeyArena: sum 36.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - HashTable: sum 4.77 KB, avg 1.59 KB, max 1.63 KB, min 1.55 KB - PeakMemoryUsage: sum 51.36 KB, avg 17.12 KB, max 17.73 KB, min 16.57 KB - OpenTime: avg 20.745us, max 25.63us, min 17.687us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=341): - PlanInfo - offset: 0 - BlocksProduced: sum 3, avg 1, max 1, min 1 - CloseTime: avg 9.31us, max 11.450us, min 5.279us - ExecTime: avg 41.670us, max 49.505us, min 30.78us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.75 KB, avg 12.25 KB, max 12.25 KB, min 12.25 KB - OpenTime: avg 22.248us, max 26.200us, min 15.975us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 447, avg 149, max 160, min 139 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s49ms, max 1s49ms, min 1s49ms Fragment 20: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=341,dst_id=341): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 10.324us, max 10.324us, min 10.324us - ExecTime: avg 138.129us, max 138.129us, min 138.129us - InputRows: sum 447, avg 447, max 447, min 447 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.75 KB, avg 36.75 KB, max 36.75 KB, min 36.75 KB - OpenTime: avg 47.896us, max 47.896us, min 47.896us - RowsProduced: sum 447, avg 447, max 447, min 447 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=340. table name = QYWX_GROUPCHAT_INFO): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_INFO(QYWX_GROUPCHAT_INFO), PREAGGREGATION: ON - PREDICATES: NAME like '%五谷磨房丨食疗养生群%' AND (IS_DELETED = 0) - runtime filters: RF110[min_max] -> CAST(OWNER AS VARCHAR(15)), RF111[bloom] -> CAST(OWNER AS VARCHAR(15)) - partitions=1/1 (QYWX_GROUPCHAT_INFO), tablets=1/1, tabletList=18523 - cardinality=22996, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: OWNER, CHAT_ID - project output tuple id: 340 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 37.513us, max 37.513us, min 37.513us - ExecTime: avg 99.774ms, max 99.774ms, min 99.774ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 211.755us, max 211.755us, min 211.755us - ProjectionTime: avg 36.633us, max 36.633us, min 36.633us - RowsProduced: sum 447, avg 447, max 447, min 447 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 99.441ms, max 99.441ms, min 99.441ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 116.00 KB, avg 116.00 KB, max 116.00 KB, min 116.00 KB Fragment 21: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 412.684us, max 4.812ms, min 9.452us - ExecTime: avg 1.345ms, max 5.580ms, min 681.55us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.06 MB, avg 261.07 KB, max 266.41 KB, min 258.41 KB - OpenTime: avg 83.460us, max 94.327us, min 74.797us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=338): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 338 - output tuple id: 338 - vIntermediate tuple ids: 337 - hash output slot ids: 2337 2338 2339 3725 3726 3727 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 2333 3741 2334 - projections: AMOUNT_QW, CAST(DATEKEY AS DOUBLE), AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, USER_ID, CHAT_CNT, USER_NAME, REPLY_PERCENTAGE, COMMENT_NUM, AVG_REPLY_TIME, COMMENT_NUM_PL, COMMENT_NUM_DZ, COMMENT_CUS_NUM, QW_NUM_QXGZ, COMMENT_CUS_AMOUNT, QW_NEW, DATEKEY, GROUP_NEW, VIPCUS_NEW, AMOUNT - project output tuple id: 338 - BlocksProduced: sum 122, avg 10, max 12, min 8 - CloseTime: avg 17.651us, max 39.956us, min 8.46us - ExecTime: avg 1.230ms, max 3.62ms, min 832.798us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 240.00 KB, avg 20.00 KB, max 20.00 KB, min 20.00 KB - ProbeKeyArena: sum 240.00 KB, avg 20.00 KB, max 20.00 KB, min 20.00 KB - OpenTime: avg 38.316us, max 48.594us, min 31.80us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 489.514us, max 2.325ms, min 242.265us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=337): - PlanInfo - offset: 0 - BlocksProduced: sum 122, avg 10, max 12, min 8 - CloseTime: avg 116.248us, max 1.328ms, min 3.648us - ExecTime: avg 273.230us, max 1.537ms, min 120.586us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.70 MB, avg 230.30 KB, max 245.42 KB, min 206.25 KB - OpenTime: avg 20.636us, max 29.822us, min 13.867us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s776ms, max 4s776ms, min 4s776ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=338): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 169.821us, max 235.198us, min 122.575us - InputRows: sum 1.844K (1844), avg 153, max 171, min 139 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 133.26 KB, avg 11.10 KB, max 12.36 KB, min 10.04 KB - BuildKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 19.30 KB, avg 1.61 KB, max 1.68 KB, min 1.55 KB - PeakMemoryUsage: sum 152.46 KB, avg 12.71 KB, max 14.03 KB, min 11.59 KB - OpenTime: avg 17.287us, max 27.97us, min 10.186us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=194): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 5.985us, max 10.882us, min 2.596us - ExecTime: avg 91.788us, max 135.5us, min 57.108us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 144.38 KB, avg 12.03 KB, max 21.81 KB, min 5.00 KB - OpenTime: avg 16.787us, max 22.924us, min 12.406us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.844K (1844), avg 153, max 171, min 139 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s213ms, max 4s239ms, min 4s157ms Fragment 22: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.319us, max 25.243us, min 8.218us - ExecTime: avg 764.835us, max 1.280ms, min 412.353us - InputRows: sum 9.2K (9200), avg 766, max 3.953K (3953), min 10 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.81 MB, avg 239.44 KB, max 1.17 MB, min 6.13 KB - OpenTime: avg 82.481us, max 109.119us, min 69.586us - RowsProduced: sum 9.2K (9200), avg 766, max 3.953K (3953), min 10 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=336): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 336 - output tuple id: 336 - vIntermediate tuple ids: 335 - hash output slot ids: 3691 3692 2380 3693 2381 3694 3695 3696 3697 3699 3700 3701 3702 3703 3704 3705 - projections: AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, CAST(DATEKEY AS DOUBLE), AMOUNT_GROUP, GROUP_CUSNUM_BUY, USER_ID, CHAT_CNT, USER_NAME, REPLY_PERCENTAGE, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, DATEKEY, GROUP_NEW, VIPCUS_NEW, AMOUNT - project output tuple id: 336 - BlocksProduced: sum 122, avg 10, max 12, min 1 - CloseTime: avg 17.430us, max 26.185us, min 10.332us - ExecTime: avg 1.119ms, max 2.327ms, min 256.846us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 112.00 KB, avg 9.33 KB, max 20.00 KB, min 4.00 KB - ProbeKeyArena: sum 112.00 KB, avg 9.33 KB, max 20.00 KB, min 4.00 KB - OpenTime: avg 32.486us, max 48.894us, min 24.501us - ProbeRows: sum 9.2K (9200), avg 766, max 3.953K (3953), min 10 - ProjectionTime: avg 274.754us, max 709.364us, min 79.900us - RowsProduced: sum 9.2K (9200), avg 766, max 3.953K (3953), min 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 122, avg 10, max 12, min 1 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 61.494us, max 81.714us, min 27.5us - GetBlockFailedTime: sum 38, avg 3, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.37 MB, avg 202.23 KB, max 539.25 KB, min 12.00 KB - OpenTime: avg 849ns, max 1.179us, min 729ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 3.953K (3953), min 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s769ms, max 4s773ms, min 4s766ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 105.814us, max 144.192us, min 67.872us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.642us, max 12.291us, min 1.335us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=335): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 334 - output tuple id: 334 - vIntermediate tuple ids: 333 - hash output slot ids: 3661 3662 3663 3664 3666 2675 3667 2676 3668 3669 3670 3671 3672 3673 - projections: AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, AMOUNT_GROUP, GROUP_CUSNUM_BUY, USER_ID, USER_NAME, CAST(DATEKEY AS DOUBLE), AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, DATEKEY, GROUP_NEW, VIPCUS_NEW, AMOUNT - project output tuple id: 334 - BlocksProduced: sum 122, avg 10, max 12, min 8 - CloseTime: avg 21.476us, max 38.357us, min 6.868us - ExecTime: avg 995.241us, max 1.449ms, min 819.341us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 240.00 KB, avg 20.00 KB, max 20.00 KB, min 20.00 KB - ProbeKeyArena: sum 240.00 KB, avg 20.00 KB, max 20.00 KB, min 20.00 KB - OpenTime: avg 28.816us, max 37.883us, min 22.131us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 323.611us, max 416.261us, min 266.706us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=334): - PlanInfo - offset: 0 - BlocksProduced: sum 122, avg 10, max 12, min 8 - CloseTime: avg 7.270us, max 12.442us, min 3.655us - ExecTime: avg 126.890us, max 159.286us, min 92.402us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.85 MB, avg 157.92 KB, max 180.61 KB, min 143.80 KB - OpenTime: avg 18.852us, max 40.353us, min 12.424us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s766ms, max 4s768ms, min 4s765ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=336): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 140.873us, max 1.367ms, min 15.886us - InputRows: sum 8.217K (8217), avg 684, max 8.217K (8217), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 397.64 KB, avg 33.14 KB, max 397.64 KB, min 0.00 - BuildKeyArena: sum 192.00 KB, avg 16.00 KB, max 192.00 KB, min 0.00 - HashTable: sum 96.11 KB, avg 8.01 KB, max 96.11 KB, min 0.00 - PeakMemoryUsage: sum 681.74 KB, avg 56.81 KB, max 681.74 KB, min 0.00 - OpenTime: avg 15.426us, max 29.318us, min 9.781us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 286.527ms, max 312.719ms, min 0ns EXCHANGE_OPERATOR (id=202): - PlanInfo - offset: 0 - BlocksProduced: sum 3, avg 0, max 3, min 0 - CloseTime: avg 7.932us, max 14.402us, min 2.789us - ExecTime: avg 30.920us, max 68.148us, min 16.811us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 408.00 KB, avg 34.00 KB, max 408.00 KB, min 0.00 - OpenTime: avg 18.991us, max 36.921us, min 12.39us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 684, max 8.217K (8217), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 24.807ms, max 297.693ms, min 0ns Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=335): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 148.25us, max 276.688us, min 100.878us - InputRows: sum 3.365K (3365), avg 280, max 311, min 266 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 163.73 KB, avg 13.64 KB, max 15.11 KB, min 12.95 KB - BuildKeyArena: sum 144.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - HashTable: sum 37.24 KB, avg 3.10 KB, max 3.22 KB, min 3.05 KB - PeakMemoryUsage: sum 296.88 KB, avg 24.74 KB, max 26.33 KB, min 23.99 KB - OpenTime: avg 13.669us, max 22.24us, min 8.833us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=230): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 6.802us, max 16.557us, min 2.63us - ExecTime: avg 88.514us, max 125.920us, min 62.660us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 190.19 KB, avg 15.85 KB, max 22.56 KB, min 6.88 KB - OpenTime: avg 17.14us, max 23.855us, min 11.819us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.365K (3365), avg 280, max 311, min 266 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s683ms, max 2s697ms, min 2s672ms Fragment 23: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.337us, max 19.920us, min 11.136us - ExecTime: avg 2.48ms, max 12.794ms, min 415.477us - InputRows: sum 9.2K (9200), avg 766, max 7.187K (7187), min 116 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.06 MB, avg 176.18 KB, max 1.54 MB, min 33.19 KB - OpenTime: avg 77.309us, max 98.863us, min 59.31us - RowsProduced: sum 9.2K (9200), avg 766, max 7.187K (7187), min 116 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=333): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 332 - output tuple id: 332 - vIntermediate tuple ids: 331 - hash output slot ids: 3636 3637 3638 3639 3640 3641 3642 3643 3644 3005 3006 3007 - projections: AMOUNT_QW, AMOUNT_MM, VIPCUS_NEW_2, USER_ID, CAST(DATEKEY AS DOUBLE), USER_NAME, AVG_REPLY_TIME, QW_NUM_QXGZ, QW_NEW, DATEKEY, GROUP_NEW, VIPCUS_NEW, AMOUNT - project output tuple id: 332 - BlocksProduced: sum 156, avg 13, max 24, min 12 - CloseTime: avg 15.195us, max 28.500us, min 9.200us - ExecTime: avg 1.119ms, max 3.440ms, min 718.484us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 80.00 KB, avg 6.67 KB, max 20.00 KB, min 4.00 KB - ProbeKeyArena: sum 80.00 KB, avg 6.67 KB, max 20.00 KB, min 4.00 KB - OpenTime: avg 27.787us, max 48.804us, min 17.242us - ProbeRows: sum 9.2K (9200), avg 766, max 7.187K (7187), min 116 - ProjectionTime: avg 275.631us, max 632.234us, min 177.381us - RowsProduced: sum 9.2K (9200), avg 766, max 7.187K (7187), min 116 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: sum 156, avg 13, max 24, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 62.437us, max 99.192us, min 43.242us - GetBlockFailedTime: sum 66, avg 5, max 8, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 997.75 KB, avg 83.15 KB, max 756.00 KB, min 5.38 KB - OpenTime: avg 878ns, max 3.456us, min 519ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 7.187K (7187), min 116 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s761ms, max 4s763ms, min 4s756ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 95.617us, max 142.793us, min 42.705us - InputRows: sum 9.2K (9200), avg 766, max 1.401K (1401), min 135 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.856us, max 5.365us, min 1.10us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=332): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 330 - output tuple id: 330 - vIntermediate tuple ids: 329 - hash output slot ids: 3617 3618 3619 3107 3620 3621 3622 3623 3615 - projections: QW_NUM_QXGZ, QW_NEW, DATEKEY, GROUP_NEW, USER_ID, USER_NAME, VIPCUS_NEW, AMOUNT, AVG_REPLY_TIME, CAST(DATEKEY AS DOUBLE) - project output tuple id: 330 - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 20.820us, max 34.439us, min 9.80us - ExecTime: avg 926.592us, max 1.272ms, min 674.24us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 224.00 KB, avg 18.67 KB, max 20.00 KB, min 4.00 KB - ProbeKeyArena: sum 224.00 KB, avg 18.67 KB, max 20.00 KB, min 4.00 KB - OpenTime: avg 23.65us, max 31.803us, min 14.740us - ProbeRows: sum 9.2K (9200), avg 766, max 1.401K (1401), min 135 - ProjectionTime: avg 301.2us, max 407.213us, min 210.55us - RowsProduced: sum 9.2K (9200), avg 766, max 1.401K (1401), min 135 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 51.871us, max 93.27us, min 37.863us - GetBlockFailedTime: sum 82, avg 6, max 10, min 3 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1010.50 KB, avg 84.21 KB, max 91.00 KB, min 9.50 KB - OpenTime: avg 523ns, max 622ns, min 457ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 1.401K (1401), min 135 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s761ms, max 4s763ms, min 4s760ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 93.990us, max 243.677us, min 38.638us - InputRows: sum 9.2K (9200), avg 766, max 7.807K (7807), min 115 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.585us, max 3.911us, min 866ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=331): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(DATEKEY as DOUBLE) = expr_cast(STATIS_DATE as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 328 - output tuple id: 328 - vIntermediate tuple ids: 327 - hash output slot ids: 3600 3601 3602 3603 3241 3596 3598 3599 - projections: QW_NUM_QXGZ, CAST(DATEKEY AS DOUBLE), QW_NEW, DATEKEY, GROUP_NEW, USER_ID, USER_NAME, VIPCUS_NEW, AVG_REPLY_TIME - project output tuple id: 328 - BlocksProduced: sum 156, avg 13, max 24, min 12 - CloseTime: avg 14.712us, max 28.305us, min 5.329us - ExecTime: avg 732.206us, max 2.256ms, min 418.886us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 64.00 KB, avg 5.33 KB, max 20.00 KB, min 4.00 KB - ProbeKeyArena: sum 64.00 KB, avg 5.33 KB, max 20.00 KB, min 4.00 KB - OpenTime: avg 18.392us, max 29.575us, min 13.735us - ProbeRows: sum 9.2K (9200), avg 766, max 7.807K (7807), min 115 - ProjectionTime: avg 231.929us, max 626.787us, min 131.755us - RowsProduced: sum 9.2K (9200), avg 766, max 7.807K (7807), min 115 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: sum 156, avg 13, max 24, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 52.627us, max 93.470us, min 31.235us - GetBlockFailedTime: sum 62, avg 5, max 8, min 3 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1020.69 KB, avg 85.06 KB, max 903.44 KB, min 6.00 KB - OpenTime: avg 661ns, max 1.781us, min 450ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 7.807K (7807), min 115 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s760ms, max 4s762ms, min 4s756ms Pipeline : 3(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 102.968us, max 167.902us, min 67.418us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.822us, max 16.320us, min 913ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=330): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(STATIS_DATE as DOUBLE) = expr_cast(DATEKEY as DOUBLE)) - cardinality=4,106,453 - vec output tuple id: 326 - output tuple id: 326 - vIntermediate tuple ids: 325 - hash output slot ids: 3585 3412 3413 3415 3416 3417 3418 - projections: QW_NUM_QXGZ, CAST(DATEKEY AS DOUBLE), QW_NEW, DATEKEY, GROUP_NEW, USER_ID, USER_NAME, AVG_REPLY_TIME - project output tuple id: 326 - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 10.63us, max 25.376us, min 5.636us - ExecTime: avg 931.381us, max 1.161ms, min 731.296us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 18.957us, max 27.668us, min 13.660us - ProbeRows: sum 3.722K (3722), avg 310, max 327, min 297 - ProjectionTime: avg 265.314us, max 366.986us, min 202.953us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=329): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 5.158us, max 8.458us, min 3.595us - ExecTime: avg 78.591us, max 103.39us, min 65.413us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 108.88 KB, avg 9.07 KB, max 16.00 KB, min 4.00 KB - OpenTime: avg 18.202us, max 23.26us, min 12.973us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.722K (3722), avg 310, max 327, min 297 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s756ms, max 4s758ms, min 4s754ms Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=333): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 78.399us, max 652.79us, min 11.853us - InputRows: sum 4.964K (4964), avg 413, max 4.964K (4964), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 318.79 KB, avg 26.57 KB, max 318.79 KB, min 0.00 - BuildKeyArena: sum 116.00 KB, avg 9.67 KB, max 116.00 KB, min 0.00 - HashTable: sum 51.40 KB, avg 4.28 KB, max 51.40 KB, min 0.00 - PeakMemoryUsage: sum 482.18 KB, avg 40.18 KB, max 482.18 KB, min 0.00 - OpenTime: avg 13.246us, max 30.874us, min 6.402us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 4s211ms, max 4s594ms, min 0ns EXCHANGE_OPERATOR (id=252): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 5.976us, max 10.198us, min 3.681us - ExecTime: avg 33.587us, max 142.553us, min 16.801us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 163.50 KB, avg 13.63 KB, max 163.50 KB, min 0.00 - OpenTime: avg 17.106us, max 30.697us, min 9.393us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.964K (4964), avg 413, max 4.964K (4964), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 370.105ms, max 4s441ms, min 0ns Pipeline : 5(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=332): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 51.240us, max 341.209us, min 10.625us - InputRows: sum 2.137K (2137), avg 178, max 2.137K (2137), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 84.85 KB, avg 7.07 KB, max 84.85 KB, min 0.00 - BuildKeyArena: sum 56.00 KB, avg 4.67 KB, max 56.00 KB, min 0.00 - HashTable: sum 24.36 KB, avg 2.03 KB, max 24.36 KB, min 0.00 - PeakMemoryUsage: sum 161.20 KB, avg 13.43 KB, max 161.20 KB, min 0.00 - OpenTime: avg 10.33us, max 18.983us, min 4.642us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 1s477ms, max 1s612ms, min 0ns EXCHANGE_OPERATOR (id=263): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 8.320us, max 16.340us, min 3.15us - ExecTime: avg 4.300ms, max 51.175ms, min 13.655us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 78.00 KB, avg 6.50 KB, max 78.00 KB, min 0.00 - OpenTime: avg 29.95us, max 184.507us, min 8.115us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.137K (2137), avg 178, max 2.137K (2137), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 80.278ms, max 963.339ms, min 0ns Pipeline : 6(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=331): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 39.150us, max 179.627us, min 15.60us - InputRows: sum 43, avg 3, max 43, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.29 KB, avg 110.00 B, max 1.29 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 436.00 B, avg 36.00 B, max 436.00 B, min 0.00 - PeakMemoryUsage: sum 1.71 KB, avg 146.00 B, max 1.71 KB, min 0.00 - OpenTime: avg 9.755us, max 16.670us, min 6.946us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 1s386ms, max 1s512ms, min 0ns EXCHANGE_OPERATOR (id=277): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 12, min 0 - CloseTime: avg 11.47us, max 21.738us, min 3.764us - ExecTime: avg 36.851us, max 129.881us, min 21.895us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.31 KB, avg 197.00 B, max 2.31 KB, min 0.00 - OpenTime: avg 17.407us, max 30.47us, min 12.516us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43, avg 3, max 43, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 68.118ms, max 817.420ms, min 0ns Pipeline : 7(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=330): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 164.943us, max 219.375us, min 120.32us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 636.54 KB, avg 53.04 KB, max 54.44 KB, min 50.88 KB - BuildKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - HashTable: sum 93.03 KB, avg 7.75 KB, max 7.84 KB, min 7.61 KB - PeakMemoryUsage: sum 969.48 KB, avg 80.79 KB, max 82.28 KB, min 78.48 KB - OpenTime: avg 9.808us, max 20.757us, min 5.329us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=310): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 8.322us, max 16.941us, min 3.559us - ExecTime: avg 45.330us, max 62.467us, min 33.804us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 941.16 KB, avg 78.43 KB, max 84.88 KB, min 73.43 KB - OpenTime: avg 16.326us, max 28.467us, min 9.998us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s967ms, max 2s991ms, min 2s922ms Fragment 24: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.753us, max 21.928us, min 10.484us - ExecTime: avg 317.727us, max 361.515us, min 229.132us - InputRows: sum 3.722K (3722), avg 310, max 342, min 292 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 203.38 KB, avg 16.95 KB, max 18.50 KB, min 16.00 KB - OpenTime: avg 66.693us, max 76.404us, min 58.886us - RowsProduced: sum 3.722K (3722), avg 310, max 342, min 292 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=328): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT UNIONID))[#3582] - group by: STATIS_DATE, OWNER - cardinality=4,106,453 - projections: CAST(STATIS_DATE AS DOUBLE), OWNER, GROUP_NEW - project output tuple id: 324 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 509ns, max 929ns, min 247ns - ExecTime: avg 127.195us, max 178.476us, min 71.823us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.655us, max 10.430us, min 5.289us - ProjectionTime: avg 51.932us, max 80.173us, min 29.659us - RowsProduced: sum 3.722K (3722), avg 310, max 342, min 292 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s754ms, max 4s760ms, min 4s752ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=328): - CloseTime: avg 1.375us, max 4.915us, min 552ns - ExecTime: avg 924.681us, max 1.197ms, min 813.628us - InputRows: sum 20.822K (20822), avg 1.735K (1735), max 1.922K (1922), min 1.637K (1637) - MemoryUsage: sum , avg , max , min - HashTable: sum 143.72 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 6.42 MB, avg 547.98 KB, max 547.98 KB, min 547.98 KB - SerializeKeyArena: sum 6.28 MB, avg 536.00 KB, max 536.00 KB, min 536.00 KB - OpenTime: avg 21.40us, max 31.162us, min 15.641us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=327): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 5.22us, max 8.906us, min 2.411us - ExecTime: avg 101.97us, max 143.469us, min 83.131us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.07 MB, avg 91.71 KB, max 108.50 KB, min 31.00 KB - OpenTime: avg 18.970us, max 36.151us, min 11.72us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 20.822K (20822), avg 1.735K (1735), max 1.922K (1922), min 1.637K (1637) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s746ms, max 4s748ms, min 4s742ms Fragment 25: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.37us, max 21.484us, min 10.752us - ExecTime: avg 578.485us, max 856.222us, min 439.694us - InputRows: sum 20.822K (20822), avg 1.735K (1735), max 1.781K (1781), min 1.685K (1685) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.20 MB, avg 187.92 KB, max 194.00 KB, min 185.00 KB - OpenTime: avg 71.485us, max 81.173us, min 61.937us - RowsProduced: sum 20.822K (20822), avg 1.735K (1735), max 1.781K (1781), min 1.685K (1685) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT UNIONID)[#3579] - group by: STATIS_DATE, OWNER - cardinality=4,106,453 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 273.306us, max 420.512us, min 190.563us - ExecTime: avg 4.697ms, max 8.69ms, min 4.42ms - MemoryUsage: sum , avg , max , min - HashTable: sum 575.72 KB, avg 47.98 KB, max 47.98 KB, min 47.98 KB - PeakMemoryUsage: sum 7.41 MB, avg 631.98 KB, max 631.98 KB, min 631.98 KB - SerializeKeyArena: sum 6.84 MB, avg 584.00 KB, max 584.00 KB, min 584.00 KB - OpenTime: avg 27.8us, max 37.462us, min 22.282us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 20.822K (20822), avg 1.735K (1735), max 1.781K (1781), min 1.685K (1685) HASH_JOIN_OPERATOR (id=325): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (UNIONID = UNION_ID) - runtime filters: RF098[min_max] <- UNION_ID(3252052/4194304/4194304), RF099[bloom] <- UNION_ID(3252052/4194304/4194304) - cardinality=21,068,298 - vec output tuple id: 321 - output tuple id: 321 - vIntermediate tuple ids: 320 - hash output slot ids: 3565 3566 3567 - projections: date_format(JOIN_TIME, '%Y%m%d'), OWNER, UNIONID - project output tuple id: 321 - BlocksProduced: sum 1.77K (1770), avg 147, max 856, min 83 - CloseTime: avg 23.95us, max 57.442us, min 12.9us - ExecTime: avg 12.183ms, max 30.131ms, min 5.674ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 804.00 KB, avg 67.00 KB, max 156.00 KB, min 56.00 KB - ProbeKeyArena: sum 804.00 KB, avg 67.00 KB, max 156.00 KB, min 56.00 KB - OpenTime: avg 17.379us, max 27.185us, min 10.834us - ProbeRows: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - ProjectionTime: avg 2.671ms, max 14.190ms, min 945.974us - RowsProduced: sum 76.209K (76209), avg 6.35K (6350), max 7.289K (7289), min 5.933K (5933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s296ms, max 2s442ms, min 2s151ms HASH_JOIN_OPERATOR (id=324): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF096[min_max] <- UNIONID(193390/262144/262144), RF097[bloom] <- UNIONID(193390/262144/262144) - cardinality=21,068,298 - vec output tuple id: 319 - output tuple id: 319 - vIntermediate tuple ids: 318 - hash output slot ids: 3488 3486 3487 - projections: JOIN_TIME, OWNER, UNIONID - project output tuple id: 319 - BlocksProduced: sum 1.858K (1858), avg 154, max 943, min 83 - CloseTime: avg 13.851us, max 23.528us, min 7.681us - ExecTime: avg 57.800ms, max 398.870ms, min 19.929ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.75 MB, avg 405.00 KB, max 504.00 KB, min 396.00 KB - ProbeKeyArena: sum 4.75 MB, avg 405.00 KB, max 504.00 KB, min 396.00 KB - OpenTime: avg 11.524us, max 16.240us, min 7.886us - ProbeRows: sum 22.847379M (22847379), avg 1.903948M (1903948), max 19.364209M (19364209), min 315.944K (315944) - ProjectionTime: avg 761.300us, max 4.697ms, min 366.316us - RowsProduced: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 618.208ms, max 935.474ms, min 456.272ms EXCHANGE_OPERATOR (id=323): - PlanInfo - offset: 0 - BlocksProduced: sum 3.647K (3647), avg 303, max 2.743K (2743), min 82 - CloseTime: avg 1.946ms, max 12.706ms, min 4.642us - ExecTime: avg 12.872ms, max 36.969ms, min 733.123us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 57.92 MB, avg 4.83 MB, max 19.66 MB, min 2.52 MB - OpenTime: avg 20.905us, max 32.275us, min 15.14us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.847379M (22847379), avg 1.903948M (1903948), max 19.364209M (19364209), min 315.944K (315944) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s88ms, max 1s222ms, min 872.406ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=325): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 137.384ms, max 200.916ms, min 96.26ms - InputRows: sum 4.850276M (4850276), avg 404.189K (404189), max 413.713K (413713), min 402.189K (402189) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 490.08 MB, avg 40.84 MB, max 41.59 MB, min 40.66 MB - BuildKeyArena: sum 148.09 MB, avg 12.34 MB, max 12.63 MB, min 12.28 MB - HashTable: sum 42.50 MB, avg 3.54 MB, max 3.58 MB, min 3.53 MB - PeakMemoryUsage: sum 680.63 MB, avg 56.72 MB, max 57.80 MB, min 56.47 MB - OpenTime: avg 20.243us, max 38.908us, min 10.781us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=316): - PlanInfo - offset: 0 - BlocksProduced: sum 1.222K (1222), avg 101, max 108, min 100 - CloseTime: avg 13.528us, max 26.546us, min 5.874us - ExecTime: avg 5.575ms, max 26.968ms, min 2.312ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 139.89 MB, avg 11.66 MB, max 20.26 MB, min 6.61 MB - OpenTime: avg 17.78us, max 31.943us, min 9.41us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.850276M (4850276), avg 404.189K (404189), max 413.713K (413713), min 402.189K (402189) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s660ms, max 2s955ms, min 2s367ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=324): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.519ms, max 2.891ms, min 976.263us - InputRows: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.79 MB, avg 323.42 KB, max 361.06 KB, min 307.16 KB - BuildKeyArena: sum 2.28 MB, avg 194.33 KB, max 216.00 KB, min 184.00 KB - HashTable: sum 726.47 KB, avg 60.54 KB, max 63.85 KB, min 59.11 KB - PeakMemoryUsage: sum 6.73 MB, avg 574.28 KB, max 636.91 KB, min 546.26 KB - OpenTime: avg 16.856us, max 37.536us, min 8.673us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=321): - PlanInfo - offset: 0 - BlocksProduced: sum 36, avg 3, max 3, min 3 - CloseTime: avg 10.44us, max 13.607us, min 6.32us - ExecTime: avg 63.564us, max 73.169us, min 53.478us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.89 MB, avg 246.67 KB, max 504.00 KB, min 132.00 KB - OpenTime: avg 14.991us, max 30.652us, min 10.792us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s100ms, max 1s277ms, min 921.757ms Fragment 26: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - BlocksProduced: sum 3.647K (3647), avg 303, max 474, min 75 - CloseTime: avg 13.303us, max 23.420us, min 9.106us - ExecTime: avg 152.954ms, max 563.242ms, min 25.252ms - InputRows: sum 22.847379M (22847379), avg 1.903948M (1903948), max 3.128M (3128000), min 307.192K (307192) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 253.79 MB, avg 21.15 MB, max 40.44 MB, min 9.82 MB - OpenTime: avg 67.735us, max 82.776us, min 58.810us - RowsProduced: sum 22.847379M (22847379), avg 1.903948M (1903948), max 3.128M (3128000), min 307.192K (307192) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF096[min_max] -> CAST(UNIONID AS VARCHAR(32)), RF097[bloom] -> CAST(UNIONID AS VARCHAR(32)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 5.663K (5663), avg 471, max 773, min 78 - CloseTime: avg 47.28us, max 91.2us, min 23.892us - ExecTime: avg 213.205ms, max 431.740ms, min 122.64ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 195.587us, max 316.44us, min 111.167us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.847379M (22847379), avg 1.903948M (1903948), max 3.128M (3128000), min 307.192K (307192) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 210.244ms, max 427.589ms, min 119.465ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 229.85 MB, avg 19.15 MB, max 29.43 MB, min 10.07 MB Fragment 27: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - BlocksProduced: sum 36, avg 12, max 12, min 12 - CloseTime: avg 14.497us, max 16.538us, min 12.155us - ExecTime: avg 9.271ms, max 19.407ms, min 4.56ms - InputRows: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.90 MB, avg 1.63 MB, max 1.70 MB, min 1.58 MB - OpenTime: avg 77.434us, max 84.882us, min 73.638us - RowsProduced: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=320): - PlanInfo - join op: LEFT OUTER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - cardinality=193,390 - vec output tuple id: 316 - output tuple id: 316 - vIntermediate tuple ids: 315 - hash output slot ids: 3457 3479 3480 - projections: JOIN_TIME, OWNER, UNIONID - project output tuple id: 316 - BlocksProduced: sum 20, avg 6, max 7, min 6 - CloseTime: avg 3.814ms, max 11.400ms, min 13.243us - ExecTime: avg 7.763ms, max 14.595ms, min 3.260ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 976.00 KB, avg 325.33 KB, max 420.00 KB, min 148.00 KB - ProbeKeyArena: sum 976.00 KB, avg 325.33 KB, max 420.00 KB, min 148.00 KB - OpenTime: avg 18.573us, max 22.283us, min 14.547us - ProbeRows: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - ProjectionTime: avg 352.666us, max 408.575us, min 251.460us - RowsProduced: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=319. table name = QYWX_GROUPCHAT_MEMBER): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER(QYWX_GROUPCHAT_MEMBER), PREAGGREGATION: ON - PREDICATES: (date_format(JOIN_TIME, '%Y%m') >= '202401') AND UNIONID IS NOT NULL AND (TYPE = 2) AND (JOIN_TIME >= '2021-01-01 00:00:00') - runtime filters: RF098[min_max] -> CAST(UNIONID AS VARCHAR(96)), RF099[bloom] -> CAST(UNIONID AS VARCHAR(96)) - partitions=1/1 (QYWX_GROUPCHAT_MEMBER), tablets=3/3, tabletList=15206,15208,15210 - cardinality=1111362, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CHAT_ID, UNIONID, JOIN_TIME - project output tuple id: 314 - BlocksProduced: sum 20, avg 6, max 7, min 6 - CloseTime: avg 54.153us, max 76.48us, min 37.655us - ExecTime: avg 163.981ms, max 184.167ms, min 137.296ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 257.555us, max 287.31us, min 217.822us - ProjectionTime: avg 503.550us, max 599.93us, min 431.37us - RowsProduced: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 163.18ms, max 183.173ms, min 136.239ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 6.29 MB, avg 2.10 MB, max 2.19 MB, min 2.00 MB Pipeline : 1(instance_num=3): HASH_JOIN_SINK_OPERATOR (id=320): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.348ms, max 1.418ms, min 1.263ms - InputRows: sum 22.996K (22996), avg 7.665K (7665), max 7.729K (7729), min 7.609K (7609) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.10 MB, avg 376.61 KB, max 379.77 KB, min 373.87 KB - BuildKeyArena: sum 824.00 KB, avg 274.67 KB, max 276.00 KB, min 272.00 KB - HashTable: sum 281.85 KB, avg 93.95 KB, max 94.20 KB, min 93.73 KB - PeakMemoryUsage: sum 2.17 MB, avg 741.22 KB, max 745.96 KB, min 735.60 KB - OpenTime: avg 8.858us, max 10.514us, min 7.375us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=318): - PlanInfo - offset: 0 - BlocksProduced: sum 6, avg 2, max 2, min 2 - CloseTime: avg 8.661us, max 11.180us, min 5.678us - ExecTime: avg 56.633us, max 69.566us, min 47.20us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.72 MB, avg 588.00 KB, max 588.00 KB, min 588.00 KB - OpenTime: avg 22.423us, max 31.162us, min 14.896us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.996K (22996), avg 7.665K (7665), max 7.729K (7729), min 7.609K (7609) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 17.223ms, max 17.452ms, min 16.927ms Fragment 28: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=318,dst_id=318): - BlocksProduced: sum 6, avg 6, max 6, min 6 - CloseTime: avg 8.473us, max 8.473us, min 8.473us - ExecTime: avg 2.442ms, max 2.442ms, min 2.442ms - InputRows: sum 22.996K (22996), avg 22.996K (22996), max 22.996K (22996), min 22.996K (22996) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.72 MB, avg 1.72 MB, max 1.72 MB, min 1.72 MB - OpenTime: avg 37.758us, max 37.758us, min 37.758us - RowsProduced: sum 22.996K (22996), avg 22.996K (22996), max 22.996K (22996), min 22.996K (22996) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=317. table name = QYWX_GROUPCHAT_INFO): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_INFO(QYWX_GROUPCHAT_INFO), PREAGGREGATION: ON - partitions=1/1 (QYWX_GROUPCHAT_INFO), tablets=1/1, tabletList=18523 - cardinality=22996, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 6, avg 6, max 6, min 6 - CloseTime: avg 24.93us, max 24.93us, min 24.93us - ExecTime: avg 4.792ms, max 4.792ms, min 4.792ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 355.324us, max 355.324us, min 355.324us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.996K (22996), avg 22.996K (22996), max 22.996K (22996), min 22.996K (22996) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 4.335ms, max 4.335ms, min 4.335ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 1.35 MB, avg 1.35 MB, max 1.35 MB, min 1.35 MB Fragment 29: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - BlocksProduced: sum 1.231K (1231), avg 102, max 105, min 100 - CloseTime: avg 14.846us, max 22.660us, min 9.945us - ExecTime: avg 128.709ms, max 191.132ms, min 89.94ms - InputRows: sum 4.850276M (4850276), avg 404.189K (404189), max 405.705K (405705), min 403.141K (403141) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 790.28 MB, avg 65.86 MB, max 67.30 MB, min 64.78 MB - OpenTime: avg 66.914us, max 99.630us, min 55.824us - RowsProduced: sum 4.850276M (4850276), avg 404.189K (404189), max 405.705K (405705), min 403.141K (403141) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=315): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF094[min_max] <- EXTERNAL_USER_ID(3252052/4194304/4194304), RF095[bloom] <- EXTERNAL_USER_ID(3252052/4194304/4194304) - cardinality=3,252,052 - vec output tuple id: 311 - output tuple id: 311 - vIntermediate tuple ids: 310 - hash output slot ids: 3440 3438 3439 - projections: UNION_ID, EXTERNAL_USER_ID, EXTERNAL_USER_ID - project output tuple id: 311 - BlocksProduced: sum 2.007K (2007), avg 167, max 169, min 165 - CloseTime: avg 15.830us, max 32.299us, min 7.179us - ExecTime: avg 363.465ms, max 506.906ms, min 282.625ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.00 MB, avg 255.67 KB, max 456.00 KB, min 160.00 KB - ProbeKeyArena: sum 3.00 MB, avg 255.67 KB, max 456.00 KB, min 160.00 KB - OpenTime: avg 13.122us, max 19.418us, min 8.718us - ProbeRows: sum 5.612549M (5612549), avg 467.712K (467712), max 468.692K (468692), min 466.891K (466891) - ProjectionTime: avg 12.969ms, max 27.979ms, min 6.627ms - RowsProduced: sum 4.850276M (4850276), avg 404.189K (404189), max 405.705K (405705), min 403.141K (403141) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s133ms, max 1s521ms, min 724.678ms EXCHANGE_OPERATOR (id=314): - PlanInfo - offset: 0 - BlocksProduced: sum 1.361K (1361), avg 113, max 115, min 112 - CloseTime: avg 9.591us, max 14.760us, min 4.259us - ExecTime: avg 3.513ms, max 19.863ms, min 1.876ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 234.27 MB, avg 19.52 MB, max 19.95 MB, min 18.56 MB - OpenTime: avg 19.408us, max 41.177us, min 10.546us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.612549M (5612549), avg 467.712K (467712), max 468.692K (468692), min 466.891K (466891) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s391ms, max 1s591ms, min 1s22ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=315): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 195.626ms, max 333.928ms, min 94.968ms - InputRows: sum 4.858108M (4858108), avg 404.842K (404842), max 406.368K (406368), min 403.807K (403807) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 166.79 MB, avg 13.90 MB, max 13.95 MB, min 13.86 MB - BuildKeyArena: sum 166.86 MB, avg 13.91 MB, max 13.96 MB, min 13.87 MB - HashTable: sum 42.53 MB, avg 3.54 MB, max 3.55 MB, min 3.54 MB - PeakMemoryUsage: sum 376.14 MB, avg 31.34 MB, max 31.45 MB, min 31.27 MB - OpenTime: avg 18.852us, max 51.734us, min 11.844us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=312): - PlanInfo - offset: 0 - BlocksProduced: sum 1.201K (1201), avg 100, max 101, min 99 - CloseTime: avg 14.264us, max 28.252us, min 9.108us - ExecTime: avg 1.267ms, max 4.647ms, min 886.915us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 61.33 MB, avg 5.11 MB, max 8.31 MB, min 3.03 MB - OpenTime: avg 28.816us, max 149.306us, min 12.352us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.858108M (4858108), avg 404.842K (404842), max 406.368K (406368), min 403.807K (403807) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 671.924ms, max 916.874ms, min 440.745ms Fragment 30: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - BlocksProduced: sum 1.366K (1366), avg 341, max 382, min 284 - CloseTime: avg 15.609us, max 24.694us, min 11.153us - ExecTime: avg 424.208ms, max 514.997ms, min 237.858ms - InputRows: sum 5.612549M (5612549), avg 1.403137M (1403137), max 1.576607M (1576607), min 1.152608M (1152608) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 574.23 MB, avg 143.56 MB, max 159.76 MB, min 119.07 MB - OpenTime: avg 70.414us, max 77.80us, min 64.610us - RowsProduced: sum 5.612549M (5612549), avg 1.403137M (1403137), max 1.576607M (1576607), min 1.152608M (1152608) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=313. table name = QYWX_EXTERNAL_USER_INFO): - PlanInfo - TABLE: ods_demo.QYWX_EXTERNAL_USER_INFO(QYWX_EXTERNAL_USER_INFO), PREAGGREGATION: ON - runtime filters: RF094[min_max] -> EXTERNAL_USER_ID, RF095[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (QYWX_EXTERNAL_USER_INFO), tablets=4/4, tabletList=21528,21530,21532 ... - cardinality=8342381, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 1.794K (1794), avg 448, max 485, min 397 - CloseTime: avg 43.353us, max 51.565us, min 39.884us - ExecTime: avg 465.41ms, max 594.150ms, min 330.225ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 173.587us, max 194.674us, min 152.341us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.612549M (5612549), avg 1.403137M (1403137), max 1.576607M (1576607), min 1.152608M (1152608) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 459.188ms, max 578.435ms, min 327.804ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.47 MB, avg 10.12 MB, max 10.12 MB, min 10.12 MB Fragment 31: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - BlocksProduced: sum 1.226K (1226), avg 102, max 168, min 24 - CloseTime: avg 14.154us, max 17.969us, min 9.892us - ExecTime: avg 180.890ms, max 345.128ms, min 15.601ms - InputRows: sum 4.858108M (4858108), avg 404.842K (404842), max 674.788K (674788), min 95.75K (95750) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 299.89 MB, avg 24.99 MB, max 42.70 MB, min 5.06 MB - OpenTime: avg 66.866us, max 83.289us, min 56.60us - RowsProduced: sum 4.858108M (4858108), avg 404.842K (404842), max 674.788K (674788), min 95.75K (95750) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (EXTERNAL_USER_DELETE_FLAG = 0) AND (USER_DELETE_FLAG = 0) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID - project output tuple id: 308 - BlocksProduced: sum 1.602K (1602), avg 133, max 285, min 28 - CloseTime: avg 43.307us, max 56.29us, min 29.846us - ExecTime: avg 327.65ms, max 516.520ms, min 169.42ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.725ms, max 36.966ms, min 164.302us - ProjectionTime: avg 14.921ms, max 51.811ms, min 584.533us - RowsProduced: sum 4.858108M (4858108), avg 404.842K (404842), max 674.788K (674788), min 95.75K (95750) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 300.628ms, max 492.542ms, min 116.604ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 88.05 MB, avg 7.34 MB, max 10.13 MB, min 3.92 MB Fragment 32: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.122us, max 17.614us, min 9.79us - ExecTime: avg 385.856us, max 480.201us, min 306.835us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 912.13 KB, avg 76.01 KB, max 81.34 KB, min 73.34 KB - OpenTime: avg 71.740us, max 82.768us, min 61.207us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=309): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(STATIS_DATE as DOUBLE) = expr_cast(DATEKEY as DOUBLE)) - runtime filters: RF092[min_max] <- USER_ID(21/32/2048), RF093[bloom] <- USER_ID(21/32/2048) - cardinality=2,026,135 - vec output tuple id: 306 - output tuple id: 306 - vIntermediate tuple ids: 305 - hash output slot ids: 3366 3367 3368 3401 3369 3371 - projections: QW_NUM_QXGZ, QW_NEW, CAST(DATEKEY AS DOUBLE), DATEKEY, USER_ID, USER_NAME, AVG_REPLY_TIME - project output tuple id: 306 - BlocksProduced: sum 108, avg 9, max 9, min 9 - CloseTime: avg 13.21us, max 41.526us, min 7.131us - ExecTime: avg 923.34us, max 1.209ms, min 757.536us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 536.00 KB, avg 44.67 KB, max 96.00 KB, min 40.00 KB - ProbeKeyArena: sum 536.00 KB, avg 44.67 KB, max 96.00 KB, min 40.00 KB - OpenTime: avg 18.505us, max 26.818us, min 13.896us - ProbeRows: sum 135.118K (135118), avg 11.259K (11259), max 11.356K (11356), min 11.176K (11176) - ProjectionTime: avg 118.28us, max 154.118us, min 79.279us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 238.688ms, max 530.751ms, min 0ns EXCHANGE_OPERATOR (id=308): - PlanInfo - offset: 0 - BlocksProduced: sum 96, avg 8, max 8, min 8 - CloseTime: avg 10.151us, max 17.463us, min 5.635us - ExecTime: avg 111.449us, max 141.95us, min 76.849us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.44 MB, avg 464.00 KB, max 464.00 KB, min 464.00 KB - OpenTime: avg 14.701us, max 18.778us, min 10.694us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 135.118K (135118), avg 11.259K (11259), max 11.356K (11356), min 11.176K (11176) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s433ms, max 2s436ms, min 2s424ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=309): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 201.724us, max 352.939us, min 109.669us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 555.68 KB, avg 46.31 KB, max 47.54 KB, min 44.39 KB - BuildKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - HashTable: sum 93.03 KB, avg 7.75 KB, max 7.84 KB, min 7.61 KB - PeakMemoryUsage: sum 888.62 KB, avg 74.05 KB, max 75.38 KB, min 72.00 KB - OpenTime: avg 19.428us, max 41.464us, min 13.373us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=303): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 8.605us, max 13.982us, min 2.563us - ExecTime: avg 39.471us, max 53.705us, min 22.554us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 848.73 KB, avg 70.73 KB, max 76.06 KB, min 68.06 KB - OpenTime: avg 14.538us, max 20.845us, min 8.178us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s710ms, max 2s717ms, min 2s705ms Fragment 33: Pipeline : 0(instance_num=8): DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - BlocksProduced: sum 96, avg 12, max 12, min 12 - CloseTime: avg 19.347us, max 27.686us, min 15.235us - ExecTime: avg 1.760ms, max 1.978ms, min 1.493ms - InputRows: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.44 MB, avg 696.00 KB, max 696.00 KB, min 696.00 KB - OpenTime: avg 74.934us, max 89.786us, min 62.814us - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=307): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#3399] - group by: STATIS_DATE, USER_ID - cardinality=2,026,135 - projections: USER_ID, QW_NEW, CAST(STATIS_DATE AS DOUBLE) - project output tuple id: 304 - BlocksProduced: sum 40, avg 5, max 5, min 5 - CloseTime: avg 822ns, max 1.120us, min 731ns - ExecTime: avg 1.761ms, max 2.113ms, min 1.538ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.808us, max 10.327us, min 5.327us - ProjectionTime: avg 696.19us, max 849.174us, min 641.63us - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s454ms, max 2s512ms, min 2s408ms Pipeline : 1(instance_num=8): AGGREGATION_SINK_OPERATOR (id=307): - CloseTime: avg 9.610us, max 16.535us, min 3.519us - ExecTime: avg 19.126ms, max 36.886ms, min 10.862ms - InputRows: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - MemoryUsage: sum , avg , max , min - HashTable: sum 6.00 MB, avg 767.98 KB, max 767.98 KB, min 767.98 KB - PeakMemoryUsage: sum 32.25 MB, avg 4.03 MB, max 4.03 MB, min 4.03 MB - SerializeKeyArena: sum 26.25 MB, avg 3.28 MB, max 3.28 MB, min 3.28 MB - OpenTime: avg 22.932us, max 41.850us, min 16.274us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=306): - PlanInfo - offset: 0 - BlocksProduced: sum 37, avg 4, max 6, min 4 - CloseTime: avg 15.64us, max 24.164us, min 11.67us - ExecTime: avg 120.625us, max 144.535us, min 101.289us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 8.54 MB, avg 1.07 MB, max 1.47 MB, min 967.79 KB - OpenTime: avg 17.579us, max 21.580us, min 12.756us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s356ms, max 2s379ms, min 2s312ms Fragment 34: Pipeline : 0(instance_num=8): DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - BlocksProduced: sum 89, avg 11, max 21, min 8 - CloseTime: avg 18.346us, max 27.376us, min 13.370us - ExecTime: avg 2.636ms, max 11.237ms, min 118.918us - InputRows: sum 135.118K (135118), avg 16.889K (16889), max 68.425K (68425), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 16.64 MB, avg 2.08 MB, max 8.62 MB, min 0.00 - OpenTime: avg 63.725us, max 77.704us, min 54.766us - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 68.425K (68425), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#3396] - group by: STATIS_DATE, USER_ID - cardinality=2,026,135 - BlocksProduced: sum 34, avg 4, max 17, min 0 - CloseTime: avg 3.925ms, max 15.706ms, min 1.90us - ExecTime: avg 78.607ms, max 342.844ms, min 38.544us - MemoryUsage: sum , avg , max , min - HashTable: sum 6.00 MB, avg 767.99 KB, max 3.00 MB, min 0.00 - PeakMemoryUsage: sum 21.62 MB, avg 2.70 MB, max 10.81 MB, min 0.00 - SerializeKeyArena: sum 15.63 MB, avg 1.95 MB, max 7.81 MB, min 0.00 - OpenTime: avg 24.926us, max 32.415us, min 20.944us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 68.425K (68425), min 0 OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (ADD_TIME >= '2021-01-01 00:00:00') AND (date_format(ADD_TIME, '%Y%m') >= '202401') - runtime filters: RF092[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF093[bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=4/6 (p2021,p2022,p2023,p2024), tablets=8/8, tabletList=21169,21171,21181 ... - cardinality=8765434, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: date_format(ADD_TIME, '%Y%m%d'), USER_ID, EXTERNAL_USER_ID - project output tuple id: 301 - BlocksProduced: sum 116, avg 14, max 60, min 0 - CloseTime: avg 53.332us, max 79.347us, min 33.830us - ExecTime: avg 264.593ms, max 472.116ms, min 160.914ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 300.914us, max 486.976us, min 187.712us - ProjectionTime: avg 24.627ms, max 143.814ms, min 1.423us - RowsProduced: sum 469.961K (469961), avg 58.745K (58745), max 242.95K (242950), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 239.418ms, max 471.727ms, min 157.573ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 20.86 MB, avg 2.61 MB, max 10.24 MB, min 64.00 KB Fragment 35: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.650us, max 20.922us, min 8.806us - ExecTime: avg 1.138ms, max 9.36ms, min 361.436us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 804.13 KB, avg 67.01 KB, max 72.34 KB, min 64.34 KB - OpenTime: avg 72.60us, max 82.206us, min 60.34us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=302): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(STATIS_DATE as DOUBLE) = expr_cast(DATEKEY as DOUBLE)) - runtime filters: RF090[min_max] <- USER_ID(21/32/2048), RF091[bloom] <- USER_ID(21/32/2048) - cardinality=38,253 - vec output tuple id: 299 - output tuple id: 299 - vIntermediate tuple ids: 298 - hash output slot ids: 3322 3355 3323 3325 3326 - projections: QW_NUM_QXGZ, DATEKEY, USER_ID, USER_NAME, CAST(DATEKEY AS DOUBLE), AVG_REPLY_TIME - project output tuple id: 299 - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 15.521us, max 34.917us, min 6.475us - ExecTime: avg 1.268ms, max 1.641ms, min 1.101ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 536.00 KB, avg 44.67 KB, max 60.00 KB, min 28.00 KB - ProbeKeyArena: sum 536.00 KB, avg 44.67 KB, max 60.00 KB, min 28.00 KB - OpenTime: avg 16.599us, max 23.133us, min 9.319us - ProbeRows: sum 94.556K (94556), avg 7.879K (7879), max 8.003K (8003), min 7.714K (7714) - ProjectionTime: avg 172.286us, max 269.894us, min 120.530us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=301): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 7.671us, max 14.897us, min 3.623us - ExecTime: avg 128.604us, max 166.213us, min 105.24us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.26 MB, avg 107.54 KB, max 116.00 KB, min 87.00 KB - OpenTime: avg 18.887us, max 29.354us, min 11.431us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 94.556K (94556), avg 7.879K (7879), max 8.003K (8003), min 7.714K (7714) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s242ms, max 2s252ms, min 2s222ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=302): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 204.277us, max 342.376us, min 132.340us - InputRows: sum 9.2K (9200), avg 766, max 785, min 738 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 474.82 KB, avg 39.57 KB, max 40.64 KB, min 37.91 KB - BuildKeyArena: sum 288.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - HashTable: sum 93.03 KB, avg 7.75 KB, max 7.84 KB, min 7.61 KB - PeakMemoryUsage: sum 807.76 KB, avg 67.31 KB, max 68.48 KB, min 65.51 KB - OpenTime: avg 19.116us, max 31.594us, min 10.888us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=296): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 9.627us, max 15.74us, min 3.980us - ExecTime: avg 36.230us, max 48.619us, min 23.349us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 694.77 KB, avg 57.90 KB, max 63.31 KB, min 55.00 KB - OpenTime: avg 14.607us, max 18.308us, min 9.307us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 866.611ms, max 897.637ms, min 775.72ms Fragment 36: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 17.579us, max 22.443us, min 13.984us - ExecTime: avg 2.513ms, max 19.932ms, min 763.56us - InputRows: sum 94.556K (94556), avg 7.879K (7879), max 8.009K (8009), min 7.745K (7745) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.84 MB, avg 327.42 KB, max 348.00 KB, min 304.50 KB - OpenTime: avg 68.53us, max 89.604us, min 58.22us - RowsProduced: sum 94.556K (94556), avg 7.879K (7879), max 8.009K (8009), min 7.745K (7745) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=300): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#3354] - group by: USER_ID, STATIS_DATE - cardinality=40,133 - projections: QW_NUM_QXGZ, CAST(STATIS_DATE AS DOUBLE), USER_ID - project output tuple id: 297 - BlocksProduced: sum 24, avg 2, max 2, min 2 - CloseTime: avg 837ns, max 1.822us, min 383ns - ExecTime: avg 2.7ms, max 14.30ms, min 787.476us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.968us, max 10.940us, min 5.586us - ProjectionTime: avg 1.442ms, max 13.421ms, min 282.878us - RowsProduced: sum 94.556K (94556), avg 7.879K (7879), max 8.009K (8009), min 7.745K (7745) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s102ms, max 2s241ms, min 1s978ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=300): - CloseTime: avg 5.867us, max 13.701us, min 2.302us - ExecTime: avg 12.5ms, max 26.464ms, min 6.914ms - InputRows: sum 137.254K (137254), avg 11.437K (11437), max 11.704K (11704), min 11.174K (11174) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 383.98 KB, max 383.98 KB, min 383.98 KB - PeakMemoryUsage: sum 13.59 MB, avg 1.13 MB, max 1.13 MB, min 1.13 MB - SerializeKeyArena: sum 9.09 MB, avg 776.00 KB, max 776.00 KB, min 776.00 KB - OpenTime: avg 21.737us, max 38.362us, min 13.837us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=299): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 10.969us, max 16.399us, min 2.482us - ExecTime: avg 186.92us, max 245.6us, min 151.97us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.66 MB, avg 568.50 KB, max 802.50 KB, min 305.00 KB - OpenTime: avg 18.161us, max 27.383us, min 14.128us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 137.254K (137254), avg 11.437K (11437), max 11.704K (11704), min 11.174K (11174) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s320ms, max 1s533ms, min 1s170ms Fragment 37: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.271us, max 17.956us, min 10.840us - ExecTime: avg 12.396ms, max 123.72ms, min 435.191us - InputRows: sum 137.254K (137254), avg 11.437K (11437), max 28.432K (28432), min 2.0K (2000) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.73 MB, avg 1000.75 KB, max 2.86 MB, min 135.00 KB - OpenTime: avg 79.355us, max 109.705us, min 67.983us - RowsProduced: sum 137.254K (137254), avg 11.437K (11437), max 28.432K (28432), min 2.0K (2000) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#3351] - group by: USER_ID, STATIS_DATE - cardinality=40,133 - BlocksProduced: sum 38, avg 3, max 7, min 1 - CloseTime: avg 1.552ms, max 4.693ms, min 83.857us - ExecTime: avg 44.171ms, max 180.815ms, min 1.503ms - MemoryUsage: sum , avg , max , min - HashTable: sum 5.16 MB, avg 439.98 KB, max 767.98 KB, min 95.98 KB - PeakMemoryUsage: sum 24.34 MB, avg 2.03 MB, max 4.53 MB, min 679.98 KB - SerializeKeyArena: sum 19.18 MB, avg 1.60 MB, max 3.78 MB, min 584.00 KB - OpenTime: avg 28.608us, max 41.91us, min 23.188us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 137.254K (137254), avg 11.437K (11437), max 28.432K (28432), min 2.0K (2000) OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (date_format(EXTERNAL_BLOCKING_TIME, '%Y%m') >= '202401') AND (EXTERNAL_BLOCKING_TIME >= '2021-01-01 00:00:00') - runtime filters: RF090[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF091[bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID, CASE WHEN USER_BLOCKING_TIME IS NULL THEN date_format(EXTERNAL_BLOCKING_TIME, '%Y%m%d') WHEN USER_BLOCKING_TIME IS NOT NULL AND (USER_BLOCKING_TIME < EXTERNAL_BLOCKING_TIME) THEN date_format(USER_BLOCKING_TIME, '%Y%m%d') ELSE date_format(EXTERNAL_BLOCKING_TIME, '%Y%m%d') END, EXTERNAL_USER_ID - project output tuple id: 294 - BlocksProduced: sum 86, avg 7, max 19, min 1 - CloseTime: avg 76.335us, max 101.247us, min 47.630us - ExecTime: avg 332.594ms, max 607.464ms, min 92.278ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 294.279us, max 452.952us, min 210.298us - ProjectionTime: avg 23.34ms, max 66.797ms, min 3.171ms - RowsProduced: sum 247.396K (247396), avg 20.616K (20616), max 58.482K (58482), min 2.162K (2162) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 308.982ms, max 589.56ms, min 85.865ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 13.22 MB, avg 1.10 MB, max 2.43 MB, min 308.00 KB Fragment 38: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=296,dst_id=296): - BlocksProduced: sum 24, avg 12, max 12, min 12 - CloseTime: avg 16.654us, max 18.466us, min 14.843us - ExecTime: avg 5.242ms, max 9.822ms, min 663.109us - InputRows: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 692.38 KB, avg 346.19 KB, max 346.19 KB, min 346.19 KB - OpenTime: avg 63.735us, max 71.374us, min 56.97us - RowsProduced: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=295): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (expr_cast(STATIS_DATE as DOUBLE) = expr_cast(DATEKEY as DOUBLE)) - runtime filters: RF088[min_max] <- USER_ID(21/32/2048), RF089[bloom] <- USER_ID(21/32/2048) - cardinality=22,668 - vec output tuple id: 292 - output tuple id: 292 - vIntermediate tuple ids: 291 - hash output slot ids: 3281 3313 3282 3283 - projections: DATEKEY, USER_ID, CAST(DATEKEY AS DOUBLE), USER_NAME, AVG_REPLY_TIME - project output tuple id: 292 - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 12.526us, max 14.814us, min 10.239us - ExecTime: avg 1.80ms, max 1.297ms, min 863.970us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 196.00 KB, avg 98.00 KB, max 100.00 KB, min 96.00 KB - ProbeKeyArena: sum 196.00 KB, avg 98.00 KB, max 100.00 KB, min 96.00 KB - OpenTime: avg 93.975us, max 170.550us, min 17.400us - ProbeRows: sum 8.22K (8220), avg 4.11K (4110), max 4.123K (4123), min 4.097K (4097) - ProjectionTime: avg 164.884us, max 222.591us, min 107.178us - RowsProduced: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=294): - PlanInfo - offset: 0 - BlocksProduced: sum 4, avg 2, max 2, min 2 - CloseTime: avg 11.332us, max 13.288us, min 9.376us - ExecTime: avg 51.393us, max 52.331us, min 50.456us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 291.50 KB, avg 145.75 KB, max 145.75 KB, min 145.75 KB - OpenTime: avg 18.360us, max 20.408us, min 16.312us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.22K (8220), avg 4.11K (4110), max 4.123K (4123), min 4.097K (4097) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 523.897ms, max 529.964ms, min 517.829ms Pipeline : 1(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=295): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.462ms, max 1.949ms, min 974.501us - InputRows: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 429.90 KB, avg 214.95 KB, max 215.10 KB, min 214.80 KB - BuildKeyArena: sum 224.00 KB, avg 112.00 KB, max 112.00 KB, min 112.00 KB - HashTable: sum 108.94 KB, avg 54.47 KB, max 54.48 KB, min 54.46 KB - PeakMemoryUsage: sum 754.83 KB, avg 377.41 KB, max 377.58 KB, min 377.25 KB - OpenTime: avg 24.784us, max 27.447us, min 22.121us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=286): - PlanInfo - offset: 0 - BlocksProduced: sum 4, avg 2, max 2, min 2 - CloseTime: avg 8.878us, max 10.122us, min 7.634us - ExecTime: avg 51.691us, max 56.674us, min 46.709us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 672.00 KB, avg 336.00 KB, max 336.00 KB, min 336.00 KB - OpenTime: avg 19.82us, max 24.153us, min 14.11us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 73.810ms, max 74.41ms, min 73.579ms Fragment 39: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - BlocksProduced: sum 4, avg 2, max 2, min 2 - CloseTime: avg 11.291us, max 12.308us, min 10.275us - ExecTime: avg 474.98us, max 833.954us, min 114.242us - InputRows: sum 8.22K (8220), avg 4.11K (4110), max 7.87K (7870), min 350 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 291.50 KB, avg 145.75 KB, max 280.00 KB, min 11.50 KB - OpenTime: avg 36.720us, max 37.673us, min 35.768us - RowsProduced: sum 8.22K (8220), avg 4.11K (4110), max 7.87K (7870), min 350 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=293): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - cardinality=22,668 - vec output tuple id: 290 - output tuple id: 290 - vIntermediate tuple ids: 289 - hash output slot ids: 3301 3307 3294 - projections: USER_ID, AVG_REPLY_TIME, CAST(date_format(STAT_DATE, '%Y%m%d') AS DOUBLE) - project output tuple id: 290 - BlocksProduced: sum 4, avg 2, max 3, min 1 - CloseTime: avg 9.792us, max 11.547us, min 8.38us - ExecTime: avg 1.101ms, max 2.13ms, min 189.39us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 68.00 KB, avg 34.00 KB, max 64.00 KB, min 4.00 KB - ProbeKeyArena: sum 68.00 KB, avg 34.00 KB, max 64.00 KB, min 4.00 KB - OpenTime: avg 18.705us, max 18.740us, min 18.670us - ProbeRows: sum 8.22K (8220), avg 4.11K (4110), max 7.87K (7870), min 350 - ProjectionTime: avg 671.829us, max 1.248ms, min 94.734us - RowsProduced: sum 8.22K (8220), avg 4.11K (4110), max 7.87K (7870), min 350 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 71.966ms, max 77.649ms, min 66.282ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 4, avg 2, max 3, min 1 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 21.899us, max 28.724us, min 15.75us - GetBlockFailedTime: sum 4, avg 2, max 2, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 464.00 KB, avg 232.00 KB, max 360.00 KB, min 104.00 KB - OpenTime: avg 993ns, max 1.401us, min 585ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.22K (8220), avg 4.11K (4110), max 7.87K (7870), min 350 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 434.815ms, max 443.256ms, min 426.374ms Pipeline : 1(instance_num=2): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 38.223us, max 52.832us, min 23.614us - InputRows: sum 8.22K (8220), avg 4.11K (4110), max 4.404K (4404), min 3.816K (3816) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.870us, max 2.290us, min 1.451us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=292. table name = QYWX_USER_BEHAVIOR_DATA): - PlanInfo - TABLE: ods_demo.QYWX_USER_BEHAVIOR_DATA(QYWX_USER_BEHAVIOR_DATA), PREAGGREGATION: ON - PREDICATES: AVG_REPLY_TIME IS NOT NULL AND (STAT_DATE >= '2021-01-01 00:00:00') AND (date_format(STAT_DATE, '%Y%m') >= '202401') - runtime filters: RF088[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF089[bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=1/1 (QYWX_USER_BEHAVIOR_DATA), tablets=2/2, tabletList=21089,21091 - cardinality=9813610, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 4, avg 2, max 3, min 1 - CloseTime: avg 135.541us, max 139.915us, min 131.168us - ExecTime: avg 295.732ms, max 315.708ms, min 275.755ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 452.27us, max 558.758us, min 345.296us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.22K (8220), avg 4.11K (4110), max 4.404K (4404), min 3.816K (3816) - RuntimeFilterInfo: sum , avg , max , min - filter id = 89 filtered: sum 4.301667M (4301667), avg 2.150833M (2150833), max 2.382783M (2382783), min 1.918884M (1918884) - filter id = 89 input: sum 4.384161M (4384161), avg 2.19208M (2192080), max 2.428939M (2428939), min 1.955222M (1955222) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 295.48ms, max 315.154ms, min 274.942ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 720.00 KB, avg 360.00 KB, max 480.00 KB, min 240.00 KB Pipeline : 2(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=293): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 51.441us, max 73.130us, min 29.753us - InputRows: sum 80, avg 40, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 620.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 2.00 KB, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 420.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 1.01 KB, max 2.02 KB, min 0.00 - OpenTime: avg 11.533us, max 11.745us, min 11.322us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 223.599ms, max 447.198ms, min 0ns EXCHANGE_OPERATOR (id=291): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 7.436us, max 10.237us, min 4.636us - ExecTime: avg 28.677us, max 36.398us, min 20.957us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.63 KB, avg 832.00 B, max 1.63 KB, min 0.00 - OpenTime: avg 17.112us, max 18.776us, min 15.448us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 40, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 220.380ms, max 440.760ms, min 0ns Fragment 40: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=291,dst_id=291): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.795us, max 11.795us, min 11.795us - ExecTime: avg 64.404us, max 64.404us, min 64.404us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 40.66us, max 40.66us, min 40.66us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=290): - PlanInfo - group by: USER_ID - cardinality=109 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 194ns, max 194ns, min 194ns - ExecTime: avg 63.971us, max 63.971us, min 63.971us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 26.453us, max 26.453us, min 26.453us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 EXCHANGE_OPERATOR (id=289): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 6.386us, max 6.386us, min 6.386us - ExecTime: avg 28.978us, max 28.978us, min 28.978us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.63 KB, avg 1.63 KB, max 1.63 KB, min 1.63 KB - OpenTime: avg 13.813us, max 13.813us, min 13.813us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 412.357ms, max 412.357ms, min 412.357ms Fragment 41: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=289,dst_id=289): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 8.896us, max 8.896us, min 8.896us - ExecTime: avg 36.695us, max 36.695us, min 36.695us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.86us, max 20.86us, min 20.86us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=288): - PlanInfo - STREAMING - group by: USER_ID - cardinality=109 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 167ns, max 167ns, min 167ns - ExecTime: avg 61.258us, max 61.258us, min 61.258us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.583us, max 31.583us, min 31.583us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 OLAP_SCAN_OPERATOR (id=287. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - runtime filters: RF088[min_max] -> USER_ID, RF089[bloom] -> USER_ID - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 18.445us, max 18.445us, min 18.445us - ExecTime: avg 229.893ms, max 229.893ms, min 229.893ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 336.252us, max 336.252us, min 336.252us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - filter id = 89 filtered: sum 29, avg 29, max 29, min 29 - filter id = 89 input: sum 109, avg 109, max 109, min 109 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 229.514ms, max 229.514ms, min 229.514ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 42: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=286,dst_id=286): - BlocksProduced: sum 4, avg 4, max 4, min 4 - CloseTime: avg 13.764us, max 13.764us, min 13.764us - ExecTime: avg 1.450ms, max 1.450ms, min 1.450ms - InputRows: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 714.00 KB, avg 714.00 KB, max 714.00 KB, min 714.00 KB - OpenTime: avg 34.926us, max 34.926us, min 34.926us - RowsProduced: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns CROSS_JOIN_OPERATOR (id=285): - PlanInfo - join op: RIGHT OUTER JOIN() - is output left side only: false - cardinality=264 - vIntermediate tuple ids: 283 - projections: DATEKEY, USER_ID, USER_NAME, CAST(DATEKEY AS DOUBLE) - project output tuple id: 284 - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 2.420us, max 2.420us, min 2.420us - ExecTime: avg 1.927ms, max 1.927ms, min 1.927ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.530us, max 4.530us, min 4.530us - ProbeRows: sum 80, avg 80, max 80, min 80 - ProjectionTime: avg 474.340us, max 474.340us, min 474.340us - RowsProduced: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - WaitForDependency[CROSS_JOIN_OPERATOR_DEPENDENCY]Time: avg 50.298ms, max 50.298ms, min 50.298ms EXCHANGE_OPERATOR (id=284): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.897us, max 11.897us, min 11.897us - ExecTime: avg 44.153us, max 44.153us, min 44.153us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.25 KB, avg 4.25 KB, max 4.25 KB, min 4.25 KB - OpenTime: avg 22.959us, max 22.959us, min 22.959us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 13.55ms, max 13.55ms, min 13.55ms Pipeline : 1(instance_num=1): CROSS_JOIN_SINK_OPERATOR (id=285): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 6.893us, max 6.893us, min 6.893us - InputRows: sum 115, avg 115, max 115, min 115 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 225ns, max 225ns, min 225ns - WaitForDependency[CROSS_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=279): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 8.71us, max 8.71us, min 8.71us - ExecTime: avg 25.518us, max 25.518us, min 25.518us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 32.00 KB, avg 32.00 KB, max 32.00 KB, min 32.00 KB - OpenTime: avg 13.771us, max 13.771us, min 13.771us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 115, avg 115, max 115, min 115 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 69.495ms, max 69.495ms, min 69.495ms Fragment 43: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=284,dst_id=284): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 18.178us, max 18.178us, min 18.178us - ExecTime: avg 64.582us, max 64.582us, min 64.582us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 22.972us, max 22.972us, min 22.972us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=283): - PlanInfo - output: max(partial_max(if((cast(DATA_TYPE as DOUBLE) = 1.0), cast(USER_NAME as TEXT), NULL)))[#3274], max(partial_max(if((cast(DATA_TYPE as DOUBLE) = 2.0), cast(USER_NAME as TEXT), NULL)))[#3275] - group by: USER_ID - cardinality=21 - projections: USER_ID, if(max(CASE WHEN (cast(DATA_TYPE as DOUBLE) = cast(1 as DOUBLE)) THEN cast(USER_NAME as TEXT) ELSE NULL END) IS NOT NULL, max(CASE WHEN (cast(DATA_TYPE as DOUBLE) = cast(1 as DOUBLE)) THEN cast(USER_NAME as TEXT) ELSE NULL END), max(CASE WHEN (cast(DATA_TYPE as DOUBLE) = cast(2 as DOUBLE)) THEN cast(USER_NAME as TEXT) ELSE NULL END)) - project output tuple id: 282 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 1.60us, max 1.60us, min 1.60us - ExecTime: avg 136.823us, max 136.823us, min 136.823us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 23.961us, max 23.961us, min 23.961us - ProjectionTime: avg 39.428us, max 39.428us, min 39.428us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 12.823ms, max 12.823ms, min 12.823ms Pipeline : 1(instance_num=1): AGGREGATION_SINK_OPERATOR (id=283): - CloseTime: avg 1.602us, max 1.602us, min 1.602us - ExecTime: avg 160.192us, max 160.192us, min 160.192us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - HashTable: sum 16.28 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 1.28 MB, avg 1.28 MB, max 1.28 MB, min 1.28 MB - SerializeKeyArena: sum 1.27 MB, avg 1.27 MB, max 1.27 MB, min 1.27 MB - OpenTime: avg 35.470us, max 35.470us, min 35.470us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=282): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 10.189us, max 10.189us, min 10.189us - ExecTime: avg 43.287us, max 43.287us, min 43.287us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.75 KB, avg 11.75 KB, max 11.75 KB, min 11.75 KB - OpenTime: avg 18.355us, max 18.355us, min 18.355us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.600ms, max 1.600ms, min 1.600ms Fragment 44: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=282,dst_id=282): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 18.481us, max 18.481us, min 18.481us - ExecTime: avg 74.221us, max 74.221us, min 74.221us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 34.591us, max 34.591us, min 34.591us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=281): - PlanInfo - STREAMING - output: partial_max(if((CAST(DATA_TYPE AS DOUBLE) = 1), CAST(USER_NAME AS TEXT), NULL))[#3271], partial_max(if((CAST(DATA_TYPE AS DOUBLE) = 2), CAST(USER_NAME AS TEXT), NULL))[#3272] - group by: USER_ID - cardinality=21 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.226us, max 13.226us, min 13.226us - ExecTime: avg 397.654us, max 397.654us, min 397.654us - MemoryUsage: sum , avg , max , min - HashTable: sum 16.28 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 1.28 MB, avg 1.28 MB, max 1.28 MB, min 1.28 MB - SerializeKeyArena: sum 1.27 MB, avg 1.27 MB, max 1.27 MB, min 1.27 MB - OpenTime: avg 55.480us, max 55.480us, min 55.480us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 OLAP_SCAN_OPERATOR (id=280. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID, USER_NAME, DATA_TYPE - project output tuple id: 279 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 73.948us, max 73.948us, min 73.948us - ExecTime: avg 1.369ms, max 1.369ms, min 1.369ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 362.243us, max 362.243us, min 362.243us - ProjectionTime: avg 9.344us, max 9.344us, min 9.344us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 866.561us, max 866.561us, min 866.561us VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 144.00 KB, avg 144.00 KB, max 144.00 KB, min 144.00 KB Fragment 45: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=279,dst_id=279): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.140us, max 14.140us, min 14.140us - ExecTime: avg 50.172us, max 50.172us, min 50.172us - InputRows: sum 115, avg 115, max 115, min 115 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 24.151us, max 24.151us, min 24.151us - RowsProduced: sum 115, avg 115, max 115, min 115 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=278. table name = DIMDATE): - PlanInfo - TABLE: ods_demo.DIMDATE(DIMDATE), PREAGGREGATION: ON - PREDICATES: (DATEKEY < 20240425) AND (DATEKEY >= 20240101) - partitions=1/1 (DIMDATE), tablets=1/1, tabletList=18262 - cardinality=13149, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 142.925us, max 142.925us, min 142.925us - ExecTime: avg 68.831ms, max 68.831ms, min 68.831ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.970ms, max 10.970ms, min 10.970ms - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 115, avg 115, max 115, min 115 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 57.673ms, max 57.673ms, min 57.673ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 64.00 KB, avg 64.00 KB, max 64.00 KB, min 64.00 KB Fragment 46: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 13.867us, max 26.948us, min 7.435us - ExecTime: avg 54.718us, max 71.857us, min 34.87us - InputRows: sum 43, avg 3, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 26.775us, max 39.796us, min 20.111us - RowsProduced: sum 43, avg 3, max 6, min 1 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=276): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CUS_ID))[#3238] - group by: STATIS_DATE, STAFF_ID - cardinality=3,920 - projections: CAST(STATIS_DATE AS DOUBLE), STAFF_ID, VIPCUS_NEW - project output tuple id: 276 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 754ns, max 1.418us, min 264ns - ExecTime: avg 68.985us, max 91.783us, min 43.122us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.991us, max 47.484us, min 5.5us - ProjectionTime: avg 29.549us, max 49.875us, min 17.170us - RowsProduced: sum 43, avg 3, max 6, min 1 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 645.107ms, max 724.640ms, min 541.220ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=276): - CloseTime: avg 979ns, max 1.591us, min 373ns - ExecTime: avg 71.701us, max 101.607us, min 44.410us - InputRows: sum 47, avg 3, max 8, min 1 - MemoryUsage: sum , avg , max , min - HashTable: sum 1.36 KB, avg 116.00 B, max 168.00 B, min 24.00 B - PeakMemoryUsage: sum 6.19 MB, avg 528.11 KB, max 528.16 KB, min 528.02 KB - SerializeKeyArena: sum 6.19 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 21.601us, max 43.981us, min 12.243us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=275): - PlanInfo - offset: 0 - BlocksProduced: sum 33, avg 2, max 5, min 1 - CloseTime: avg 11.827us, max 22.797us, min 2.42us - ExecTime: avg 51.957us, max 78.532us, min 34.701us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 37.04 KB, avg 3.09 KB, max 3.84 KB, min 2.45 KB - OpenTime: avg 20.929us, max 42.246us, min 13.914us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 47, avg 3, max 8, min 1 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 501.176ms, max 534.515ms, min 472.604ms Fragment 47: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.891us, max 27.132us, min 7.463us - ExecTime: avg 214.207us, max 310.825us, min 140.215us - InputRows: sum 47, avg 3, max 12, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 15.19 KB, avg 1.27 KB, max 4.13 KB, min 0.00 - OpenTime: avg 78.556us, max 95.154us, min 59.850us - RowsProduced: sum 47, avg 3, max 12, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT CUS_ID)[#3235] - group by: STATIS_DATE, STAFF_ID - cardinality=3,920 - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 1.797us, max 3.897us, min 333ns - ExecTime: avg 69.743us, max 146.480us, min 27.247us - MemoryUsage: sum , avg , max , min - HashTable: sum 1.76 KB, avg 150.00 B, max 360.00 B, min 0.00 - PeakMemoryUsage: sum 2.58 MB, avg 220.15 KB, max 528.35 KB, min 0.00 - SerializeKeyArena: sum 2.58 MB, avg 220.00 KB, max 528.00 KB, min 0.00 - OpenTime: avg 32.650us, max 68.332us, min 22.187us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 47, avg 3, max 12, min 0 HASH_JOIN_OPERATOR (id=273): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (expr_cast(PRODUCT_ID as DOUBLE) = expr_cast(PRODUCT_ID as DOUBLE)) - cardinality=7,841 - vec output tuple id: 273 - output tuple id: 273 - vIntermediate tuple ids: 272 - hash output slot ids: 3221 3223 3224 - projections: date_format(SUBMIT_DATE, '%Y%m%d'), STAFF_ID, CUS_ID - project output tuple id: 273 - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 7.404us, max 21.201us, min 1.749us - ExecTime: avg 74.743us, max 140.722us, min 21.686us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 16.632us, max 22.101us, min 13.781us - ProbeRows: sum 49, avg 4, max 12, min 0 - ProjectionTime: avg 20.584us, max 47.36us, min 2.738us - RowsProduced: sum 49, avg 4, max 12, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 10.934us, max 53.741us, min 1.394us - GetBlockFailedTime: sum 17, avg 1, max 2, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.88 KB, avg 587.00 B, max 3.04 KB, min 0.00 - OpenTime: avg 1.942us, max 11.804us, min 766ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 49, avg 4, max 12, min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 448.604ms, max 472.349ms, min 406.200ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 16.247us, max 67.919us, min 5.58us - InputRows: sum 49, avg 4, max 49, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.615us, max 4.0us, min 1.72us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=272): - PlanInfo - join op: LEFT SEMI JOIN(BROADCAST)[] - equal join conjunct: (STAFF_ID = USER_ID) - runtime filters: RF084[min_max] <- USER_ID(21/32/2048), RF085[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=7,841 - vec output tuple id: 271 - output tuple id: 271 - vIntermediate tuple ids: 270 - hash output slot ids: 3216 3213 3214 3215 - projections: STAFF_ID, CAST(PRODUCT_ID AS DOUBLE), CUS_ID, SUBMIT_DATE - project output tuple id: 271 - BlocksProduced: sum 5, avg 0, max 5, min 0 - CloseTime: avg 5.136us, max 27.84us, min 1.601us - ExecTime: avg 56.108us, max 260.336us, min 22.260us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - ProbeKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - OpenTime: avg 15.537us, max 28.955us, min 10.131us - ProbeRows: sum 49, avg 4, max 49, min 0 - ProjectionTime: avg 19.238us, max 84.644us, min 6.13us - RowsProduced: sum 49, avg 4, max 49, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 5, avg 0, max 5, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 6.954us, max 36.797us, min 819ns - GetBlockFailedTime: sum 17, avg 1, max 4, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 960.00 KB, avg 80.00 KB, max 720.00 KB, min 0.00 - OpenTime: avg 746ns, max 3.44us, min 453ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 49, avg 4, max 49, min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 397.128ms, max 406.29ms, min 356.647ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 16.25us, max 33.143us, min 3.430us - InputRows: sum 49, avg 4, max 12, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.724us, max 3.587us, min 883ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(ORDER_STATUS_ID AS DOUBLE) != 7) AND (PAY_STATUS = '1') AND (TOTAL_FEE > 0) AND (ORDER_TYPE = 14) OR CAST(PRODUCT_TEMPLATE_ID AS TEXT) IN ('1935', '1936') - runtime filters: RF084[min_max] -> CAST(STAFF_ID AS VARCHAR(15)), RF085[in_or_bloom] -> CAST(STAFF_ID AS VARCHAR(15)) - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CUS_ID, SUBMIT_DATE, PRODUCT_ID, STAFF_ID - project output tuple id: 269 - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 173.106us, max 335.471us, min 110.763us - ExecTime: avg 249.485ms, max 303.763ms, min 234.875ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.905ms, max 27.841ms, min 386.266us - ProjectionTime: avg 16.482us, max 38.289us, min 4.659us - RowsProduced: sum 49, avg 4, max 12, min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 17.95338M (17953380), avg 1.496115M (1496115), max 2.971316M (2971316), min 590.236K (590236) - filter id = -1 input: sum 18.659326M (18659326), avg 1.554943M (1554943), max 3.044028M (3044028), min 619.236K (619236) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 246.322ms, max 275.573ms, min 234.180ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 3.63 MB, avg 310.00 KB, max 480.00 KB, min 120.00 KB Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=273): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 45.215us, max 287.68us, min 13.296us - InputRows: sum 5.62K (5620), avg 468, max 5.62K (5620), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 49.39 KB, avg 4.12 KB, max 49.39 KB, min 0.00 - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 53.96 KB, avg 4.50 KB, max 53.96 KB, min 0.00 - PeakMemoryUsage: sum 103.35 KB, avg 8.61 KB, max 103.35 KB, min 0.00 - OpenTime: avg 13.821us, max 33.913us, min 6.882us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 39.906ms, max 49.969ms, min 0ns EXCHANGE_OPERATOR (id=265): - PlanInfo - offset: 0 - BlocksProduced: sum 2, avg 0, max 2, min 0 - CloseTime: avg 5.452us, max 13.527us, min 2.702us - ExecTime: avg 33.243us, max 60.245us, min 21.458us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 72.00 KB, avg 6.00 KB, max 72.00 KB, min 0.00 - OpenTime: avg 26.150us, max 48.635us, min 16.305us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.62K (5620), avg 468, max 5.62K (5620), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4.106ms, max 49.280ms, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=272): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 60.376us, max 210.109us, min 31.590us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 22.210us, max 37.765us, min 12.352us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 29.408ms, max 35.656ms, min 0ns EXCHANGE_OPERATOR (id=270): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 6.912us, max 19.135us, min 2.921us - ExecTime: avg 23.456us, max 35.955us, min 17.62us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.63 KB, avg 138.00 B, max 1.63 KB, min 0.00 - OpenTime: avg 15.222us, max 23.309us, min 11.715us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2.876ms, max 34.523ms, min 0ns Fragment 48: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=270,dst_id=270): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.626us, max 14.626us, min 14.626us - ExecTime: avg 73.187us, max 73.187us, min 73.187us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 40.116us, max 40.116us, min 40.116us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=269): - PlanInfo - group by: USER_ID - cardinality=21 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 393ns, max 393ns, min 393ns - ExecTime: avg 70.442us, max 70.442us, min 70.442us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 28.630us, max 28.630us, min 28.630us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 EXCHANGE_OPERATOR (id=268): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 19.609us, max 19.609us, min 19.609us - ExecTime: avg 45.387us, max 45.387us, min 45.387us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.63 KB, avg 1.63 KB, max 1.63 KB, min 1.63 KB - OpenTime: avg 15.926us, max 15.926us, min 15.926us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 34.363ms, max 34.363ms, min 34.363ms Fragment 49: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=268,dst_id=268): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.144us, max 14.144us, min 14.144us - ExecTime: avg 46.512us, max 46.512us, min 46.512us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 19.670us, max 19.670us, min 19.670us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=267): - PlanInfo - STREAMING - group by: USER_ID - cardinality=21 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 270ns, max 270ns, min 270ns - ExecTime: avg 59.594us, max 59.594us, min 59.594us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 23.450us, max 23.450us, min 23.450us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 OLAP_SCAN_OPERATOR (id=266. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 265 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 42.435us, max 42.435us, min 42.435us - ExecTime: avg 21.945ms, max 21.945ms, min 21.945ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.90ms, max 1.90ms, min 1.90ms - ProjectionTime: avg 6.737us, max 6.737us, min 6.737us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 20.758ms, max 20.758ms, min 20.758ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 50: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=265,dst_id=265): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 15.47us, max 15.47us, min 15.47us - ExecTime: avg 119.192us, max 119.192us, min 119.192us - InputRows: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.91us, max 31.91us, min 31.91us - RowsProduced: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=264. table name = DIM_PRODUCT_ONLINE): - PlanInfo - TABLE: ods_demo.DIM_PRODUCT_ONLINE(DIM_PRODUCT_ONLINE), PREAGGREGATION: ON - partitions=1/1 (DIM_PRODUCT_ONLINE), tablets=1/1, tabletList=18267 - cardinality=5620, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CAST(PRODUCT_ID AS DOUBLE) - project output tuple id: 263 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 33.725us, max 33.725us, min 33.725us - ExecTime: avg 43.381ms, max 43.381ms, min 43.381ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 203.669us, max 203.669us, min 203.669us - ProjectionTime: avg 130.49us, max 130.49us, min 130.49us - RowsProduced: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 42.926ms, max 42.926ms, min 42.926ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 108.00 KB, avg 108.00 KB, max 108.00 KB, min 108.00 KB Fragment 51: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 12.606us, max 24.464us, min 7.184us - ExecTime: avg 64.235us, max 96.219us, min 43.702us - InputRows: sum 2.137K (2137), avg 178, max 194, min 157 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.446us, max 54.156us, min 17.425us - RowsProduced: sum 2.137K (2137), avg 178, max 194, min 157 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=262): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#3104] - group by: STATIS_DATE, STAFF_ID - cardinality=2,423 - projections: CAST(STATIS_DATE AS DOUBLE), STAFF_ID, AMOUNT - project output tuple id: 261 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 740ns, max 1.359us, min 158ns - ExecTime: avg 104.715us, max 153.111us, min 79.321us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.247us, max 11.142us, min 4.481us - ProjectionTime: avg 39.403us, max 61.664us, min 28.386us - RowsProduced: sum 2.137K (2137), avg 178, max 194, min 157 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 962.534ms, max 1s50ms, min 848.811ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=262): - CloseTime: avg 887ns, max 1.553us, min 262ns - ExecTime: avg 1.435ms, max 15.522ms, min 88.911us - InputRows: sum 3.876K (3876), avg 323, max 355, min 283 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.72 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 4.90 MB, avg 417.98 KB, max 417.98 KB, min 417.98 KB - SerializeKeyArena: sum 4.83 MB, avg 412.00 KB, max 412.00 KB, min 412.00 KB - OpenTime: avg 20.448us, max 35.838us, min 12.894us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=261): - PlanInfo - offset: 0 - BlocksProduced: sum 36, avg 3, max 3, min 3 - CloseTime: avg 7.916us, max 26.548us, min 1.896us - ExecTime: avg 46.413us, max 73.163us, min 23.391us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 213.97 KB, avg 17.83 KB, max 25.21 KB, min 11.21 KB - OpenTime: avg 19.232us, max 44.336us, min 12.280us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.876K (3876), avg 323, max 355, min 283 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 730.622ms, max 796.423ms, min 621.399ms Fragment 52: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.926us, max 24.40us, min 9.337us - ExecTime: avg 3.47ms, max 33.536ms, min 163.844us - InputRows: sum 3.876K (3876), avg 323, max 1.453K (1453), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 259.75 KB, avg 21.65 KB, max 114.00 KB, min 0.00 - OpenTime: avg 84.67us, max 114.3us, min 70.684us - RowsProduced: sum 3.876K (3876), avg 323, max 1.453K (1453), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#3101] - group by: STATIS_DATE, STAFF_ID - cardinality=2,423 - BlocksProduced: sum 3, avg 0, max 1, min 0 - CloseTime: avg 6.347us, max 23.301us, min 416ns - ExecTime: avg 1.42ms, max 8.390ms, min 37.955us - MemoryUsage: sum , avg , max , min - HashTable: sum 143.93 KB, avg 11.99 KB, max 47.98 KB, min 0.00 - PeakMemoryUsage: sum 1.49 MB, avg 126.99 KB, max 507.98 KB, min 0.00 - SerializeKeyArena: sum 1.35 MB, avg 115.00 KB, max 460.00 KB, min 0.00 - OpenTime: avg 35.867us, max 108.36us, min 21.684us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.876K (3876), avg 323, max 1.453K (1453), min 0 HASH_JOIN_OPERATOR (id=259): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (STAFF_ID = USER_ID) - runtime filters: RF082[min_max] <- USER_ID(109/128/2048), RF083[in_or_bloom] <- USER_ID(109/128/2048) - cardinality=4,846 - vec output tuple id: 258 - output tuple id: 258 - vIntermediate tuple ids: 257 - hash output slot ids: 3089 3090 3091 - projections: date_format(SUBMIT_DATE, '%Y%m%d'), STAFF_ID, TOTAL_FEE - project output tuple id: 258 - BlocksProduced: sum 15, avg 1, max 5, min 0 - CloseTime: avg 8.789us, max 24.88us, min 3.654us - ExecTime: avg 687.121us, max 2.998ms, min 30.428us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 256.00 KB, avg 21.33 KB, max 132.00 KB, min 0.00 - ProbeKeyArena: sum 256.00 KB, avg 21.33 KB, max 132.00 KB, min 0.00 - OpenTime: avg 23.274us, max 57.94us, min 11.364us - ProbeRows: sum 52.306K (52306), avg 4.358K (4358), max 19.012K (19012), min 0 - ProjectionTime: avg 280.835us, max 1.456ms, min 8.298us - RowsProduced: sum 52.306K (52306), avg 4.358K (4358), max 19.012K (19012), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 15, avg 1, max 5, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 16.201us, max 75.236us, min 1.547us - GetBlockFailedTime: sum 21, avg 1, max 4, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.82 MB, avg 155.35 KB, max 832.00 KB, min 0.00 - OpenTime: avg 2.273us, max 15.856us, min 706ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.306K (52306), avg 4.358K (4358), max 19.012K (19012), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 540.280ms, max 561.151ms, min 458.556ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 21.255us, max 71.184us, min 3.483us - InputRows: sum 52.306K (52306), avg 4.358K (4358), max 10.685K (10685), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.484us, max 3.685us, min 1.91us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m') >= '202401') AND (SUBMIT_DATE >= '2021-01-01 00:00:00') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - runtime filters: RF082[min_max] -> CAST(STAFF_ID AS VARCHAR(15)), RF083[in_or_bloom] -> CAST(STAFF_ID AS VARCHAR(15)) - partitions=4/8 (p2021,p2022,p2023,p2024), tablets=20/20, tabletList=15317,15319,15321 ... - cardinality=6130400, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: SUBMIT_DATE, TOTAL_FEE, STAFF_ID - project output tuple id: 256 - BlocksProduced: sum 15, avg 1, max 3, min 0 - CloseTime: avg 65.736us, max 119.458us, min 38.216us - ExecTime: avg 289.691ms, max 436.406ms, min 245.152ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 552.697us, max 813.828us, min 387.458us - ProjectionTime: avg 42.11us, max 118.836us, min 1.415us - RowsProduced: sum 52.306K (52306), avg 4.358K (4358), max 10.685K (10685), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 13.275716M (13275716), avg 1.106309M (1106309), max 1.86999M (1869990), min 640.138K (640138) - filter id = -1 input: sum 15.838614M (15838614), avg 1.319884M (1319884), max 2.232094M (2232094), min 781.164K (781164) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 283.153ms, max 435.810ms, min 242.886ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 2.77 MB, avg 236.67 KB, max 488.00 KB, min 80.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=259): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 56.141us, max 185.242us, min 29.37us - InputRows: sum 109, avg 9, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.65 KB, avg 140.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 956.00 B, avg 79.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 2.58 KB, avg 219.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 20.962us, max 32.199us, min 14.372us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 57.282ms, max 65.889ms, min 0ns EXCHANGE_OPERATOR (id=257): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 6.472us, max 12.621us, min 2.926us - ExecTime: avg 30.724us, max 43.986us, min 20.861us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.75 KB, avg 234.00 B, max 2.75 KB, min 0.00 - OpenTime: avg 22.800us, max 40.236us, min 15.484us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 9, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 5.478ms, max 65.738ms, min 0ns Fragment 53: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=257,dst_id=257): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.312us, max 13.312us, min 13.312us - ExecTime: avg 60.750us, max 60.750us, min 60.750us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 27.965us, max 27.965us, min 27.965us - RowsProduced: sum 109, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=256): - PlanInfo - group by: USER_ID - cardinality=109 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 260ns, max 260ns, min 260ns - ExecTime: avg 69.834us, max 69.834us, min 69.834us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 22.240us, max 22.240us, min 22.240us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 EXCHANGE_OPERATOR (id=255): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 15.510us, max 15.510us, min 15.510us - ExecTime: avg 51.706us, max 51.706us, min 51.706us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.75 KB, avg 2.75 KB, max 2.75 KB, min 2.75 KB - OpenTime: avg 29.440us, max 29.440us, min 29.440us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 65.599ms, max 65.599ms, min 65.599ms Fragment 54: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=255,dst_id=255): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.750us, max 13.750us, min 13.750us - ExecTime: avg 56.462us, max 56.462us, min 56.462us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.105us, max 20.105us, min 20.105us - RowsProduced: sum 109, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=254): - PlanInfo - STREAMING - group by: USER_ID - cardinality=109 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 420ns, max 420ns, min 420ns - ExecTime: avg 167.964us, max 167.964us, min 167.964us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 118.741us, max 118.741us, min 118.741us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 OLAP_SCAN_OPERATOR (id=253. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 41.962us, max 41.962us, min 41.962us - ExecTime: avg 61.862ms, max 61.862ms, min 61.862ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.247ms, max 8.247ms, min 8.247ms - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 53.512ms, max 53.512ms, min 53.512ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 55: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 10.465us, max 14.643us, min 7.348us - ExecTime: avg 67.106us, max 155.656us, min 49.274us - InputRows: sum 4.964K (4964), avg 413, max 480, min 353 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.387us, max 116.290us, min 19.713us - RowsProduced: sum 4.964K (4964), avg 413, max 480, min 353 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=251): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#3002], sum(partial_sum(if((PRODUCT_CATEGORY_ID = 'A361'), TOTAL_FEE, NULL)))[#3003], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN ((((ORDER_TYPE = 14) OR cast(PRODUCT_TEMPLATE_ID as TEXT) IN ('1935', '1936')) AND ( not (cast(ifnull(ORDER_STATUS_ID, '') as DOUBLE) = cast(7 as DOUBLE)))) AND (TOTAL_FEE > cast(0 as DECIMALV3(9, 0)))) THEN CUS_ID ELSE NULL END))[#3004] - group by: USER_ID, STATIS_DATE - cardinality=638 - projections: AMOUNT_QW, AMOUNT_MM, count(DISTINCT CASE WHEN ((((ORDER_TYPE = 14) OR cast(PRODUCT_TEMPLATE_ID as TEXT) IN ('1935', '1936')) AND ( not (cast(ifnull(ORDER_STATUS_ID, '') as DOUBLE) = cast(7 as DOUBLE)))) AND (TOTAL_FEE > cast(0 as DECIMALV3(9, 0)))) THEN CUS_ID ELSE NULL END), CAST(STATIS_DATE AS DOUBLE), USER_ID - project output tuple id: 251 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 602ns, max 1.83us, min 330ns - ExecTime: avg 141.19us, max 194.766us, min 103.433us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.275us, max 11.790us, min 5.405us - ProjectionTime: avg 50.584us, max 67.869us, min 38.449us - RowsProduced: sum 4.964K (4964), avg 413, max 480, min 353 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s388ms, max 4s487ms, min 4s302ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=251): - CloseTime: avg 1.790us, max 5.560us, min 670ns - ExecTime: avg 633.107us, max 891.595us, min 473.555us - InputRows: sum 36.366K (36366), avg 3.03K (3030), max 3.428K (3428), min 2.628K (2628) - MemoryUsage: sum , avg , max , min - HashTable: sum 167.72 KB, avg 13.98 KB, max 23.98 KB, min 11.98 KB - PeakMemoryUsage: sum 12.49 MB, avg 1.04 MB, max 1.06 MB, min 1.04 MB - SerializeKeyArena: sum 12.33 MB, avg 1.03 MB, max 1.04 MB, min 1.02 MB - OpenTime: avg 31.716us, max 57.155us, min 19.874us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=250): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.969us, max 11.923us, min 1.676us - ExecTime: avg 134.269us, max 196.546us, min 100.848us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.49 MB, avg 127.54 KB, max 168.00 KB, min 94.00 KB - OpenTime: avg 18.166us, max 33.812us, min 12.873us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 36.366K (36366), avg 3.03K (3030), max 3.428K (3428), min 2.628K (2628) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s258ms, max 4s282ms, min 4s245ms Fragment 56: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.730us, max 14.105us, min 11.53us - ExecTime: avg 572.14us, max 619.943us, min 488.283us - InputRows: sum 36.366K (36366), avg 3.03K (3030), max 3.437K (3437), min 2.357K (2357) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.23 MB, avg 275.54 KB, max 347.00 KB, min 182.50 KB - OpenTime: avg 75.251us, max 96.131us, min 57.673us - RowsProduced: sum 36.366K (36366), avg 3.03K (3030), max 3.437K (3437), min 2.357K (2357) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#2997], partial_sum(if((PRODUCT_CATEGORY_ID = 'A361'), TOTAL_FEE, NULL))[#2998], partial_multi_distinct_count(DISTINCT CASE WHEN ((((ORDER_TYPE = 14) OR cast(PRODUCT_TEMPLATE_ID as TEXT) IN ('1935', '1936')) AND ( not (cast(ifnull(ORDER_STATUS_ID, '') as DOUBLE) = cast(7 as DOUBLE)))) AND (TOTAL_FEE > cast(0 as DECIMALV3(9, 0)))) THEN CUS_ID ELSE NULL END)[#2999] - group by: USER_ID, STATIS_DATE - cardinality=638 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 3.673ms, max 43.231ms, min 53.338us - ExecTime: avg 12.280ms, max 51.331ms, min 1.945ms - MemoryUsage: sum , avg , max , min - HashTable: sum 1.12 MB, avg 95.98 KB, max 95.98 KB, min 95.98 KB - PeakMemoryUsage: sum 14.72 MB, avg 1.23 MB, max 1.23 MB, min 1.23 MB - SerializeKeyArena: sum 13.59 MB, avg 1.13 MB, max 1.13 MB, min 1.13 MB - OpenTime: avg 42.686us, max 74.103us, min 29.124us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 36.366K (36366), avg 3.03K (3030), max 3.437K (3437), min 2.357K (2357) HASH_JOIN_OPERATOR (id=248): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (expr_cast(PRODUCT_ID as DOUBLE) = expr_cast(PRODUCT_ID as DOUBLE)) - runtime filters: RF080[min_max] <- expr_cast(PRODUCT_ID as DOUBLE)(1277/2048/2048), RF081[bloom] <- expr_cast(PRODUCT_ID as DOUBLE)(1277/2048/2048) - cardinality=1,277 - vec output tuple id: 248 - output tuple id: 248 - vIntermediate tuple ids: 247 - hash output slot ids: 2946 2978 2947 2948 2949 2950 2952 2953 - projections: USER_ID, date_format(SUBMIT_DATE, '%Y%m%d'), TOTAL_FEE, PRODUCT_CATEGORY_ID, if((ORDER_TYPE = 14) OR CAST(PRODUCT_TEMPLATE_ID AS TEXT) IN ('1935', '1936') AND (CAST(ifnull(ORDER_STATUS_ID, '') AS DOUBLE) != 7) AND (TOTAL_FEE > 0), CUS_ID, NULL) - project output tuple id: 248 - BlocksProduced: sum 57, avg 4, max 7, min 3 - CloseTime: avg 11.591us, max 14.790us, min 9.383us - ExecTime: avg 5.653ms, max 14.671ms, min 2.738ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 87.81 KB, avg 7.32 KB, max 7.75 KB, min 6.95 KB - ProbeKeyArena: sum 87.81 KB, avg 7.32 KB, max 7.75 KB, min 6.95 KB - OpenTime: avg 25.379us, max 39.571us, min 18.704us - ProbeRows: sum 5.62K (5620), avg 468, max 496, min 445 - ProjectionTime: avg 3.99ms, max 5.7ms, min 1.748ms - RowsProduced: sum 199.993K (199993), avg 16.666K (16666), max 27.777K (27777), min 8.835K (8835) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s112ms, max 3s287ms, min 2s874ms EXCHANGE_OPERATOR (id=247): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 10.265us, max 21.957us, min 6.19us - ExecTime: avg 39.105us, max 54.220us, min 28.915us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 134.00 KB, avg 11.17 KB, max 12.00 KB, min 11.00 KB - OpenTime: avg 21.837us, max 34.985us, min 15.474us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.62K (5620), avg 468, max 496, min 445 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 968.595ms, max 971.9ms, min 958.796ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=248): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.638ms, max 2.256ms, min 1.68ms - InputRows: sum 199.993K (199993), avg 16.666K (16666), max 27.777K (27777), min 8.835K (8835) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 12.77 MB, avg 1.06 MB, max 1.78 MB, min 577.84 KB - BuildKeyArena: sum 3.05 MB, avg 260.42 KB, max 434.03 KB, min 138.06 KB - HashTable: sum 2.14 MB, avg 182.72 KB, max 263.64 KB, min 107.15 KB - PeakMemoryUsage: sum 17.97 MB, avg 1.50 MB, max 2.46 MB, min 823.05 KB - OpenTime: avg 28.350us, max 60.226us, min 16.274us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=245): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 8.728us, max 20.418us, min 3.832us - ExecTime: avg 235.964us, max 329.866us, min 176.196us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.68 MB, avg 826.00 KB, max 1.86 MB, min 344.00 KB - OpenTime: avg 14.669us, max 21.654us, min 8.82us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 199.993K (199993), avg 16.666K (16666), max 27.777K (27777), min 8.835K (8835) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s58ms, max 4s112ms, min 4s32ms Fragment 57: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=247,dst_id=247): - BlocksProduced: sum 12, avg 12, max 12, min 12 - CloseTime: avg 12.897us, max 12.897us, min 12.897us - ExecTime: avg 525.779us, max 525.779us, min 525.779us - InputRows: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 134.00 KB, avg 134.00 KB, max 134.00 KB, min 134.00 KB - OpenTime: avg 81.432us, max 81.432us, min 81.432us - RowsProduced: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=246. table name = DIM_PRODUCT_ONLINE): - PlanInfo - TABLE: ods_demo.DIM_PRODUCT_ONLINE(DIM_PRODUCT_ONLINE), PREAGGREGATION: ON - runtime filters: RF080[min_max] -> CAST(PRODUCT_ID AS DOUBLE), RF081[bloom] -> CAST(PRODUCT_ID AS DOUBLE) - partitions=1/1 (DIM_PRODUCT_ONLINE), tablets=1/1, tabletList=18267 - cardinality=5620, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: PRODUCT_CATEGORY_ID, CAST(PRODUCT_ID AS DOUBLE) - project output tuple id: 246 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 18.301us, max 18.301us, min 18.301us - ExecTime: avg 86.688ms, max 86.688ms, min 86.688ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 392.39us, max 392.39us, min 392.39us - ProjectionTime: avg 234.454us, max 234.454us, min 234.454us - RowsProduced: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 86.15ms, max 86.15ms, min 86.15ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 212.00 KB, avg 212.00 KB, max 212.00 KB, min 212.00 KB Fragment 58: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.962us, max 31.972us, min 9.857us - ExecTime: avg 2.704ms, max 4.43ms, min 1.834ms - InputRows: sum 199.993K (199993), avg 16.666K (16666), max 25.609K (25609), min 11.761K (11761) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 18.55 MB, avg 1.55 MB, max 2.47 MB, min 1.07 MB - OpenTime: avg 69.657us, max 91.860us, min 63.206us - RowsProduced: sum 199.993K (199993), avg 16.666K (16666), max 25.609K (25609), min 11.761K (11761) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=244): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (CUS_ID = CUS_ID) - other join predicates: (SUBMIT_DATE >= ADD_TIME) - runtime filters: RF078[min_max] <- CUS_ID(2980/4096/4096), RF079[in_or_bloom] <- CUS_ID(2980/4096/4096) - cardinality=1,277 - vec output tuple id: 244 - output tuple id: 244 - vIntermediate tuple ids: 243 - hash output slot ids: 2929 2930 2931 2932 2933 2934 2935 2857 2858 - projections: ORDER_TYPE, SUBMIT_DATE, USER_ID, TOTAL_FEE, ORDER_STATUS_ID, CAST(PRODUCT_ID AS DOUBLE), CUS_ID, PRODUCT_TEMPLATE_ID - project output tuple id: 244 - BlocksProduced: sum 95, avg 7, max 10, min 5 - CloseTime: avg 19.606us, max 35.139us, min 12.157us - ExecTime: avg 7.263ms, max 26.662ms, min 3.445ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 24.900us, max 45.195us, min 16.70us - ProbeRows: sum 338.667K (338667), avg 28.222K (28222), max 36.576K (36576), min 17.953K (17953) - ProjectionTime: avg 812.320us, max 1.199ms, min 513.855us - RowsProduced: sum 199.993K (199993), avg 16.666K (16666), max 25.609K (25609), min 11.761K (11761) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s870ms, max 3s48ms, min 2s596ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 95, avg 7, max 10, min 5 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 52.131us, max 116.666us, min 24.468us - GetBlockFailedTime: sum 12, avg 1, max 1, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 21.20 MB, avg 1.77 MB, max 3.37 MB, min 1.02 MB - OpenTime: avg 943ns, max 3.235us, min 575ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 36.576K (36576), min 17.953K (17953) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 963.192ms, max 975.519ms, min 863.250ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 76.449us, max 299.278us, min 13.293us - InputRows: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.808us, max 4.937us, min 1.67us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - runtime filters: RF078[min_max] -> CUS_ID, RF079[in_or_bloom] -> CUS_ID - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PRODUCT_TEMPLATE_ID - project output tuple id: 242 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 138.142us, max 228.196us, min 87.891us - ExecTime: avg 123.29ms, max 176.618ms, min 89.734ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 307.616us, max 573.231us, min 229.161us - ProjectionTime: avg 5.856ms, max 30.864ms, min 6.22us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 116.588ms, max 153.442ms, min 87.459ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 25.21 MB, avg 2.10 MB, max 4.43 MB, min 196.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=244): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 6.388ms, max 76.75ms, min 28.3us - InputRows: sum 664.041K (664041), avg 55.336K (55336), max 664.041K (664041), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 20.90 MB, avg 1.74 MB, max 20.90 MB, min 0.00 - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 6.53 MB, avg 557.49 KB, max 6.53 MB, min 0.00 - PeakMemoryUsage: sum 27.43 MB, avg 2.29 MB, max 27.43 MB, min 0.00 - OpenTime: avg 24.91us, max 102.460us, min 13.364us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 3s603ms, max 3s933ms, min 0ns EXCHANGE_OPERATOR (id=242): - PlanInfo - offset: 0 - BlocksProduced: sum 9.482K (9482), avg 790, max 9.482K (9482), min 0 - CloseTime: avg 5.716us, max 11.324us, min 3.533us - ExecTime: avg 3.872ms, max 46.201ms, min 18.740us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 69.38 MB, avg 5.78 MB, max 69.38 MB, min 0.00 - OpenTime: avg 19.171us, max 22.630us, min 14.75us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 664.041K (664041), avg 55.336K (55336), max 664.041K (664041), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 249.245ms, max 2s990ms, min 0ns Fragment 59: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: sum 9.482K (9482), avg 790, max 829, min 784 - CloseTime: avg 13.754us, max 31.40us, min 8.745us - ExecTime: avg 11.580ms, max 29.113ms, min 3.172ms - InputRows: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 25.409us, max 35.36us, min 18.810us - RowsProduced: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=241): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF076[min_max] <- CUS_ID(2980/4096/4096), RF077[bloom] <- CUS_ID(2980/4096/4096) - cardinality=3,930 - vec output tuple id: 240 - output tuple id: 240 - vIntermediate tuple ids: 239 - hash output slot ids: 2777 2778 2779 - projections: CUS_ID, USER_ID, ADD_TIME - project output tuple id: 240 - BlocksProduced: sum 9.482K (9482), avg 790, max 829, min 784 - CloseTime: avg 7.632us, max 23.442us, min 4.718us - ExecTime: avg 114.339ms, max 176.634ms, min 81.69ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 829.13 KB, avg 69.09 KB, max 69.28 KB, min 68.88 KB - ProbeKeyArena: sum 829.13 KB, avg 69.09 KB, max 69.28 KB, min 68.88 KB - OpenTime: avg 13.556us, max 29.441us, min 8.601us - ProbeRows: sum 39.547928M (39547928), avg 3.29566M (3295660), max 3.296829M (3296829), min 3.295028M (3295028) - ProjectionTime: avg 1.629ms, max 2.836ms, min 1.420ms - RowsProduced: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s996ms, max 2s170ms, min 1s895ms EXCHANGE_OPERATOR (id=240): - PlanInfo - offset: 0 - BlocksProduced: sum 9.441K (9441), avg 786, max 789, min 784 - CloseTime: avg 9.378us, max 13.420us, min 4.760us - ExecTime: avg 9.410ms, max 28.900ms, min 4.534ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 233.15 MB, avg 19.43 MB, max 19.62 MB, min 18.84 MB - OpenTime: avg 18.785us, max 27.531us, min 10.50us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547928M (39547928), avg 3.29566M (3295660), max 3.296829M (3296829), min 3.295028M (3295028) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 981.208ms, max 1s101ms, min 836.924ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=241): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.127ms, max 20.228ms, min 2.99ms - InputRows: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 20.90 MB, avg 1.74 MB, max 6.96 MB, min 1.26 MB - BuildKeyArena: sum 10.13 MB, avg 864.65 KB, max 3.37 MB, min 624.66 KB - HashTable: sum 6.92 MB, avg 590.21 KB, max 2.05 MB, min 451.21 KB - PeakMemoryUsage: sum 37.94 MB, avg 3.16 MB, max 12.38 MB, min 2.31 MB - OpenTime: avg 28.384us, max 133.795us, min 9.723us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=238): - PlanInfo - offset: 0 - BlocksProduced: sum 188, avg 15, max 56, min 12 - CloseTime: avg 12.489us, max 22.792us, min 6.951us - ExecTime: avg 301.766us, max 1.160ms, min 189.359us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 13.31 MB, avg 1.11 MB, max 6.03 MB, min 388.00 KB - OpenTime: avg 17.973us, max 32.841us, min 11.317us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s438ms, max 2s731ms, min 1s711ms Fragment 60: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - BlocksProduced: sum 9.451K (9451), avg 787, max 1.186K (1186), min 216 - CloseTime: avg 12.862us, max 13.900us, min 10.874us - ExecTime: avg 286.993ms, max 579.332ms, min 113.253ms - InputRows: sum 39.547928M (39547928), avg 3.29566M (3295660), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 508.01 MB, avg 42.33 MB, max 65.05 MB, min 10.47 MB - OpenTime: avg 89.439us, max 165.321us, min 60.919us - RowsProduced: sum 39.547928M (39547928), avg 3.29566M (3295660), max 4.97661M (4976610), min 876.719K (876719) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF076[min_max] -> CUS_ID, RF077[bloom] -> CUS_ID - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 54.585us, max 117.735us, min 20.125us - ExecTime: avg 125.371ms, max 262.109ms, min 17.324ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 238.478us, max 395.73us, min 130.687us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547928M (39547928), avg 3.29566M (3295660), max 4.97661M (4976610), min 876.719K (876719) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 120.645ms, max 241.622ms, min 13.57ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 207.95 MB, avg 17.33 MB, max 26.12 MB, min 7.63 MB Fragment 61: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - BlocksProduced: sum 188, avg 47, max 47, min 47 - CloseTime: avg 13.540us, max 15.132us, min 11.125us - ExecTime: avg 45.490ms, max 64.468ms, min 33.976ms - InputRows: sum 664.041K (664041), avg 166.01K (166010), max 166.579K (166579), min 165.278K (165278) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 28.61 MB, avg 7.15 MB, max 7.25 MB, min 6.99 MB - OpenTime: avg 70.187us, max 79.595us, min 56.442us - RowsProduced: sum 664.041K (664041), avg 166.01K (166010), max 166.579K (166579), min 165.278K (165278) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=237): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF074[min_max] <- EXTERNAL_USER_ID(2980/4096/4096), RF075[in_or_bloom] <- EXTERNAL_USER_ID(2980/4096/4096) - cardinality=2,980 - vec output tuple id: 237 - output tuple id: 237 - vIntermediate tuple ids: 236 - hash output slot ids: 2713 2714 2718 - projections: CUS_ID, USER_ID, ADD_TIME - project output tuple id: 237 - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 13.744us, max 18.267us, min 6.138us - ExecTime: avg 397.955ms, max 441.79ms, min 319.766ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 592.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - ProbeKeyArena: sum 592.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - OpenTime: avg 16.418us, max 27.4us, min 10.643us - ProbeRows: sum 8.342235M (8342235), avg 2.085558M (2085558), max 2.08699M (2086990), min 2.082148M (2082148) - ProjectionTime: avg 2.273ms, max 2.463ms, min 2.177ms - RowsProduced: sum 664.041K (664041), avg 166.01K (166010), max 166.579K (166579), min 165.278K (165278) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF074[min_max] -> EXTERNAL_USER_ID, RF075[in_or_bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 41.373us, max 45.865us, min 36.360us - ExecTime: avg 314.880ms, max 351.253ms, min 294.875ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 302.717us, max 382.271us, min 221.863us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342235M (8342235), avg 2.085558M (2085558), max 2.08699M (2086990), min 2.082148M (2082148) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 312.114ms, max 348.362ms, min 292.271ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Pipeline : 1(instance_num=4): HASH_JOIN_SINK_OPERATOR (id=237): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 112.326ms, max 214.35ms, min 44.150ms - InputRows: sum 668.409K (668409), avg 167.102K (167102), max 167.616K (167616), min 166.381K (166381) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 38.24 MB, avg 9.56 MB, max 9.59 MB, min 9.52 MB - BuildKeyArena: sum 22.97 MB, avg 5.74 MB, max 5.76 MB, min 5.72 MB - HashTable: sum 6.55 MB, avg 1.64 MB, max 1.64 MB, min 1.63 MB - PeakMemoryUsage: sum 67.75 MB, avg 16.94 MB, max 16.99 MB, min 16.87 MB - OpenTime: avg 24.785us, max 40.143us, min 14.354us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=235): - PlanInfo - offset: 0 - BlocksProduced: sum 160, avg 40, max 40, min 40 - CloseTime: avg 14.826us, max 19.698us, min 10.606us - ExecTime: avg 746.245us, max 785.568us, min 659.1us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 23.43 MB, avg 5.86 MB, max 7.88 MB, min 3.12 MB - OpenTime: avg 22.70us, max 37.268us, min 12.525us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 668.409K (668409), avg 167.102K (167102), max 167.616K (167616), min 166.381K (166381) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 448.79ms, max 515.897ms, min 396.95ms Fragment 62: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - BlocksProduced: sum 173, avg 14, max 20, min 12 - CloseTime: avg 16.149us, max 30.924us, min 9.757us - ExecTime: avg 20.240ms, max 77.430ms, min 5.703ms - InputRows: sum 668.409K (668409), avg 55.7K (55700), max 74.403K (74403), min 38.214K (38214) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 62.16 MB, avg 5.18 MB, max 7.13 MB, min 3.56 MB - OpenTime: avg 45.99us, max 65.323us, min 34.464us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 74.403K (74403), min 38.214K (38214) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=234): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF072[min_max] <- USER_ID(21/32/2048), RF073[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=2,980 - vec output tuple id: 234 - output tuple id: 234 - vIntermediate tuple ids: 233 - hash output slot ids: 2705 2706 2707 - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 234 - BlocksProduced: sum 190, avg 15, max 21, min 12 - CloseTime: avg 15.848us, max 26.916us, min 9.473us - ExecTime: avg 12.240ms, max 52.945ms, min 4.115ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.27 MB, avg 108.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.27 MB, avg 108.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 15.750us, max 31.483us, min 9.898us - ProbeRows: sum 668.409K (668409), avg 55.7K (55700), max 74.403K (74403), min 38.214K (38214) - ProjectionTime: avg 714.388us, max 1.8ms, min 513.516us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 74.403K (74403), min 38.214K (38214) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 190, avg 15, max 21, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 93.390us, max 122.309us, min 68.496us - GetBlockFailedTime: sum 48, avg 4, max 8, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 23.25 MB, avg 1.94 MB, max 2.85 MB, min 1.24 MB - OpenTime: avg 968ns, max 2.785us, min 682ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 74.403K (74403), min 38.214K (38214) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 469.148ms, max 573.914ms, min 385.421ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 72.27us, max 181.696us, min 11.416us - InputRows: sum 668.409K (668409), avg 55.7K (55700), max 171.007K (171007), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.602us, max 15.757us, min 1.59us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (EXTERNAL_USER_DELETE_FLAG = 0) AND (USER_DELETE_FLAG = 0) - runtime filters: RF072[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF073[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 232 - BlocksProduced: sum 190, avg 15, max 48, min 0 - CloseTime: avg 57.232us, max 77.869us, min 36.254us - ExecTime: avg 360.19ms, max 455.307ms, min 223.419ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.680ms, max 14.225ms, min 447.331us - ProjectionTime: avg 1.173ms, max 2.701ms, min 1.254us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 171.007K (171007), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 356.909ms, max 451.973ms, min 222.732ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 25.34 MB, avg 2.11 MB, max 5.58 MB, min 76.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=234): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 56.400us, max 145.910us, min 30.225us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 19.779us, max 34.191us, min 13.378us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 13.733ms, max 20.14ms, min 0ns EXCHANGE_OPERATOR (id=232): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 5.736us, max 8.577us, min 3.484us - ExecTime: avg 27.85us, max 36.139us, min 19.788us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 19.842us, max 30.62us, min 13.950us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 402.597us, max 4.831ms, min 0ns Fragment 63: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=232,dst_id=232): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 9.508us, max 9.508us, min 9.508us - ExecTime: avg 52.250us, max 52.250us, min 52.250us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 29.258us, max 29.258us, min 29.258us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=231. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 230 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 31.748us, max 31.748us, min 31.748us - ExecTime: avg 1.87ms, max 1.87ms, min 1.87ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 300.732us, max 300.732us, min 300.732us - ProjectionTime: avg 7.812us, max 7.812us, min 7.812us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 712.361us, max 712.361us, min 712.361us VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 64: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.471us, max 15.817us, min 7.968us - ExecTime: avg 291.175us, max 345.957us, min 221.788us - InputRows: sum 3.365K (3365), avg 280, max 337, min 235 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 282.25 KB, avg 23.52 KB, max 27.31 KB, min 20.50 KB - OpenTime: avg 81.829us, max 111.230us, min 59.727us - RowsProduced: sum 3.365K (3365), avg 280, max 337, min 235 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=229): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#2672], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT concat(concat(cast(CUS_ID as VARCHAR(65533)), '&'), CHAT_ID)))[#2673] - group by: OWNER, STATIS_DATE - cardinality=725,831 - projections: OWNER, AMOUNT_GROUP, count(DISTINCT concat(concat(cast(CUS_ID as VARCHAR(65533)), '&'), CHAT_ID)), CAST(STATIS_DATE AS DOUBLE) - project output tuple id: 228 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 511ns, max 861ns, min 264ns - ExecTime: avg 109.851us, max 134.327us, min 87.600us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.374us, max 10.324us, min 4.724us - ProjectionTime: avg 43.515us, max 58.554us, min 30.81us - RowsProduced: sum 3.365K (3365), avg 280, max 337, min 235 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s662ms, max 2s676ms, min 2s658ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=229): - CloseTime: avg 1.898us, max 14.728us, min 237ns - ExecTime: avg 1.390ms, max 10.54ms, min 423.46us - InputRows: sum 16.166K (16166), avg 1.347K (1347), max 1.623K (1623), min 1.198K (1198) - MemoryUsage: sum , avg , max , min - HashTable: sum 143.72 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 9.42 MB, avg 803.98 KB, max 803.98 KB, min 803.98 KB - SerializeKeyArena: sum 9.28 MB, avg 792.00 KB, max 792.00 KB, min 792.00 KB - OpenTime: avg 30.39us, max 103.203us, min 17.224us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=228): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 6.511us, max 20.174us, min 1.713us - ExecTime: avg 141.599us, max 258.712us, min 67.574us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.44 MB, avg 122.75 KB, max 240.00 KB, min 79.75 KB - OpenTime: avg 28.288us, max 102.142us, min 11.460us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.166K (16166), avg 1.347K (1347), max 1.623K (1623), min 1.198K (1198) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s586ms, max 2s594ms, min 2s573ms Fragment 65: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 17.373us, max 27.556us, min 10.804us - ExecTime: avg 543.719us, max 993.764us, min 381.674us - InputRows: sum 16.166K (16166), avg 1.347K (1347), max 1.39K (1390), min 1.298K (1298) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.94 MB, avg 165.42 KB, max 184.75 KB, min 153.25 KB - OpenTime: avg 77.525us, max 110.100us, min 66.277us - RowsProduced: sum 16.166K (16166), avg 1.347K (1347), max 1.39K (1390), min 1.298K (1298) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#2668], partial_multi_distinct_count(DISTINCT concat(concat(cast(CUS_ID as VARCHAR(65533)), '&'), CHAT_ID))[#2669] - group by: OWNER, STATIS_DATE - cardinality=725,831 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 156.884us, max 377.684us, min 88.132us - ExecTime: avg 5.538ms, max 33.302ms, min 2.380ms - MemoryUsage: sum , avg , max , min - HashTable: sum 575.72 KB, avg 47.98 KB, max 47.98 KB, min 47.98 KB - PeakMemoryUsage: sum 10.41 MB, avg 887.98 KB, max 887.98 KB, min 887.98 KB - SerializeKeyArena: sum 9.84 MB, avg 840.00 KB, max 840.00 KB, min 840.00 KB - OpenTime: avg 31.649us, max 52.168us, min 18.919us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.166K (16166), avg 1.347K (1347), max 1.39K (1390), min 1.298K (1298) HASH_JOIN_OPERATOR (id=226): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF068[min_max] <- CHAT_ID(11327/16384/16384), RF069[bloom] <- CHAT_ID(11327/16384/16384), RF070[min_max] <- UNIONID(344946/524288/524288), RF071[bloom] <- UNIONID(344946/524288/524288) - cardinality=1,451,662 - vec output tuple id: 225 - output tuple id: 225 - vIntermediate tuple ids: 224 - hash output slot ids: 2646 2648 2650 2651 2652 - projections: OWNER, date_format(SUBMIT_DATE, '%Y%m%d'), concat(concat(CAST(CUS_ID AS VARCHAR(65533)), '&'), CHAT_ID), TOTAL_FEE - project output tuple id: 225 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 21.862us, max 40.514us, min 11.498us - ExecTime: avg 7.494ms, max 28.520ms, min 3.735ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.74 MB, avg 148.67 KB, max 252.00 KB, min 80.00 KB - ProbeKeyArena: sum 1.74 MB, avg 148.67 KB, max 252.00 KB, min 80.00 KB - OpenTime: avg 23.368us, max 36.710us, min 15.286us - ProbeRows: sum 140.011K (140011), avg 11.667K (11667), max 12.153K (12153), min 11.013K (11013) - ProjectionTime: avg 4.79ms, max 25.913ms, min 1.561ms - RowsProduced: sum 91.315K (91315), avg 7.609K (7609), max 8.165K (8165), min 7.146K (7146) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=225): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.630us, max 21.225us, min 8.99us - ExecTime: avg 281.473us, max 475.497us, min 189.337us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 18.34 MB, avg 1.53 MB, max 2.03 MB, min 252.00 KB - OpenTime: avg 20.445us, max 44.242us, min 13.584us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 140.011K (140011), avg 11.667K (11667), max 12.153K (12153), min 11.013K (11013) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s529ms, max 2s560ms, min 2s518ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=226): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 39.269ms, max 105.99ms, min 10.921ms - InputRows: sum 373.936K (373936), avg 31.161K (31161), max 31.513K (31513), min 30.721K (30721) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 24.61 MB, avg 2.05 MB, max 2.07 MB, min 2.02 MB - BuildKeyArena: sum 24.32 MB, avg 2.03 MB, max 2.05 MB, min 2.00 MB - HashTable: sum 4.43 MB, avg 377.73 KB, max 379.11 KB, min 376.01 KB - PeakMemoryUsage: sum 53.31 MB, avg 4.44 MB, max 4.49 MB, min 4.38 MB - OpenTime: avg 32.375us, max 69.889us, min 14.128us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=204): - PlanInfo - offset: 0 - BlocksProduced: sum 120, avg 10, max 10, min 10 - CloseTime: avg 13.707us, max 26.904us, min 7.935us - ExecTime: avg 2.342ms, max 26.144ms, min 155.565us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.46 MB, avg 806.83 KB, max 1.28 MB, min 456.00 KB - OpenTime: avg 14.507us, max 21.270us, min 7.804us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 373.936K (373936), avg 31.161K (31161), max 31.513K (31513), min 30.721K (30721) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 283.717ms, max 315.457ms, min 233.128ms Fragment 66: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.882us, max 22.205us, min 11.849us - ExecTime: avg 4.821ms, max 17.653ms, min 3.88ms - InputRows: sum 140.011K (140011), avg 11.667K (11667), max 14.423K (14423), min 10.495K (10495) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 22.00 MB, avg 1.83 MB, max 2.63 MB, min 1.54 MB - OpenTime: avg 73.459us, max 89.919us, min 63.150us - RowsProduced: sum 140.011K (140011), avg 11.667K (11667), max 14.423K (14423), min 10.495K (10495) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=224): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF066[min_max] <- CUS_ID(1451662/2097152/2097152), RF067[bloom] <- CUS_ID(1451662/2097152/2097152) - cardinality=1,451,662 - vec output tuple id: 223 - output tuple id: 223 - vIntermediate tuple ids: 222 - hash output slot ids: 2464 2465 2466 2635 2636 2637 2638 - projections: CHAT_ID, UNIONID, OWNER, CUS_ID, CUS_ID, SUBMIT_DATE, TOTAL_FEE - project output tuple id: 223 - BlocksProduced: sum 85, avg 7, max 8, min 7 - CloseTime: avg 14.217us, max 36.402us, min 5.913us - ExecTime: avg 2.435ms, max 6.659ms, min 1.732ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 16.440us, max 32.565us, min 11.143us - ProbeRows: sum 16.971K (16971), avg 1.414K (1414), max 1.696K (1696), min 1.324K (1324) - ProjectionTime: avg 699.416us, max 4.120ms, min 295.843us - RowsProduced: sum 140.011K (140011), avg 11.667K (11667), max 14.423K (14423), min 10.495K (10495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=223): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - cardinality=5,726,861 - vec output tuple id: 221 - output tuple id: 221 - vIntermediate tuple ids: 220 - hash output slot ids: 2626 2627 2628 2629 - projections: CHAT_ID, UNIONID, OWNER, CUS_ID - project output tuple id: 221 - BlocksProduced: sum 84, avg 7, max 7, min 7 - CloseTime: avg 14.104us, max 23.976us, min 8.923us - ExecTime: avg 722.593us, max 969.644us, min 593.894us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 14.668us, max 34.105us, min 8.885us - ProbeRows: sum 16.971K (16971), avg 1.414K (1414), max 1.696K (1696), min 1.324K (1324) - ProjectionTime: avg 103.521us, max 142.679us, min 77.610us - RowsProduced: sum 16.971K (16971), avg 1.414K (1414), max 1.696K (1696), min 1.324K (1324) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=222): - PlanInfo - offset: 0 - BlocksProduced: sum 84, avg 7, max 7, min 7 - CloseTime: avg 10.679us, max 16.542us, min 4.996us - ExecTime: avg 95.461us, max 127.902us, min 71.190us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.11 MB, avg 94.51 KB, max 136.03 KB, min 75.53 KB - OpenTime: avg 16.973us, max 31.264us, min 9.139us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.971K (16971), avg 1.414K (1414), max 1.696K (1696), min 1.324K (1324) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s479ms, max 2s496ms, min 2s466ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=224): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 7.396ms, max 32.872ms, min 2.153ms - InputRows: sum 307.567K (307567), avg 25.63K (25630), max 26.343K (26343), min 24.697K (24697) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 6.75 MB, avg 575.69 KB, max 591.69 KB, min 554.72 KB - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 2.67 MB, avg 228.13 KB, max 230.91 KB, min 224.48 KB - PeakMemoryUsage: sum 9.42 MB, avg 803.81 KB, max 822.59 KB, min 779.19 KB - OpenTime: avg 25.565us, max 57.682us, min 13.151us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=206): - PlanInfo - offset: 0 - BlocksProduced: sum 120, avg 10, max 10, min 10 - CloseTime: avg 11.395us, max 18.465us, min 8.176us - ExecTime: avg 139.899us, max 165.120us, min 110.977us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.64 MB, avg 395.76 KB, max 437.92 KB, min 322.92 KB - OpenTime: avg 17.28us, max 32.688us, min 10.230us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 307.567K (307567), avg 25.63K (25630), max 26.343K (26343), min 24.697K (24697) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 463.380ms, max 504.280ms, min 398.864ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=223): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 39.183ms, max 167.685ms, min 7.981ms - InputRows: sum 2.506017M (2506017), avg 208.834K (208834), max 209.241K (209241), min 208.294K (208294) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 21.51 MB, avg 1.79 MB, max 1.80 MB, min 1.79 MB - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 21.56 MB, avg 1.80 MB, max 1.80 MB, min 1.79 MB - PeakMemoryUsage: sum 43.07 MB, avg 3.59 MB, max 3.59 MB, min 3.58 MB - OpenTime: avg 7.348us, max 13.988us, min 4.311us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=208): - PlanInfo - offset: 0 - BlocksProduced: sum 612, avg 51, max 51, min 51 - CloseTime: avg 12.429us, max 23.790us, min 7.277us - ExecTime: avg 365.642us, max 492.524us, min 309.635us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.79 MB, avg 1.07 MB, max 1.38 MB, min 668.00 KB - OpenTime: avg 23.53us, max 128.565us, min 9.971us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.506017M (2506017), avg 208.834K (208834), max 209.241K (209241), min 208.294K (208294) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 199.158ms, max 255.218ms, min 159.232ms Fragment 67: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.219us, max 32.445us, min 10.67us - ExecTime: avg 736.449us, max 1.681ms, min 180.504us - InputRows: sum 16.971K (16971), avg 1.414K (1414), max 4.156K (4156), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.24 MB, avg 191.33 KB, max 575.50 KB, min 0.00 - OpenTime: avg 86.192us, max 156.161us, min 69.125us - RowsProduced: sum 16.971K (16971), avg 1.414K (1414), max 4.156K (4156), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=221): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF064[min_max] <- UNIONID(52568/65536/65536), RF065[in_or_bloom] <- UNIONID(52568/65536/65536) - cardinality=5,726,861 - vec output tuple id: 219 - output tuple id: 219 - vIntermediate tuple ids: 218 - hash output slot ids: 2544 2545 2546 2548 - projections: CHAT_ID, UNIONID, OWNER, CUS_ID - project output tuple id: 219 - BlocksProduced: sum 58, avg 4, max 12, min 0 - CloseTime: avg 10.411us, max 24.169us, min 1.676us - ExecTime: avg 1.925ms, max 7.190ms, min 23.882us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 348.00 KB, avg 29.00 KB, max 96.00 KB, min 0.00 - ProbeKeyArena: sum 348.00 KB, avg 29.00 KB, max 96.00 KB, min 0.00 - OpenTime: avg 15.401us, max 18.80us, min 13.108us - ProbeRows: sum 28.113K (28113), avg 2.342K (2342), max 8.425K (8425), min 0 - ProjectionTime: avg 64.892us, max 153.20us, min 4.335us - RowsProduced: sum 16.971K (16971), avg 1.414K (1414), max 4.156K (4156), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 73.447ms, max 475.454ms, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 58, avg 4, max 12, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 32.908us, max 103.954us, min 1.216us - GetBlockFailedTime: sum 23, avg 1, max 4, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.83 MB, avg 326.67 KB, max 952.00 KB, min 0.00 - OpenTime: avg 828ns, max 1.923us, min 525ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 28.113K (28113), avg 2.342K (2342), max 8.425K (8425), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 2s26ms, max 2s378ms, min 1s438ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 49.476us, max 114.531us, min 9.517us - InputRows: sum 28.113K (28113), avg 2.342K (2342), max 3.549K (3549), min 1.3K (1300) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.816us, max 15.925us, min 1.46us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF064[min_max] -> CAST(UNIONID AS VARCHAR(32)), RF065[in_or_bloom] -> CAST(UNIONID AS VARCHAR(32)), RF066[min_max] -> CUS_ID, RF067[bloom] -> CUS_ID, RF070[min_max] -> CAST(UNIONID AS VARCHAR(32)), RF071[bloom] -> CAST(UNIONID AS VARCHAR(32)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 58, avg 4, max 7, min 2 - CloseTime: avg 81.56us, max 160.778us, min 29.958us - ExecTime: avg 249.484ms, max 351.476ms, min 175.98ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.867ms, max 29.609ms, min 319.853us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 28.113K (28113), avg 2.342K (2342), max 3.549K (3549), min 1.3K (1300) - RuntimeFilterInfo: sum , avg , max , min - filter id = 67 filtered: sum 11.695212M (11695212), avg 974.601K (974601), max 2.625785M (2625785), min 367.804K (367804) - filter id = 67 input: sum 11.805523M (11805523), avg 983.793K (983793), max 2.635307M (2635307), min 375.022K (375022) - filter id = 71 filtered: sum 71.913K (71913), avg 5.992K (5992), max 10.089K (10089), min 2.802K (2802) - filter id = 71 input: sum 110.311K (110311), avg 9.192K (9192), max 13.621K (13621), min 4.626K (4626) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 245.77ms, max 350.773ms, min 174.297ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 3.09 MB, avg 264.00 KB, max 396.00 KB, min 148.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=221): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.569ms, max 18.152ms, min 39.959us - InputRows: sum 81.263K (81263), avg 6.771K (6771), max 81.263K (81263), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 7.79 MB, avg 665.13 KB, max 7.79 MB, min 0.00 - BuildKeyArena: sum 2.48 MB, avg 212.00 KB, max 2.48 MB, min 0.00 - HashTable: sum 829.44 KB, avg 69.12 KB, max 829.44 KB, min 0.00 - PeakMemoryUsage: sum 11.09 MB, avg 945.92 KB, max 11.09 MB, min 0.00 - OpenTime: avg 25.117us, max 96.315us, min 14.409us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 1s917ms, max 2s99ms, min 0ns EXCHANGE_OPERATOR (id=219): - PlanInfo - offset: 0 - BlocksProduced: sum 22, avg 1, max 22, min 0 - CloseTime: avg 9.220us, max 18.92us, min 3.237us - ExecTime: avg 79.657us, max 541.722us, min 22.481us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.26 MB, avg 960.67 KB, max 11.26 MB, min 0.00 - OpenTime: avg 28.766us, max 102.832us, min 12.577us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 81.263K (81263), avg 6.771K (6771), max 81.263K (81263), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 110.779ms, max 1s329ms, min 0ns Fragment 68: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: sum 22, avg 7, max 8, min 7 - CloseTime: avg 11.374us, max 12.97us, min 10.553us - ExecTime: avg 1.947ms, max 2.181ms, min 1.545ms - InputRows: sum 81.263K (81263), avg 27.087K (27087), max 28.737K (28737), min 26.074K (26074) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 48.460us, max 91.333us, min 22.878us - RowsProduced: sum 81.263K (81263), avg 27.087K (27087), max 28.737K (28737), min 26.074K (26074) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=218): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (CHAT_ID = CHAT_ID) - runtime filters: RF062[min_max] <- CHAT_ID(2299/2048/2048), RF063[in_or_bloom] <- CHAT_ID(2299/2048/2048) - cardinality=52,568 - vec output tuple id: 216 - output tuple id: 216 - vIntermediate tuple ids: 215 - hash output slot ids: 2537 2538 2523 2524 - projections: CHAT_ID, UNIONID, OWNER, USER_ID - project output tuple id: 216 - BlocksProduced: sum 22, avg 7, max 8, min 7 - CloseTime: avg 12.955us, max 14.384us, min 12.103us - ExecTime: avg 4.359ms, max 4.918ms, min 3.914ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 444.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - ProbeKeyArena: sum 444.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - OpenTime: avg 18.466us, max 18.928us, min 17.829us - ProbeRows: sum 81.263K (81263), avg 27.087K (27087), max 28.737K (28737), min 26.074K (26074) - ProjectionTime: avg 524.277us, max 605.431us, min 418.161us - RowsProduced: sum 81.263K (81263), avg 27.087K (27087), max 28.737K (28737), min 26.074K (26074) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=217. table name = QYWX_GROUPCHAT_MEMBER): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER(QYWX_GROUPCHAT_MEMBER), PREAGGREGATION: ON - PREDICATES: UNIONID IS NOT NULL AND (TYPE = 2) - runtime filters: RF062[min_max] -> CHAT_ID, RF063[in_or_bloom] -> CHAT_ID, RF068[min_max] -> CHAT_ID, RF069[bloom] -> CHAT_ID, RF070[min_max] -> UNIONID, RF071[bloom] -> UNIONID - partitions=1/1 (QYWX_GROUPCHAT_MEMBER), tablets=3/3, tabletList=15206,15208,15210 - cardinality=1111362, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CHAT_ID, UNIONID - project output tuple id: 214 - BlocksProduced: sum 22, avg 7, max 8, min 7 - CloseTime: avg 57.808us, max 68.559us, min 45.604us - ExecTime: avg 113.99ms, max 161.363ms, min 56.695ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 777.550us, max 839.683us, min 697.881us - ProjectionTime: avg 682.461us, max 739.96us, min 571.407us - RowsProduced: sum 81.263K (81263), avg 27.087K (27087), max 28.737K (28737), min 26.074K (26074) - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 1.707896M (1707896), avg 569.298K (569298), max 579.49K (579490), min 559.374K (559374) - filter id = -1 input: sum 2.069942M (2069942), avg 689.98K (689980), max 706.498K (706498), min 677.652K (677652) - filter id = 69 filtered: sum 0, avg 0, max 0, min 0 - filter id = 69 input: sum 180.829K (180829), avg 60.276K (60276), max 63.421K (63421), min 58.318K (58318) - filter id = 71 filtered: sum 99.566K (99566), avg 33.188K (33188), max 34.684K (34684), min 32.244K (32244) - filter id = 71 input: sum 180.829K (180829), avg 60.276K (60276), max 63.421K (63421), min 58.318K (58318) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 111.475ms, max 159.951ms, min 54.927ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 6.41 MB, avg 2.14 MB, max 2.22 MB, min 2.09 MB Pipeline : 1(instance_num=3): HASH_JOIN_SINK_OPERATOR (id=218): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 143.237us, max 154.913us, min 137.34us - InputRows: sum 438, avg 146, max 157, min 138 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 28.94 KB, avg 9.64 KB, max 10.38 KB, min 9.11 KB - BuildKeyArena: sum 36.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - HashTable: sum 4.73 KB, avg 1.58 KB, max 1.62 KB, min 1.55 KB - PeakMemoryUsage: sum 57.65 KB, avg 19.21 KB, max 20.00 KB, min 18.65 KB - OpenTime: avg 20.189us, max 25.852us, min 15.970us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=216): - PlanInfo - offset: 0 - BlocksProduced: sum 3, avg 1, max 1, min 1 - CloseTime: avg 11.887us, max 12.238us, min 11.710us - ExecTime: avg 56.146us, max 69.206us, min 41.418us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 46.50 KB, avg 15.50 KB, max 15.50 KB, min 15.50 KB - OpenTime: avg 35.318us, max 47.766us, min 21.61us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 438, avg 146, max 157, min 138 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 510.735ms, max 520.934ms, min 502.782ms Fragment 69: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=216,dst_id=216): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 9.881us, max 9.881us, min 9.881us - ExecTime: avg 169.240us, max 169.240us, min 169.240us - InputRows: sum 438, avg 438, max 438, min 438 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 46.50 KB, avg 46.50 KB, max 46.50 KB, min 46.50 KB - OpenTime: avg 37.173us, max 37.173us, min 37.173us - RowsProduced: sum 438, avg 438, max 438, min 438 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=215): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (OWNER = USER_ID) - cardinality=2,299 - vec output tuple id: 212 - output tuple id: 212 - vIntermediate tuple ids: 211 - hash output slot ids: 2517 2518 2503 - projections: CHAT_ID, OWNER, USER_ID - project output tuple id: 212 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 5.732us, max 5.732us, min 5.732us - ExecTime: avg 208.636us, max 208.636us, min 208.636us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - ProbeKeyArena: sum 12.00 KB, avg 12.00 KB, max 12.00 KB, min 12.00 KB - OpenTime: avg 13.725us, max 13.725us, min 13.725us - ProbeRows: sum 438, avg 438, max 438, min 438 - ProjectionTime: avg 20.747us, max 20.747us, min 20.747us - RowsProduced: sum 438, avg 438, max 438, min 438 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=214): - PlanInfo - output: max(partial_max(OWNER))[#2518] - group by: CHAT_ID - cardinality=2,299 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 998ns, max 998ns, min 998ns - ExecTime: avg 60.430us, max 60.430us, min 60.430us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.792us, max 9.792us, min 9.792us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 438, avg 438, max 438, min 438 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 519.344ms, max 519.344ms, min 519.344ms Pipeline : 1(instance_num=1): HASH_JOIN_SINK_OPERATOR (id=215): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 69.200us, max 69.200us, min 69.200us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 1.21 KB, max 1.21 KB, min 1.21 KB - BuildKeyArena: sum 4.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 840.00 B, avg 840.00 B, max 840.00 B, min 840.00 B - PeakMemoryUsage: sum 2.02 KB, avg 2.02 KB, max 2.02 KB, min 2.02 KB - OpenTime: avg 9.150us, max 9.150us, min 9.150us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=210): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 10.601us, max 10.601us, min 10.601us - ExecTime: avg 50.454us, max 50.454us, min 50.454us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 24.00 KB, max 24.00 KB, min 24.00 KB - OpenTime: avg 31.412us, max 31.412us, min 31.412us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 33.458ms, max 33.458ms, min 33.458ms Pipeline : 2(instance_num=1): AGGREGATION_SINK_OPERATOR (id=214): - CloseTime: avg 822ns, max 822ns, min 822ns - ExecTime: avg 342.916us, max 342.916us, min 342.916us - InputRows: sum 438, avg 438, max 438, min 438 - MemoryUsage: sum , avg , max , min - HashTable: sum 40.28 KB, avg 40.28 KB, max 40.28 KB, min 40.28 KB - PeakMemoryUsage: sum 784.28 KB, avg 784.28 KB, max 784.28 KB, min 784.28 KB - SerializeKeyArena: sum 744.00 KB, avg 744.00 KB, max 744.00 KB, min 744.00 KB - OpenTime: avg 163.46us, max 163.46us, min 163.46us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=213): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.595us, max 11.595us, min 11.595us - ExecTime: avg 55.328us, max 55.328us, min 55.328us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 30.00 KB, avg 30.00 KB, max 30.00 KB, min 30.00 KB - OpenTime: avg 34.229us, max 34.229us, min 34.229us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 438, avg 438, max 438, min 438 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 516.290ms, max 516.290ms, min 516.290ms Fragment 70: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=213,dst_id=213): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.258us, max 13.258us, min 13.258us - ExecTime: avg 62.0us, max 62.0us, min 62.0us - InputRows: sum 438, avg 438, max 438, min 438 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.458us, max 31.458us, min 31.458us - RowsProduced: sum 438, avg 438, max 438, min 438 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=212): - PlanInfo - STREAMING - output: partial_max(OWNER)[#2516] - group by: CHAT_ID - cardinality=2,299 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 9.726us, max 9.726us, min 9.726us - ExecTime: avg 334.243us, max 334.243us, min 334.243us - MemoryUsage: sum , avg , max , min - HashTable: sum 40.28 KB, avg 40.28 KB, max 40.28 KB, min 40.28 KB - PeakMemoryUsage: sum 784.28 KB, avg 784.28 KB, max 784.28 KB, min 784.28 KB - SerializeKeyArena: sum 744.00 KB, avg 744.00 KB, max 744.00 KB, min 744.00 KB - OpenTime: avg 75.165us, max 75.165us, min 75.165us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 438, avg 438, max 438, min 438 OLAP_SCAN_OPERATOR (id=211. table name = QYWX_GROUPCHAT_INFO): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_INFO(QYWX_GROUPCHAT_INFO), PREAGGREGATION: ON - PREDICATES: (IS_DELETED = 0) AND NAME like '%五谷磨房丨食疗养生群%' - runtime filters: RF068[min_max] -> CHAT_ID, RF069[bloom] -> CHAT_ID - partitions=1/1 (QYWX_GROUPCHAT_INFO), tablets=1/1, tabletList=18523 - cardinality=22996, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CHAT_ID, OWNER - project output tuple id: 208 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 45.405us, max 45.405us, min 45.405us - ExecTime: avg 11.587ms, max 11.587ms, min 11.587ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 579.425us, max 579.425us, min 579.425us - ProjectionTime: avg 15.666us, max 15.666us, min 15.666us - RowsProduced: sum 438, avg 438, max 438, min 438 - RuntimeFilterInfo: sum , avg , max , min - filter id = 69 filtered: sum 4.609K (4609), avg 4.609K (4609), max 4.609K (4609), min 4.609K (4609) - filter id = 69 input: sum 11.44K (11440), avg 11.44K (11440), max 11.44K (11440), min 11.44K (11440) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 10.898ms, max 10.898ms, min 10.898ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 116.00 KB, avg 116.00 KB, max 116.00 KB, min 116.00 KB Fragment 71: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=210,dst_id=210): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 16.967us, max 16.967us, min 16.967us - ExecTime: avg 68.768us, max 68.768us, min 68.768us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.167us, max 31.167us, min 31.167us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=209. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 206 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 49.513us, max 49.513us, min 49.513us - ExecTime: avg 20.754ms, max 20.754ms, min 20.754ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 211.170us, max 211.170us, min 211.170us - ProjectionTime: avg 6.174us, max 6.174us, min 6.174us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 20.422ms, max 20.422ms, min 20.422ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 72: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - BlocksProduced: sum 612, avg 204, max 204, min 204 - CloseTime: avg 13.802us, max 15.518us, min 11.767us - ExecTime: avg 204.538ms, max 295.98ms, min 144.136ms - InputRows: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 38.21 MB, avg 12.74 MB, max 13.03 MB, min 12.56 MB - OpenTime: avg 74.855us, max 83.773us, min 66.250us - RowsProduced: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=207. table name = DIM_CUSTOMER_ONLINE): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_ONLINE(DIM_CUSTOMER_ONLINE), PREAGGREGATION: ON - partitions=1/1 (DIM_CUSTOMER_ONLINE), tablets=3/3, tabletList=15145,15147,15149 - cardinality=2506017, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 618, avg 206, max 206, min 206 - CloseTime: avg 26.307us, max 32.194us, min 18.291us - ExecTime: avg 127.293ms, max 212.900ms, min 56.476ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 244.433us, max 276.756us, min 222.483us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 126.30ms, max 211.664ms, min 55.101ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 21.83 MB, avg 7.28 MB, max 7.28 MB, min 7.28 MB Fragment 73: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - BlocksProduced: sum 204, avg 17, max 24, min 12 - CloseTime: avg 13.704us, max 17.753us, min 11.278us - ExecTime: avg 15.914ms, max 107.881ms, min 181.30us - InputRows: sum 307.567K (307567), avg 25.63K (25630), max 62.352K (62352), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.96 MB, avg 1020.19 KB, max 2.50 MB, min 384.00 B - OpenTime: avg 69.989us, max 80.680us, min 56.356us - RowsProduced: sum 307.567K (307567), avg 25.63K (25630), max 62.352K (62352), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (CAST(ORDER_STATUS_ID AS DOUBLE) != 7) OR ORDER_STATUS_ID IS NULL AND (CAST(PAY_STATUS AS DOUBLE) = 1) AND (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CUS_ID, SUBMIT_DATE, TOTAL_FEE - project output tuple id: 203 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 153.33us, max 282.543us, min 104.210us - ExecTime: avg 242.392ms, max 379.188ms, min 114.274ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.153ms, max 44.820ms, min 216.248us - ProjectionTime: avg 119.579us, max 359.677us, min 4.695us - RowsProduced: sum 307.567K (307567), avg 25.63K (25630), max 62.352K (62352), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 233.805ms, max 358.814ms, min 113.262ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 10.33 MB, avg 881.67 KB, max 1.98 MB, min 92.00 KB Fragment 74: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - BlocksProduced: sum 120, avg 24, max 24, min 24 - CloseTime: avg 16.950us, max 20.250us, min 13.758us - ExecTime: avg 50.305ms, max 95.159ms, min 18.698ms - InputRows: sum 373.936K (373936), avg 74.787K (74787), max 78.716K (78716), min 71.341K (71341) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 37.68 MB, avg 7.54 MB, max 8.48 MB, min 6.80 MB - OpenTime: avg 94.717us, max 159.47us, min 71.535us - RowsProduced: sum 373.936K (373936), avg 74.787K (74787), max 78.716K (78716), min 71.341K (71341) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - PlanInfo - TABLE: ods_demo.QYWX_GROUPCHAT_MEMBER_CURRENT(QYWX_GROUPCHAT_MEMBER_CURRENT), PREAGGREGATION: ON - PREDICATES: UNIONID IS NOT NULL - partitions=1/1 (QYWX_GROUPCHAT_MEMBER_CURRENT), tablets=5/5, tabletList=15193,15195,15197 ... - cardinality=399083, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 36.18us, max 49.860us, min 29.496us - ExecTime: avg 75.667ms, max 255.671ms, min 15.361ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.256ms, max 20.298ms, min 224.518us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 373.936K (373936), avg 74.787K (74787), max 78.716K (78716), min 71.341K (71341) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 71.76ms, max 235.117ms, min 14.757ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 28.54 MB, avg 5.71 MB, max 6.03 MB, min 5.46 MB Fragment 75: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=202,dst_id=202): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 11.316us, max 14.137us, min 8.496us - ExecTime: avg 230.852us, max 304.802us, min 156.902us - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 26.720us, max 27.573us, min 25.867us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=201): - PlanInfo - output: sum(partial_sum(CHAT_CNT))[#2377], avg(partial_avg(cast(REPLY_PERCENTAGE as DECIMALV3(13, 4))))[#2378] - group by: USER_ID, STATIS_DATE - cardinality=2,045 - projections: USER_ID, CHAT_CNT, ifnull((CAST(avg(cast(REPLY_PERCENTAGE as DECIMALV3(13, 4))) AS DECIMALV3(38, 8)) / 100), 1.00000000), CAST(STATIS_DATE AS DOUBLE) - project output tuple id: 200 - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 701ns, max 714ns, min 689ns - ExecTime: avg 47.690ms, max 94.425ms, min 955.58us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 11.254us, max 12.687us, min 9.822us - ProjectionTime: avg 47.18ms, max 93.528ms, min 508.158us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 199.15ms, max 200.909ms, min 197.121ms Pipeline : 1(instance_num=2): AGGREGATION_SINK_OPERATOR (id=201): - CloseTime: avg 4.335us, max 6.790us, min 1.880us - ExecTime: avg 2.178ms, max 2.519ms, min 1.838ms - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - MemoryUsage: sum , avg , max , min - HashTable: sum 383.95 KB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 1.89 MB, avg 967.98 KB, max 967.98 KB, min 967.98 KB - SerializeKeyArena: sum 1.52 MB, avg 776.00 KB, max 776.00 KB, min 776.00 KB - OpenTime: avg 31.914us, max 40.189us, min 23.640us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=200): - PlanInfo - offset: 0 - BlocksProduced: sum 4, avg 2, max 2, min 2 - CloseTime: avg 13.761us, max 17.6us, min 10.516us - ExecTime: avg 73.519us, max 84.636us, min 62.402us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 720.00 KB, avg 360.00 KB, max 360.00 KB, min 360.00 KB - OpenTime: avg 28.337us, max 30.505us, min 26.169us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 184.850ms, max 194.314ms, min 175.387ms Fragment 76: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - BlocksProduced: sum 4, avg 2, max 2, min 2 - CloseTime: avg 13.866us, max 14.423us, min 13.310us - ExecTime: avg 846.924us, max 1.504ms, min 189.10us - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 755.00 KB, avg 377.50 KB, max 720.00 KB, min 35.00 KB - OpenTime: avg 34.754us, max 35.222us, min 34.287us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - PlanInfo - STREAMING - output: partial_sum(CHAT_CNT)[#2373], partial_avg(CAST(REPLY_PERCENTAGE AS DECIMALV3(13, 4)))[#2374] - group by: USER_ID, STATIS_DATE - cardinality=2,045 - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 91.335us, max 170.141us, min 12.530us - ExecTime: avg 3.612ms, max 6.876ms, min 348.451us - MemoryUsage: sum , avg , max , min - HashTable: sum 395.95 KB, avg 197.98 KB, max 383.98 KB, min 11.98 KB - PeakMemoryUsage: sum 1.92 MB, avg 981.98 KB, max 1.26 MB, min 675.98 KB - SerializeKeyArena: sum 1.53 MB, avg 784.00 KB, max 904.00 KB, min 664.00 KB - OpenTime: avg 32.945us, max 36.562us, min 29.329us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 HASH_JOIN_OPERATOR (id=198): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF060[min_max] <- USER_ID(21/32/2048), RF061[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=4,090 - vec output tuple id: 197 - output tuple id: 197 - vIntermediate tuple ids: 196 - hash output slot ids: 2352 2354 2361 2348 - projections: USER_ID, date_format(STAT_DATE, '%Y%m%d'), CHAT_CNT, REPLY_PERCENTAGE - project output tuple id: 197 - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 36.253us, max 49.445us, min 23.61us - ExecTime: avg 955.855us, max 1.645ms, min 266.47us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 68.00 KB, avg 34.00 KB, max 64.00 KB, min 4.00 KB - ProbeKeyArena: sum 68.00 KB, avg 34.00 KB, max 64.00 KB, min 4.00 KB - OpenTime: avg 15.1us, max 15.202us, min 14.800us - ProbeRows: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 - ProjectionTime: avg 442.749us, max 801.311us, min 84.188us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 46.799us, max 64.180us, min 29.419us - GetBlockFailedTime: sum 6, avg 3, max 3, min 3 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 280.00 KB, avg 140.00 KB, max 156.00 KB, min 124.00 KB - OpenTime: avg 2.47us, max 3.308us, min 786ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 7.867K (7867), min 350 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 149.483ms, max 150.500ms, min 148.465ms Pipeline : 1(instance_num=2): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 46.512us, max 67.395us, min 25.629us - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.353us, max 1.443us, min 1.264us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=197. table name = QYWX_USER_BEHAVIOR_DATA): - PlanInfo - TABLE: ods_demo.QYWX_USER_BEHAVIOR_DATA(QYWX_USER_BEHAVIOR_DATA), PREAGGREGATION: ON - PREDICATES: (date_format(STAT_DATE, '%Y%m%d') < '20240425') AND (date_format(STAT_DATE, '%Y%m%d') >= '20240101') - runtime filters: RF060[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF061[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=1/1 (QYWX_USER_BEHAVIOR_DATA), tablets=2/2, tabletList=21089,21091 - cardinality=9813610, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 112.302us, max 125.832us, min 98.772us - ExecTime: avg 115.891ms, max 128.370ms, min 103.413ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 772.262us, max 780.984us, min 763.540us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 25.084714M (25084714), avg 12.542357M (12542357), max 13.126246M (13126246), min 11.958468M (11958468) - filter id = -1 input: sum 25.297032M (25297032), avg 12.648516M (12648516), max 13.22161M (13221610), min 12.075422M (12075422) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 114.913ms, max 127.418ms, min 102.407ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 656.00 KB, avg 328.00 KB, max 376.00 KB, min 280.00 KB Pipeline : 2(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=198): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 113.887us, max 163.716us, min 64.58us - InputRows: sum 80, avg 40, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 620.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 2.00 KB, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 420.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 1.01 KB, max 2.02 KB, min 0.00 - OpenTime: avg 23.887us, max 31.238us, min 16.537us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 4.480ms, max 8.960ms, min 0ns EXCHANGE_OPERATOR (id=196): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 15.642us, max 21.75us, min 10.209us - ExecTime: avg 42.956us, max 58.663us, min 27.249us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 12.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 20.939us, max 26.0us, min 15.878us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 40, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 0ns, max 0ns, min 0ns Fragment 77: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=196,dst_id=196): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 15.963us, max 15.963us, min 15.963us - ExecTime: avg 81.709us, max 81.709us, min 81.709us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 45.960us, max 45.960us, min 45.960us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=195. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 194 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 65.59us, max 65.59us, min 65.59us - ExecTime: avg 1.323ms, max 1.323ms, min 1.323ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 307.828us, max 307.828us, min 307.828us - ProjectionTime: avg 8.762us, max 8.762us, min 8.762us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 893.381us, max 893.381us, min 893.381us VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 78: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.822us, max 23.227us, min 8.344us - ExecTime: avg 333.148us, max 408.564us, min 278.649us - InputRows: sum 1.844K (1844), avg 153, max 165, min 142 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 263.13 KB, avg 21.93 KB, max 23.44 KB, min 19.88 KB - OpenTime: avg 84.300us, max 109.886us, min 69.471us - RowsProduced: sum 1.844K (1844), avg 153, max 165, min 142 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=193): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#2328], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (PL_FLAG = '评论') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#2329], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (DZ_FLAG = '点赞') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#2330], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(9, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#2331], sum(partial_sum(TOTAL_FEE))[#2332] - group by: YMD, USER_ID - cardinality=774,219 - projections: count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(9, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), COMMENT_CUS_AMOUNT, CAST(YMD AS DOUBLE), USER_ID, COMMENT_NUM, count(DISTINCT CASE WHEN (PL_FLAG = '评论') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), count(DISTINCT CASE WHEN (DZ_FLAG = '点赞') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END) - project output tuple id: 192 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 611ns, max 1.33us, min 264ns - ExecTime: avg 115.77us, max 141.866us, min 92.801us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.690us, max 24.432us, min 4.939us - ProjectionTime: avg 43.123us, max 56.758us, min 26.322us - RowsProduced: sum 1.844K (1844), avg 153, max 165, min 142 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s151ms, max 4s206ms, min 4s122ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=193): - CloseTime: avg 1.428us, max 4.184us, min 435ns - ExecTime: avg 711.441us, max 2.92ms, min 309.328us - InputRows: sum 3.451K (3451), avg 287, max 334, min 234 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.72 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 22.85 MB, avg 1.90 MB, max 1.90 MB, min 1.90 MB - SerializeKeyArena: sum 22.78 MB, avg 1.90 MB, max 1.90 MB, min 1.90 MB - OpenTime: avg 43.981us, max 124.668us, min 27.364us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=192): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 7.725us, max 12.421us, min 3.393us - ExecTime: avg 123.832us, max 203.725us, min 75.363us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 286.63 KB, avg 23.88 KB, max 31.50 KB, min 16.25 KB - OpenTime: avg 18.69us, max 26.33us, min 13.230us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.451K (3451), avg 287, max 334, min 234 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s55ms, max 4s122ms, min 4s15ms Fragment 79: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.950us, max 27.634us, min 9.767us - ExecTime: avg 842.123us, max 6.126ms, min 305.4us - InputRows: sum 3.451K (3451), avg 287, max 324, min 260 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 589.75 KB, avg 49.15 KB, max 53.19 KB, min 43.69 KB - OpenTime: avg 76.734us, max 104.106us, min 60.686us - RowsProduced: sum 3.451K (3451), avg 287, max 324, min 260 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#2321], partial_multi_distinct_count(DISTINCT CASE WHEN (PL_FLAG = '评论') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#2322], partial_multi_distinct_count(DISTINCT CASE WHEN (DZ_FLAG = '点赞') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#2323], partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(9, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#2324], partial_sum(TOTAL_FEE)[#2325] - group by: YMD, USER_ID - cardinality=774,219 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 45.478us, max 134.627us, min 29.243us - ExecTime: avg 555.539us, max 929.415us, min 436.672us - MemoryUsage: sum , avg , max , min - HashTable: sum 143.72 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 22.92 MB, avg 1.91 MB, max 1.91 MB, min 1.91 MB - SerializeKeyArena: sum 22.78 MB, avg 1.90 MB, max 1.90 MB, min 1.90 MB - OpenTime: avg 44.64us, max 54.815us, min 32.761us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.451K (3451), avg 287, max 324, min 260 HASH_JOIN_OPERATOR (id=190): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - equal join conjunct: (expr_date_format(SUBMIT_DATE, '%Y%m%d') = YMD) - runtime filters: RF058[min_max] <- CUS_ID(1/1/2048), RF059[bloom] <- CUS_ID(1/1/2048) - cardinality=1,548,439 - vec output tuple id: 189 - output tuple id: 189 - vIntermediate tuple ids: 188 - hash output slot ids: 2224 2225 2226 2228 2229 2302 - projections: YMD, USER_ID, if((PL_FLAG = '评论'), CAST(EXTERNAL_USER_ID AS TEXT), NULL), EXTERNAL_USER_ID, if((DZ_FLAG = '点赞'), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((TOTAL_FEE > 0), CAST(EXTERNAL_USER_ID AS TEXT), NULL), TOTAL_FEE - project output tuple id: 189 - BlocksProduced: sum 66, avg 5, max 7, min 3 - CloseTime: avg 11.969us, max 22.632us, min 5.581us - ExecTime: avg 1.609ms, max 2.199ms, min 1.381ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.51 MB, avg 214.33 KB, max 276.00 KB, min 100.00 KB - ProbeKeyArena: sum 2.51 MB, avg 214.33 KB, max 276.00 KB, min 100.00 KB - OpenTime: avg 24.596us, max 49.75us, min 14.830us - ProbeRows: sum 338.667K (338667), avg 28.222K (28222), max 28.81K (28810), min 27.638K (27638) - ProjectionTime: avg 227.645us, max 358.994us, min 163.571us - RowsProduced: sum 4.339K (4339), avg 361, max 418, min 318 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s524ms, max 2s813ms, min 2s258ms EXCHANGE_OPERATOR (id=189): - PlanInfo - offset: 0 - BlocksProduced: sum 120, avg 10, max 10, min 10 - CloseTime: avg 9.88us, max 13.689us, min 6.180us - ExecTime: avg 148.647us, max 208.307us, min 110.607us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 15.17 MB, avg 1.26 MB, max 1.32 MB, min 1.13 MB - OpenTime: avg 21.976us, max 51.415us, min 10.688us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 28.81K (28810), min 27.638K (27638) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s234ms, max 1s235ms, min 1s230ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=190): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 142.170us, max 233.480us, min 86.529us - InputRows: sum 4.144K (4144), avg 345, max 392, min 312 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 368.58 KB, avg 30.71 KB, max 34.86 KB, min 27.78 KB - BuildKeyArena: sum 156.00 KB, avg 13.00 KB, max 16.00 KB, min 12.00 KB - HashTable: sum 44.34 KB, avg 3.69 KB, max 3.92 KB, min 3.53 KB - PeakMemoryUsage: sum 520.82 KB, avg 43.40 KB, max 50.77 KB, min 39.30 KB - OpenTime: avg 26.444us, max 59.3us, min 14.617us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=187): - PlanInfo - offset: 0 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 7.918us, max 19.591us, min 2.530us - ExecTime: avg 34.212us, max 46.338us, min 25.407us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 536.00 KB, avg 44.67 KB, max 49.50 KB, min 43.50 KB - OpenTime: avg 15.314us, max 17.895us, min 10.374us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.144K (4144), avg 345, max 392, min 312 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s0ms, max 4s3ms, min 3s989ms Fragment 80: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - BlocksProduced: sum 204, avg 17, max 24, min 12 - CloseTime: avg 11.272us, max 16.688us, min 7.744us - ExecTime: avg 11.357ms, max 75.10ms, min 125.218us - InputRows: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 15.15 MB, avg 1.26 MB, max 3.16 MB, min 384.00 B - OpenTime: avg 79.875us, max 131.570us, min 58.778us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - runtime filters: RF058[min_max] -> CUS_ID, RF059[bloom] -> CUS_ID - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CUS_ID, date_format(SUBMIT_DATE, '%Y%m%d'), TOTAL_FEE - project output tuple id: 187 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 116.104us, max 155.322us, min 80.179us - ExecTime: avg 129.594ms, max 157.116ms, min 114.579ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 3.26ms, max 33.36ms, min 164.657us - ProjectionTime: avg 7.329ms, max 34.153ms, min 3.883us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 118.975ms, max 141.709ms, min 100.236ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.90 MB, avg 1.07 MB, max 2.32 MB, min 160.00 KB Fragment 81: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=187,dst_id=187): - BlocksProduced: sum 12, avg 12, max 12, min 12 - CloseTime: avg 12.276us, max 12.276us, min 12.276us - ExecTime: avg 1.131ms, max 1.131ms, min 1.131ms - InputRows: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 536.00 KB, avg 536.00 KB, max 536.00 KB, min 536.00 KB - OpenTime: avg 76.500us, max 76.500us, min 76.500us - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=186): - PlanInfo - output: max(partial_max(if((TYPE = 1), '评论', NULL)))[#2222], max(partial_max(if((TYPE = 2), '点赞', NULL)))[#2223] - group by: YMD, MOMENT_USER_ID, CUS_ID, EXTERNAL_USER_ID - cardinality=1 - projections: PL_FLAG, DZ_FLAG, MOMENT_USER_ID, CUS_ID, EXTERNAL_USER_ID, YMD - project output tuple id: 185 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 857ns, max 857ns, min 857ns - ExecTime: avg 32.843ms, max 32.843ms, min 32.843ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.153us, max 7.153us, min 7.153us - ProjectionTime: avg 31.934ms, max 31.934ms, min 31.934ms - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 3s887ms, max 3s887ms, min 3s887ms Pipeline : 1(instance_num=1): AGGREGATION_SINK_OPERATOR (id=186): - CloseTime: avg 4.704us, max 4.704us, min 4.704us - ExecTime: avg 3.122ms, max 3.122ms, min 3.122ms - InputRows: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - MemoryUsage: sum , avg , max , min - HashTable: sum 191.98 KB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 1.95 MB, avg 1.95 MB, max 1.95 MB, min 1.95 MB - SerializeKeyArena: sum 1.76 MB, avg 1.76 MB, max 1.76 MB, min 1.76 MB - OpenTime: avg 18.717us, max 18.717us, min 18.717us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=185): - PlanInfo - offset: 0 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 9.535us, max 9.535us, min 9.535us - ExecTime: avg 69.658us, max 69.658us, min 69.658us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 864.00 KB, avg 864.00 KB, max 864.00 KB, min 864.00 KB - OpenTime: avg 15.302us, max 15.302us, min 15.302us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s837ms, max 3s837ms, min 3s837ms Fragment 82: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=185,dst_id=185): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 12.114us, max 12.114us, min 12.114us - ExecTime: avg 143.775us, max 143.775us, min 143.775us - InputRows: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.317us, max 31.317us, min 31.317us - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=184): - PlanInfo - STREAMING - output: partial_max(if((TYPE = 1), '评论', NULL))[#2216], partial_max(if((TYPE = 2), '点赞', NULL))[#2217] - group by: YMD, MOMENT_USER_ID, CUS_ID, EXTERNAL_USER_ID - cardinality=1 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 75.132us, max 75.132us, min 75.132us - ExecTime: avg 3.681ms, max 3.681ms, min 3.681ms - MemoryUsage: sum , avg , max , min - HashTable: sum 191.98 KB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 1.95 MB, avg 1.95 MB, max 1.95 MB, min 1.95 MB - SerializeKeyArena: sum 1.76 MB, avg 1.76 MB, max 1.76 MB, min 1.76 MB - OpenTime: avg 40.511us, max 40.511us, min 40.511us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) HASH_JOIN_OPERATOR (id=183): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = MOMENT_USER_ID) - runtime filters: RF056[min_max] <- MOMENT_USER_ID(1/1/2048), RF057[in_or_bloom] <- MOMENT_USER_ID(1/1/2048) - cardinality=1 - vec output tuple id: 182 - output tuple id: 182 - vIntermediate tuple ids: 181 - hash output slot ids: 2192 2188 2189 2190 2191 - projections: date_format(COMMENT_TIME, '%Y%m%d'), MOMENT_USER_ID, CUS_ID, EXTERNAL_USER_ID, TYPE - project output tuple id: 182 - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 5.577us, max 5.577us, min 5.577us - ExecTime: avg 1.686ms, max 1.686ms, min 1.686ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 4.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 20.722us, max 20.722us, min 20.722us - ProbeRows: sum 80, avg 80, max 80, min 80 - ProjectionTime: avg 341.264us, max 341.264us, min 341.264us - RowsProduced: sum 5.193K (5193), avg 5.193K (5193), max 5.193K (5193), min 5.193K (5193) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s286ms, max 2s286ms, min 2s286ms OLAP_SCAN_OPERATOR (id=182. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - runtime filters: RF056[min_max] -> CAST(USER_ID AS VARCHAR(100)), RF057[in_or_bloom] -> CAST(USER_ID AS VARCHAR(100)) - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 180 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 40.960us, max 40.960us, min 40.960us - ExecTime: avg 131.617ms, max 131.617ms, min 131.617ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 353.30us, max 353.30us, min 353.30us - ProjectionTime: avg 4.65us, max 4.65us, min 4.65us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 131.165ms, max 131.165ms, min 131.165ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Pipeline : 1(instance_num=1): HASH_JOIN_SINK_OPERATOR (id=183): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 12.592ms, max 12.592ms, min 12.592ms - InputRows: sum 29.505K (29505), avg 29.505K (29505), max 29.505K (29505), min 29.505K (29505) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.07 MB, avg 2.07 MB, max 2.07 MB, min 2.07 MB - BuildKeyArena: sum 440.00 KB, avg 440.00 KB, max 440.00 KB, min 440.00 KB - HashTable: sum 371.26 KB, avg 371.26 KB, max 371.26 KB, min 371.26 KB - PeakMemoryUsage: sum 2.86 MB, avg 2.86 MB, max 2.86 MB, min 2.86 MB - OpenTime: avg 45.727us, max 45.727us, min 45.727us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=181): - PlanInfo - offset: 0 - BlocksProduced: sum 1.812K (1812), avg 1.812K (1812), max 1.812K (1812), min 1.812K (1812) - CloseTime: avg 11.557us, max 11.557us, min 11.557us - ExecTime: avg 13.520ms, max 13.520ms, min 13.520ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 37.52 MB, avg 37.52 MB, max 37.52 MB, min 37.52 MB - OpenTime: avg 24.384us, max 24.384us, min 24.384us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 29.505K (29505), avg 29.505K (29505), max 29.505K (29505), min 29.505K (29505) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s413ms, max 2s413ms, min 2s413ms Fragment 83: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: sum 1.812K (1812), avg 453, max 456, min 451 - CloseTime: avg 11.605us, max 13.123us, min 8.972us - ExecTime: avg 8.535ms, max 14.335ms, min 2.921ms - InputRows: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 32.676us, max 47.371us, min 22.266us - RowsProduced: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=180): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF054[min_max] <- EXTERNAL_USER_ID(1/1/2048), RF055[bloom] <- EXTERNAL_USER_ID(1/1/2048) - cardinality=1 - vec output tuple id: 178 - output tuple id: 178 - vIntermediate tuple ids: 177 - hash output slot ids: 2128 2115 2119 2120 2121 - projections: MOMENT_USER_ID, TYPE, EXTERNAL_USER_ID, COMMENT_TIME, CUS_ID - project output tuple id: 178 - BlocksProduced: sum 1.812K (1812), avg 453, max 456, min 451 - CloseTime: avg 16.240us, max 22.135us, min 10.880us - ExecTime: avg 126.971ms, max 155.755ms, min 106.766ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.96 MB, avg 501.00 KB, max 552.00 KB, min 444.00 KB - ProbeKeyArena: sum 1.96 MB, avg 501.00 KB, max 552.00 KB, min 444.00 KB - OpenTime: avg 16.732us, max 20.925us, min 14.268us - ProbeRows: sum 8.318249M (8318249), avg 2.079562M (2079562), max 2.079796M (2079796), min 2.079268M (2079268) - ProjectionTime: avg 2.170ms, max 2.357ms, min 1.948ms - RowsProduced: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=179): - PlanInfo - offset: 0 - BlocksProduced: sum 1.818K (1818), avg 454, max 456, min 452 - CloseTime: avg 13.983us, max 18.729us, min 11.155us - ExecTime: avg 6.91ms, max 6.383ms, min 5.822ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 78.75 MB, avg 19.69 MB, max 20.16 MB, min 19.07 MB - OpenTime: avg 22.222us, max 31.20us, min 13.846us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.318249M (8318249), avg 2.079562M (2079562), max 2.079796M (2079796), min 2.079268M (2079268) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s903ms, max 2s34ms, min 1s625ms Pipeline : 1(instance_num=4): HASH_JOIN_SINK_OPERATOR (id=180): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.178ms, max 13.160ms, min 1.65ms - InputRows: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.82 MB, avg 466.17 KB, max 482.59 KB, min 426.18 KB - BuildKeyArena: sum 1.07 MB, avg 273.00 KB, max 284.00 KB, min 252.00 KB - HashTable: sum 368.10 KB, avg 92.03 KB, max 101.33 KB, min 65.03 KB - PeakMemoryUsage: sum 3.23 MB, avg 827.19 KB, max 863.92 KB, min 739.20 KB - OpenTime: avg 24.323us, max 33.332us, min 14.587us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=177): - PlanInfo - offset: 0 - BlocksProduced: sum 8, avg 2, max 2, min 2 - CloseTime: avg 12.386us, max 18.660us, min 6.455us - ExecTime: avg 74.938us, max 95.514us, min 56.439us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.84 MB, avg 728.00 KB, max 768.00 KB, min 608.00 KB - OpenTime: avg 19.684us, max 34.73us, min 11.990us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 720.829ms, max 721.842ms, min 719.476ms Fragment 84: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - BlocksProduced: sum 1.82K (1820), avg 455, max 456, min 454 - CloseTime: avg 12.622us, max 13.186us, min 11.497us - ExecTime: avg 284.337ms, max 371.202ms, min 202.798ms - InputRows: sum 8.318249M (8318249), avg 2.079562M (2079562), max 2.080998M (2080998), min 2.076163M (2076163) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 590.67 MB, avg 147.67 MB, max 149.22 MB, min 145.88 MB - OpenTime: avg 37.606us, max 45.937us, min 33.438us - RowsProduced: sum 8.318249M (8318249), avg 2.079562M (2079562), max 2.080998M (2080998), min 2.076163M (2076163) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF054[min_max] -> CAST(EXTERNAL_USER_ID AS VARCHAR(50)), RF055[bloom] -> CAST(EXTERNAL_USER_ID AS VARCHAR(50)) - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 43.126us, max 47.577us, min 39.253us - ExecTime: avg 323.739ms, max 357.109ms, min 265.736ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 159.289us, max 193.224us, min 131.961us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.318249M (8318249), avg 2.079562M (2079562), max 2.080998M (2080998), min 2.076163M (2076163) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 306.206ms, max 343.669ms, min 263.234ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 85: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=177,dst_id=177): - BlocksProduced: sum 8, avg 8, max 8, min 8 - CloseTime: avg 22.715us, max 22.715us, min 22.715us - ExecTime: avg 15.408ms, max 15.408ms, min 15.408ms - InputRows: sum 29.505K (29505), avg 29.505K (29505), max 29.505K (29505), min 29.505K (29505) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.84 MB, avg 2.84 MB, max 2.84 MB, min 2.84 MB - OpenTime: avg 40.255us, max 40.255us, min 40.255us - RowsProduced: sum 29.505K (29505), avg 29.505K (29505), max 29.505K (29505), min 29.505K (29505) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=176. table name = QYWX_MOMENT_COMMENT_LIST): - PlanInfo - TABLE: ods_demo.QYWX_MOMENT_COMMENT_LIST(QYWX_MOMENT_COMMENT_LIST), PREAGGREGATION: ON - PREDICATES: CAST(TYPE AS TEXT) IN ('1', '2') AND (date_format(COMMENT_TIME, '%Y%m%d') >= '20240101') AND EXTERNAL_USER_ID IS NOT NULL - partitions=1/1 (QYWX_MOMENT_COMMENT_LIST), tablets=1/1, tabletList=21703 - cardinality=834104, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 10, avg 10, max 10, min 10 - CloseTime: avg 54.758us, max 54.758us, min 54.758us - ExecTime: avg 412.285ms, max 412.285ms, min 412.285ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 198.160us, max 198.160us, min 198.160us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 29.505K (29505), avg 29.505K (29505), max 29.505K (29505), min 29.505K (29505) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 411.815ms, max 411.815ms, min 411.815ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 1.69 MB, avg 1.69 MB, max 1.69 MB, min 1.69 MB Fragment 86: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 10.496us, max 13.928us, min 8.738us - ExecTime: avg 238.908us, max 294.216us, min 191.474us - InputRows: sum 2.315K (2315), avg 192, max 216, min 164 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 165.19 KB, avg 13.77 KB, max 14.63 KB, min 12.56 KB - OpenTime: avg 76.74us, max 88.705us, min 57.851us - RowsProduced: sum 2.315K (2315), avg 192, max 216, min 164 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=174): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#2109], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#2110] - group by: STATIS_DATE, USER_ID - cardinality=387,109 - projections: USER_ID, count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), CAST(STATIS_DATE AS DOUBLE) - project output tuple id: 174 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 374ns, max 592ns, min 233ns - ExecTime: avg 76.445us, max 85.836us, min 66.619us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 6.982us, max 10.200us, min 4.932us - ProjectionTime: avg 28.198us, max 38.530us, min 21.660us - RowsProduced: sum 2.315K (2315), avg 192, max 216, min 164 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s607ms, max 4s617ms, min 4s592ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=174): - CloseTime: avg 798ns, max 1.250us, min 366ns - ExecTime: avg 409.985us, max 574.819us, min 317.361us - InputRows: sum 9.81K (9810), avg 817, max 958, min 733 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.72 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 10.85 MB, avg 925.98 KB, max 925.98 KB, min 925.98 KB - SerializeKeyArena: sum 10.78 MB, avg 920.00 KB, max 920.00 KB, min 920.00 KB - OpenTime: avg 31.868us, max 107.666us, min 16.769us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=173): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 3.892us, max 8.597us, min 1.519us - ExecTime: avg 90.705us, max 127.504us, min 68.582us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 313.13 KB, avg 26.09 KB, max 43.00 KB, min 10.25 KB - OpenTime: avg 20.42us, max 32.523us, min 10.657us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.81K (9810), avg 817, max 958, min 733 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s523ms, max 4s540ms, min 4s497ms Fragment 87: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.2us, max 13.859us, min 8.625us - ExecTime: avg 355.334us, max 387.436us, min 307.945us - InputRows: sum 9.81K (9810), avg 817, max 861, min 770 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 756.50 KB, avg 63.04 KB, max 64.00 KB, min 61.50 KB - OpenTime: avg 92.220us, max 150.171us, min 68.318us - RowsProduced: sum 9.81K (9810), avg 817, max 861, min 770 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=172): - PlanInfo - output: partial_multi_distinct_count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#2105], partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#2106] - group by: STATIS_DATE, USER_ID - cardinality=387,109 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 447ns, max 786ns, min 181ns - ExecTime: avg 170.493us, max 228.814us, min 126.710us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.75us, max 9.818us, min 5.375us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.81K (9810), avg 817, max 861, min 770 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s391ms, max 4s610ms, min 4s307ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=172): - CloseTime: avg 1.440us, max 2.716us, min 735ns - ExecTime: avg 697.500us, max 924.771us, min 586.344us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - MemoryUsage: sum , avg , max , min - HashTable: sum 287.72 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 11.25 MB, avg 959.98 KB, max 959.98 KB, min 959.98 KB - SerializeKeyArena: sum 10.97 MB, avg 936.00 KB, max 936.00 KB, min 936.00 KB - OpenTime: avg 26.967us, max 59.887us, min 18.828us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=171): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (STATIS_DATE = STATIS_DATE) - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF052[min_max] <- CUS_ID(982/1024/2048), RF053[bloom] <- CUS_ID(982/1024/2048) - cardinality=774,219 - vec output tuple id: 171 - output tuple id: 171 - vIntermediate tuple ids: 170 - hash output slot ids: 2007 2008 2009 2010 2090 - projections: STATIS_DATE, USER_ID, if((FLAG = '拉黑'), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((TOTAL_FEE > 0), CAST(EXTERNAL_USER_ID AS TEXT), NULL) - project output tuple id: 171 - BlocksProduced: sum 62, avg 5, max 6, min 5 - CloseTime: avg 13.110us, max 17.440us, min 6.727us - ExecTime: avg 4.335ms, max 36.346ms, min 1.138ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.08 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - ProbeKeyArena: sum 1.08 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - OpenTime: avg 18.127us, max 30.313us, min 12.295us - ProbeRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - ProjectionTime: avg 3.193ms, max 35.340ms, min 217.604us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s346ms, max 2s605ms, min 2s64ms AGGREGATION_OPERATOR (id=170): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#2090] - group by: STATIS_DATE, CUS_ID - cardinality=774,219 - BlocksProduced: sum 48, avg 4, max 4, min 4 - CloseTime: avg 1.808us, max 13.169us, min 556ns - ExecTime: avg 1.726ms, max 11.798ms, min 660.188us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 13.290us, max 28.530us, min 7.850us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 1s771ms, max 1s830ms, min 1s683ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=171): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 577.204us, max 818.22us, min 421.553us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.59 MB, avg 306.30 KB, max 378.25 KB, min 271.30 KB - BuildKeyArena: sum 1.08 MB, avg 92.33 KB, max 112.00 KB, min 84.00 KB - HashTable: sum 603.74 KB, avg 50.31 KB, max 56.26 KB, min 33.40 KB - PeakMemoryUsage: sum 5.21 MB, avg 444.94 KB, max 542.50 KB, min 384.69 KB - OpenTime: avg 21.81us, max 24.701us, min 15.612us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=166): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 7.998us, max 17.405us, min 2.749us - ExecTime: avg 137.633us, max 189.330us, min 103.265us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.13 MB, avg 352.34 KB, max 573.90 KB, min 242.62 KB - OpenTime: avg 19.849us, max 31.857us, min 12.186us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s218ms, max 4s260ms, min 4s172ms Pipeline : 3(instance_num=12): AGGREGATION_SINK_OPERATOR (id=170): - CloseTime: avg 3.950us, max 6.580us, min 1.949us - ExecTime: avg 5.158ms, max 15.743ms, min 3.335ms - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 383.98 KB, max 383.98 KB, min 383.98 KB - PeakMemoryUsage: sum 21.33 MB, avg 1.78 MB, max 1.78 MB, min 1.78 MB - SerializeKeyArena: sum 16.83 MB, avg 1.40 MB, max 1.40 MB, min 1.40 MB - OpenTime: avg 22.327us, max 52.139us, min 10.907us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=169): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 11.11us, max 19.876us, min 3.313us - ExecTime: avg 128.21us, max 182.57us, min 86.697us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.04 MB, avg 771.34 KB, max 841.50 KB, min 505.29 KB - OpenTime: avg 20.554us, max 54.299us, min 10.110us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s363ms, max 1s546ms, min 1s291ms Fragment 88: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 16.0us, max 30.369us, min 8.937us - ExecTime: avg 7.73ms, max 45.875ms, min 134.788us - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 840.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 77.290us, max 94.865us, min 55.457us - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#2087] - group by: STATIS_DATE, CUS_ID - cardinality=774,219 - BlocksProduced: sum 40, avg 3, max 8, min 0 - CloseTime: avg 181.69us, max 471.803us, min 582ns - ExecTime: avg 19.393ms, max 62.705ms, min 31.303us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 639.99 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 1.85 MB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 1.22 MB, max 2.93 MB, min 0.00 - OpenTime: avg 28.456us, max 40.566us, min 19.574us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - runtime filters: RF052[min_max] -> CUS_ID, RF053[bloom] -> CUS_ID - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: date_format(SUBMIT_DATE, '%Y%m%d'), CUS_ID, TOTAL_FEE - project output tuple id: 167 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 130.451us, max 183.754us, min 73.94us - ExecTime: avg 141.561ms, max 166.463ms, min 126.611ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.775ms, max 18.408ms, min 188.292us - ProjectionTime: avg 1.421ms, max 3.569ms, min 3.763us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 138.44ms, max 150.29ms, min 122.148ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.90 MB, avg 1.07 MB, max 2.32 MB, min 240.00 KB Fragment 89: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.948us, max 16.494us, min 8.455us - ExecTime: avg 1.414ms, max 2.753ms, min 885.774us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.17 MB, avg 441.60 KB, max 1.04 MB, min 335.88 KB - OpenTime: avg 79.437us, max 145.483us, min 60.326us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=165): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (STATIS_DATE = STATIS_DATE) - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - cardinality=982 - vec output tuple id: 165 - output tuple id: 165 - vIntermediate tuple ids: 164 - hash output slot ids: 1995 1996 1997 1806 1998 - projections: FLAG, STATIS_DATE, EXTERNAL_USER_ID, USER_ID, CUS_ID - project output tuple id: 165 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 9.579us, max 19.376us, min 4.855us - ExecTime: avg 1.803ms, max 4.183ms, min 1.165ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 696.00 KB, avg 58.00 KB, max 144.00 KB, min 24.00 KB - ProbeKeyArena: sum 696.00 KB, avg 58.00 KB, max 144.00 KB, min 24.00 KB - OpenTime: avg 17.662us, max 31.857us, min 11.370us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - ProjectionTime: avg 132.592us, max 250.379us, min 70.300us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 66.547us, max 94.669us, min 37.151us - GetBlockFailedTime: sum 46, avg 3, max 7, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.67 MB, avg 313.01 KB, max 550.11 KB, min 105.00 KB - OpenTime: avg 3.64us, max 24.261us, min 586ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s72ms, max 4s147ms, min 4s14ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 102.465us, max 160.27us, min 49.730us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.74us, max 9.664us, min 925ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - PlanInfo - group by: USER_ID, STATIS_DATE, EXTERNAL_USER_ID, CUS_ID - cardinality=982 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 6.293us, max 14.905us, min 216ns - ExecTime: avg 4.539ms, max 30.205ms, min 1.949ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 6.212us, max 8.929us, min 3.328us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) EXCHANGE_OPERATOR (id=163): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 8.640us, max 13.836us, min 3.169us - ExecTime: avg 2.941ms, max 33.767ms, min 101.827us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.32 MB, avg 283.00 KB, max 358.00 KB, min 210.00 KB - OpenTime: avg 18.343us, max 28.425us, min 9.654us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s24ms, max 4s39ms, min 4s16ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=165): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 752.653us, max 8.687ms, min 12.402us - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 52.587K (52587), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.71 MB, avg 316.68 KB, max 3.71 MB, min 0.00 - BuildKeyArena: sum 3.16 MB, avg 270.00 KB, max 3.16 MB, min 0.00 - HashTable: sum 461.43 KB, avg 38.45 KB, max 461.43 KB, min 0.00 - PeakMemoryUsage: sum 7.32 MB, avg 624.79 KB, max 7.32 MB, min 0.00 - OpenTime: avg 15.881us, max 83.108us, min 7.892us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 3s66ms, max 3s350ms, min 0ns EXCHANGE_OPERATOR (id=149): - PlanInfo - offset: 0 - BlocksProduced: sum 492, avg 41, max 492, min 0 - CloseTime: avg 8.643us, max 16.934us, min 2.696us - ExecTime: avg 246.494us, max 2.662ms, min 16.246us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.35 MB, avg 797.74 KB, max 9.35 MB, min 0.00 - OpenTime: avg 16.416us, max 32.281us, min 8.788us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 52.587K (52587), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 246.418ms, max 2s957ms, min 0ns Fragment 90: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.609us, max 14.849us, min 10.560us - ExecTime: avg 8.874ms, max 22.135ms, min 5.728ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.39 MB, avg 460.00 KB, max 920.00 KB, min 408.00 KB - OpenTime: avg 77.328us, max 105.924us, min 56.347us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - PlanInfo - STREAMING - group by: USER_ID, STATIS_DATE, EXTERNAL_USER_ID, CUS_ID - cardinality=982 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.690us, max 10.311us, min 1.712us - ExecTime: avg 5.230ms, max 16.558ms, min 3.670ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.934us, max 8.108us, min 3.339us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) HASH_JOIN_OPERATOR (id=161): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF050[min_max] <- CUS_ID(1490/2048/2048), RF051[bloom] <- CUS_ID(1490/2048/2048) - cardinality=1,965 - vec output tuple id: 161 - output tuple id: 161 - vIntermediate tuple ids: 160 - hash output slot ids: 1907 1908 1909 1910 - projections: USER_ID, date_format(ADD_TIME, '%Y%m%d'), EXTERNAL_USER_ID, CUS_ID - project output tuple id: 161 - BlocksProduced: sum 8.757K (8757), avg 729, max 738, min 719 - CloseTime: avg 8.258us, max 13.684us, min 5.211us - ExecTime: avg 72.849ms, max 107.247ms, min 56.911ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 829.53 KB, avg 69.13 KB, max 69.28 KB, min 68.95 KB - ProbeKeyArena: sum 829.53 KB, avg 69.13 KB, max 69.28 KB, min 68.95 KB - OpenTime: avg 16.431us, max 29.145us, min 9.720us - ProbeRows: sum 39.547397M (39547397), avg 3.295616M (3295616), max 3.296777M (3296777), min 3.294982M (3294982) - ProjectionTime: avg 5.164ms, max 11.725ms, min 3.236ms - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s253ms, max 2s392ms, min 2s22ms EXCHANGE_OPERATOR (id=160): - PlanInfo - offset: 0 - BlocksProduced: sum 9.446K (9446), avg 787, max 789, min 785 - CloseTime: avg 7.565us, max 13.31us, min 3.832us - ExecTime: avg 17.729ms, max 61.244ms, min 4.958ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 231.18 MB, avg 19.26 MB, max 19.57 MB, min 18.92 MB - OpenTime: avg 20.500us, max 53.913us, min 13.258us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547397M (39547397), avg 3.295616M (3295616), max 3.296777M (3296777), min 3.294982M (3294982) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s101ms, max 1s220ms, min 988.593ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=161): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 460.426us, max 1.240ms, min 323.163us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.18 MB, avg 270.95 KB, max 621.30 KB, min 233.99 KB - BuildKeyArena: sum 754.22 KB, avg 62.85 KB, max 144.09 KB, min 54.28 KB - HashTable: sum 523.74 KB, avg 43.64 KB, max 109.03 KB, min 32.97 KB - PeakMemoryUsage: sum 4.42 MB, avg 377.44 KB, max 874.42 KB, min 321.23 KB - OpenTime: avg 21.495us, max 41.778us, min 12.792us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=158): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 6.761us, max 13.436us, min 2.45us - ExecTime: avg 141.196us, max 174.316us, min 107.716us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.79 MB, avg 323.50 KB, max 363.00 KB, min 280.00 KB - OpenTime: avg 12.729us, max 15.674us, min 9.529us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s198ms, max 3s262ms, min 3s185ms Fragment 91: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - BlocksProduced: sum 9.453K (9453), avg 787, max 1.188K (1188), min 216 - CloseTime: avg 13.520us, max 16.776us, min 9.985us - ExecTime: avg 200.453ms, max 599.384ms, min 49.394ms - InputRows: sum 39.547397M (39547397), avg 3.295616M (3295616), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 509.13 MB, avg 42.43 MB, max 64.69 MB, min 10.47 MB - OpenTime: avg 79.417us, max 149.338us, min 60.440us - RowsProduced: sum 39.547397M (39547397), avg 3.295616M (3295616), max 4.97661M (4976610), min 876.719K (876719) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF050[min_max] -> CUS_ID, RF051[bloom] -> CUS_ID - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 58.941us, max 102.131us, min 19.675us - ExecTime: avg 144.810ms, max 211.358ms, min 105.846ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 198.385us, max 295.652us, min 121.485us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547397M (39547397), avg 3.295616M (3295616), max 4.97661M (4976610), min 876.719K (876719) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 140.534ms, max 209.184ms, min 100.804ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 217.51 MB, avg 18.13 MB, max 26.86 MB, min 7.63 MB Fragment 92: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 14.656us, max 23.739us, min 9.636us - ExecTime: avg 6.568ms, max 29.821ms, min 4.20ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.07 MB, avg 432.67 KB, max 437.00 KB, min 423.00 KB - OpenTime: avg 88.378us, max 189.380us, min 56.951us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=157): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF048[min_max] <- EXTERNAL_USER_ID(1490/2048/2048), RF049[bloom] <- EXTERNAL_USER_ID(1490/2048/2048) - cardinality=1,490 - vec output tuple id: 158 - output tuple id: 158 - vIntermediate tuple ids: 157 - hash output slot ids: 1841 1842 1843 1847 - projections: CUS_ID, EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 158 - BlocksProduced: sum 2.003K (2003), avg 166, max 169, min 165 - CloseTime: avg 15.770us, max 41.694us, min 5.199us - ExecTime: avg 39.377ms, max 59.754ms, min 32.426ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.95 MB, avg 422.33 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.95 MB, avg 422.33 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 14.713us, max 23.984us, min 9.488us - ProbeRows: sum 8.341967M (8341967), avg 695.163K (695163), max 696.49K (696490), min 694.113K (694113) - ProjectionTime: avg 685.507us, max 747.590us, min 622.543us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=156): - PlanInfo - offset: 0 - BlocksProduced: sum 1.997K (1997), avg 166, max 168, min 165 - CloseTime: avg 9.493us, max 13.691us, min 3.424us - ExecTime: avg 3.80ms, max 9.215ms, min 2.171ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 181.63 MB, avg 15.14 MB, max 19.85 MB, min 9.30 MB - OpenTime: avg 21.906us, max 97.890us, min 10.344us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.341967M (8341967), avg 695.163K (695163), max 696.49K (696490), min 694.113K (694113) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s66ms, max 2s256ms, min 1s872ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=157): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 5.154ms, max 29.980ms, min 648.620us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.76 MB, avg 235.60 KB, max 242.12 KB, min 226.88 KB - BuildKeyArena: sum 1.73 MB, avg 147.33 KB, max 152.00 KB, min 144.00 KB - HashTable: sum 619.74 KB, avg 51.64 KB, max 52.19 KB, min 50.92 KB - PeakMemoryUsage: sum 5.05 MB, avg 430.57 KB, max 442.30 KB, min 417.79 KB - OpenTime: avg 22.273us, max 32.455us, min 10.852us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=154): - PlanInfo - offset: 0 - BlocksProduced: sum 84, avg 7, max 7, min 7 - CloseTime: avg 9.664us, max 17.440us, min 5.0us - ExecTime: avg 84.700us, max 103.661us, min 62.864us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.25 MB, avg 192.24 KB, max 244.99 KB, min 114.92 KB - OpenTime: avg 15.353us, max 27.229us, min 9.11us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 474.582ms, max 523.443ms, min 442.170ms Fragment 93: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - BlocksProduced: sum 2.0K (2000), avg 500, max 502, min 497 - CloseTime: avg 15.956us, max 23.917us, min 12.417us - ExecTime: avg 295.770ms, max 306.807ms, min 280.52ms - InputRows: sum 8.341967M (8341967), avg 2.085491M (2085491), max 2.086954M (2086954), min 2.082064M (2082064) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 643.02 MB, avg 160.75 MB, max 161.56 MB, min 159.90 MB - OpenTime: avg 65.968us, max 68.241us, min 60.554us - RowsProduced: sum 8.341967M (8341967), avg 2.085491M (2085491), max 2.086954M (2086954), min 2.082064M (2082064) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=155. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF048[min_max] -> EXTERNAL_USER_ID, RF049[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 32.480us, max 35.457us, min 29.994us - ExecTime: avg 386.198ms, max 534.164ms, min 290.775ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 298.100us, max 343.935us, min 254.926us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.341967M (8341967), avg 2.085491M (2085491), max 2.086954M (2086954), min 2.082064M (2082064) - RuntimeFilterInfo: sum , avg , max , min - filter id = 49 filtered: sum 0, avg 0, max 0, min 0 - filter id = 49 input: sum 829.056K (829056), avg 207.264K (207264), max 207.264K (207264), min 207.264K (207264) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 375.841ms, max 500.346ms, min 288.165ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 94: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 10.948us, max 13.966us, min 7.621us - ExecTime: avg 959.82us, max 1.967ms, min 140.233us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.09 MB, avg 348.85 KB, max 684.00 KB, min 0.00 - OpenTime: avg 85.124us, max 153.101us, min 61.338us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=153): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF046[min_max] <- USER_ID(21/32/2048), RF047[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=1,490 - vec output tuple id: 155 - output tuple id: 155 - vIntermediate tuple ids: 154 - hash output slot ids: 1834 1835 1836 - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 155 - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 9.448us, max 22.538us, min 1.682us - ExecTime: avg 661.194us, max 1.520ms, min 26.603us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 428.00 KB, avg 35.67 KB, max 64.00 KB, min 0.00 - ProbeKeyArena: sum 428.00 KB, avg 35.67 KB, max 64.00 KB, min 0.00 - OpenTime: avg 18.615us, max 70.240us, min 9.824us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - ProjectionTime: avg 149.250us, max 342.69us, min 5.105us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 17.631us, max 109.512us, min 1.528us - GetBlockFailedTime: sum 26, avg 2, max 7, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.12 MB, avg 180.67 KB, max 640.00 KB, min 0.00 - OpenTime: avg 1.412us, max 5.882us, min 632ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 380.31ms, max 433.621ms, min 302.539ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 24.858us, max 70.138us, min 5.820us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.580us, max 3.390us, min 1.40us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (EXTERNAL_USER_DELETE_FLAG = 0) AND (USER_DELETE_FLAG = 0) AND (date_format(ADD_TIME, '%Y%m%d') >= '20240101') - runtime filters: RF046[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF047[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 153 - BlocksProduced: sum 13, avg 1, max 7, min 0 - CloseTime: avg 46.223us, max 73.113us, min 28.759us - ExecTime: avg 207.284ms, max 400.706ms, min 100.156ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.335ms, max 11.80ms, min 333.796us - ProjectionTime: avg 109.663us, max 811.849us, min 1.405us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 205.748ms, max 400.180ms, min 99.639ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 4.16 MB, avg 355.00 KB, max 1.84 MB, min 76.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=153): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 41.775us, max 123.110us, min 24.992us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 18.749us, max 30.370us, min 14.866us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=151): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 5.486us, max 10.882us, min 2.84us - ExecTime: avg 25.284us, max 36.893us, min 16.863us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 18.657us, max 25.60us, min 13.350us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 136.275us, max 1.635ms, min 0ns Fragment 95: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=151,dst_id=151): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 16.720us, max 16.720us, min 16.720us - ExecTime: avg 65.82us, max 65.82us, min 65.82us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 27.990us, max 27.990us, min 27.990us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=150. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 151 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 37.985us, max 37.985us, min 37.985us - ExecTime: avg 1.314ms, max 1.314ms, min 1.314ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 236.362us, max 236.362us, min 236.362us - ProjectionTime: avg 6.520us, max 6.520us, min 6.520us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 977.795us, max 977.795us, min 977.795us VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 96: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 13.641us, max 21.402us, min 9.169us - ExecTime: avg 394.67us, max 432.438us, min 342.299us - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 29.151us, max 61.458us, min 19.715us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=148): - PlanInfo - output: min(partial_min(USER_BLOCKING_TIME))[#1801], min(partial_min(EXTERNAL_BLOCKING_TIME))[#1802] - group by: EXTERNAL_USER_ID, USER_ID - having: (date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d') >= '20240101') - cardinality=11,923 - projections: date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d'), EXTERNAL_USER_ID, USER_ID, '拉黑' - project output tuple id: 149 - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 811ns, max 1.68us, min 493ns - ExecTime: avg 26.896ms, max 47.734ms, min 21.388ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 11.83us, max 21.904us, min 5.254us - ProjectionTime: avg 1.52ms, max 1.261ms, min 943.31us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s977ms, max 3s130ms, min 2s933ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=148): - CloseTime: avg 8.724us, max 20.842us, min 3.998us - ExecTime: avg 165.820ms, max 252.38ms, min 118.779ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.983K (163983), min 162.829K (162829) - MemoryUsage: sum , avg , max , min - HashTable: sum 72.00 MB, avg 6.00 MB, max 6.00 MB, min 6.00 MB - PeakMemoryUsage: sum 310.50 MB, avg 25.87 MB, max 25.87 MB, min 25.87 MB - SerializeKeyArena: sum 238.50 MB, avg 19.88 MB, max 19.88 MB, min 19.88 MB - OpenTime: avg 28.113us, max 55.426us, min 15.694us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=147): - PlanInfo - offset: 0 - BlocksProduced: sum 554, avg 46, max 47, min 45 - CloseTime: avg 12.513us, max 27.335us, min 6.730us - ExecTime: avg 2.319ms, max 13.832ms, min 1.103ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 49.97 MB, avg 4.16 MB, max 9.00 MB, min 2.81 MB - OpenTime: avg 20.695us, max 53.747us, min 12.831us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.983K (163983), min 162.829K (162829) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s449ms, max 1s919ms, min 1s203ms Fragment 97: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - BlocksProduced: sum 557, avg 46, max 48, min 36 - CloseTime: avg 15.965us, max 21.262us, min 12.920us - ExecTime: avg 78.161ms, max 196.972ms, min 33.724ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 218.80 MB, avg 18.23 MB, max 19.88 MB, min 15.63 MB - OpenTime: avg 80.627us, max 92.909us, min 66.18us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - PlanInfo - STREAMING - output: partial_min(USER_BLOCKING_TIME)[#1797], partial_min(EXTERNAL_BLOCKING_TIME)[#1798] - group by: EXTERNAL_USER_ID, USER_ID - cardinality=11,923 - BlocksProduced: sum 532, avg 44, max 49, min 39 - CloseTime: avg 556.777us, max 706.400us, min 498.265us - ExecTime: avg 80.542ms, max 173.929ms, min 35.524ms - MemoryUsage: sum , avg , max , min - HashTable: sum 18.00 MB, avg 1.50 MB, max 1.50 MB, min 1.50 MB - PeakMemoryUsage: sum 135.75 MB, avg 11.31 MB, max 11.31 MB, min 11.31 MB - SerializeKeyArena: sum 117.75 MB, avg 9.81 MB, max 9.81 MB, min 9.81 MB - OpenTime: avg 30.139us, max 41.169us, min 21.233us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) HASH_JOIN_OPERATOR (id=145): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF044[min_max] <- USER_ID(21/32/2048), RF045[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=11,923 - vec output tuple id: 146 - output tuple id: 146 - vIntermediate tuple ids: 145 - hash output slot ids: 1782 1783 1784 1785 - projections: EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME - project output tuple id: 146 - BlocksProduced: sum 559, avg 46, max 51, min 42 - CloseTime: avg 23.957us, max 35.22us, min 17.580us - ExecTime: avg 60.732ms, max 166.176ms, min 14.669ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.35 MB, avg 115.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.35 MB, avg 115.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 16.554us, max 35.372us, min 12.148us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) - ProjectionTime: avg 6.703ms, max 45.229ms, min 1.957ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: sum 559, avg 46, max 51, min 42 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 475.312us, max 521.580us, min 405.675us - GetBlockFailedTime: sum 165, avg 13, max 21, min 7 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 45.04 MB, avg 3.75 MB, max 7.05 MB, min 1.92 MB - OpenTime: avg 1.88us, max 2.801us, min 691ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.847K (179847), min 146.488K (146488) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s271ms, max 1s659ms, min 880.642ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 450.945us, max 579.46us, min 274.734us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 179.898K (179898), min 148.101K (148101) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.336us, max 2.135us, min 1.77us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=144): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = WORKER_ID) - cardinality=13,008,209 - vec output tuple id: 144 - output tuple id: 144 - vIntermediate tuple ids: 143 - hash output slot ids: 1770 1771 1758 1759 - projections: EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME - project output tuple id: 144 - BlocksProduced: sum 559, avg 46, max 52, min 42 - CloseTime: avg 22.196us, max 34.716us, min 13.28us - ExecTime: avg 50.544ms, max 115.286ms, min 14.226ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.04 MB, avg 88.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.04 MB, avg 88.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 14.905us, max 27.505us, min 8.924us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 179.898K (179898), min 148.101K (148101) - ProjectionTime: avg 12.243ms, max 102.786ms, min 3.186ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.898K (179898), min 148.101K (148101) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 559, avg 46, max 52, min 42 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 301.648us, max 392.559us, min 231.338us - GetBlockFailedTime: sum 221, avg 18, max 24, min 14 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.73 MB, avg 2.23 MB, max 2.80 MB, min 1.73 MB - OpenTime: avg 497ns, max 603ns, min 437ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 179.898K (179898), min 148.101K (148101) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 923.527ms, max 1s282ms, min 478.67ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.966ms, max 39.361ms, min 40.847us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.293us, max 2.137us, min 920ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - runtime filters: RF044[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF045[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 559, avg 46, max 114, min 0 - CloseTime: avg 41.553us, max 62.724us, min 23.864us - ExecTime: avg 573.332ms, max 988.990ms, min 99.925ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.465ms, max 12.445ms, min 246.426us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 566.636ms, max 987.433ms, min 99.523ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.75 MB, avg 3.40 MB, max 7.01 MB, min 112.00 KB Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=145): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 58.663us, max 171.893us, min 23.464us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 22.356us, max 73.476us, min 12.249us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 510.61us, max 1.592ms, min 0ns EXCHANGE_OPERATOR (id=140): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 16.30us, max 81.699us, min 3.236us - ExecTime: avg 39.514us, max 104.61us, min 20.560us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 21.266us, max 33.848us, min 16.706us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 0ns, max 0ns, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=144): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 601.989us, max 6.993ms, min 14.235us - InputRows: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 549.72 KB, avg 45.81 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 1.09 MB, avg 92.67 KB, max 1.09 MB, min 0.00 - HashTable: sum 426.31 KB, avg 35.53 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 2.04 MB, avg 173.67 KB, max 2.04 MB, min 0.00 - OpenTime: avg 9.613us, max 14.388us, min 6.5us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 9.120ms, max 14.966ms, min 0ns EXCHANGE_OPERATOR (id=142): - PlanInfo - offset: 0 - BlocksProduced: sum 11, avg 0, max 11, min 0 - CloseTime: avg 6.775us, max 10.800us, min 3.592us - ExecTime: avg 29.828us, max 129.336us, min 13.545us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 700.00 KB, avg 58.33 KB, max 700.00 KB, min 0.00 - OpenTime: avg 13.982us, max 22.551us, min 9.64us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 0ns, max 0ns, min 0ns Fragment 98: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=142,dst_id=142): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 18.998us, max 18.998us, min 18.998us - ExecTime: avg 965.463us, max 965.463us, min 965.463us - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 41.586us, max 41.586us, min 41.586us - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=141. table name = DIM_WORKER): - PlanInfo - TABLE: ods_demo.DIM_WORKER(DIM_WORKER), PREAGGREGATION: ON - partitions=1/1 (DIM_WORKER), tablets=1/1, tabletList=21815 - cardinality=43597, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 25.513us, max 25.513us, min 25.513us - ExecTime: avg 5.489ms, max 5.489ms, min 5.489ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 194.830us, max 194.830us, min 194.830us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 5.114ms, max 5.114ms, min 5.114ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 724.00 KB, avg 724.00 KB, max 724.00 KB, min 724.00 KB Fragment 99: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=140,dst_id=140): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.222us, max 14.222us, min 14.222us - ExecTime: avg 51.315us, max 51.315us, min 51.315us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 22.286us, max 22.286us, min 22.286us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=139. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 140 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 33.250us, max 33.250us, min 33.250us - ExecTime: avg 979.376us, max 979.376us, min 979.376us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 189.527us, max 189.527us, min 189.527us - ProjectionTime: avg 4.209us, max 4.209us, min 4.209us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 712.552us, max 712.552us, min 712.552us VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 100: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.598us, max 23.561us, min 8.931us - ExecTime: avg 160.430us, max 177.18us, min 134.322us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 77.105us, max 98.408us, min 55.959us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=137): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (TOTAL_FEE > cast(0 as DECIMALV3(38, 0)))) THEN CUS_ID ELSE NULL END))[#1712], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (FLAG = '拉黑')) THEN CUS_ID ELSE NULL END))[#1713] - group by: YMD, USER_ID - cardinality=585,369 - projections: USER_ID, count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (TOTAL_FEE > cast(0 as DECIMALV3(38, 0)))) THEN CUS_ID ELSE NULL END), count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (FLAG = '拉黑')) THEN CUS_ID ELSE NULL END), CAST(YMD AS DOUBLE) - project output tuple id: 138 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 407ns, max 741ns, min 163ns - ExecTime: avg 24.335us, max 42.592us, min 14.222us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.707us, max 18.986us, min 4.956us - ProjectionTime: avg 5.406us, max 7.120us, min 4.132us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s278ms, max 4s310ms, min 4s260ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=137): - CloseTime: avg 783ns, max 4.50us, min 279ns - ExecTime: avg 32.28us, max 61.677us, min 18.750us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - HashTable: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - SerializeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 28.29us, max 59.2us, min 13.433us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=136): - PlanInfo - offset: 0 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.718us, max 12.611us, min 2.70us - ExecTime: avg 31.297us, max 85.927us, min 18.268us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 39.80 KB, avg 3.32 KB, max 3.32 KB, min 3.32 KB - OpenTime: avg 23.802us, max 81.384us, min 12.79us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s225ms, max 4s228ms, min 4s204ms Fragment 101: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.883us, max 18.885us, min 8.605us - ExecTime: avg 185.277us, max 218.85us, min 140.119us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 82.205us, max 108.234us, min 66.149us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (TOTAL_FEE > cast(0 as DECIMALV3(38, 0)))) THEN CUS_ID ELSE NULL END)[#1708], partial_multi_distinct_count(DISTINCT CASE WHEN ((FLAG = '外呼') AND (FLAG = '拉黑')) THEN CUS_ID ELSE NULL END)[#1709] - group by: YMD, USER_ID - cardinality=585,369 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 1.280us, max 2.355us, min 669ns - ExecTime: avg 55.819us, max 78.768us, min 40.646us - MemoryUsage: sum , avg , max , min - HashTable: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - SerializeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 38.434us, max 59.145us, min 26.20us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 HASH_JOIN_OPERATOR (id=134): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (YMD = YMD) - equal join conjunct: (CUS_ID = CUS_ID) - equal join conjunct: (USER_ID = USER_ID) - cardinality=1,170,738 - vec output tuple id: 135 - output tuple id: 135 - vIntermediate tuple ids: 134 - hash output slot ids: 1688 1689 1690 1691 1692 1390 - projections: YMD, USER_ID, if((FLAG = '外呼') AND (FLAG = '拉黑'), CUS_ID, NULL), if((FLAG = '外呼') AND (TOTAL_FEE > 0), CUS_ID, NULL) - project output tuple id: 135 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 2.287us, max 3.10us, min 1.699us - ExecTime: avg 34.233us, max 46.703us, min 25.202us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.58us, max 31.786us, min 12.219us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 7.394us, max 15.542us, min 4.511us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 432.247ms, max 501.919ms, min 269.70ms HASH_JOIN_OPERATOR (id=133): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (YMD = YMD) - equal join conjunct: (CUS_ID = CUS_ID) - cardinality=1,170,738 - vec output tuple id: 133 - output tuple id: 133 - vIntermediate tuple ids: 132 - hash output slot ids: 1680 1677 1469 1678 1679 - projections: USER_ID, TOTAL_FEE, CUS_ID, FLAG, YMD - project output tuple id: 133 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 2.958us, max 4.81us, min 2.249us - ExecTime: avg 32.288us, max 45.845us, min 20.729us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 12.532us, max 16.903us, min 8.131us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 12.173us, max 22.110us, min 6.792us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=132): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (YMD = YMD) - equal join conjunct: (CUS_ID = CUS_ID) - cardinality=1,170,738 - vec output tuple id: 131 - output tuple id: 131 - vIntermediate tuple ids: 130 - hash output slot ids: 1668 1669 1670 1577 - projections: USER_ID, CUS_ID, FLAG, YMD - project output tuple id: 131 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 3.880us, max 4.402us, min 2.666us - ExecTime: avg 36.184us, max 48.127us, min 20.207us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - ProbeKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 14.480us, max 29.212us, min 6.960us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 11.579us, max 15.397us, min 6.613us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s453ms, max 1s484ms, min 1s401ms EXCHANGE_OPERATOR (id=131): - PlanInfo - offset: 0 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 9.542us, max 20.391us, min 4.178us - ExecTime: avg 32.829us, max 45.335us, min 24.801us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.457us, max 34.596us, min 13.363us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s190ms, max 2s198ms, min 2s175ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=134): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 574.86us, max 944.136us, min 429.438us - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 6.288K (6288), min 3.789K (3789) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.36 MB, avg 201.13 KB, max 288.58 KB, min 173.90 KB - BuildKeyArena: sum 1.82 MB, avg 155.67 KB, max 220.00 KB, min 136.00 KB - HashTable: sum 589.51 KB, avg 49.13 KB, max 56.57 KB, min 46.81 KB - PeakMemoryUsage: sum 4.71 MB, avg 401.91 KB, max 561.14 KB, min 352.70 KB - OpenTime: avg 14.629us, max 40.128us, min 8.134us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=111): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 8.449us, max 18.549us, min 3.992us - ExecTime: avg 704.443us, max 6.933ms, min 108.417us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.66 MB, avg 141.83 KB, max 234.00 KB, min 84.00 KB - OpenTime: avg 14.482us, max 23.353us, min 8.217us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 6.288K (6288), min 3.789K (3789) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s994ms, max 4s63ms, min 3s951ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=133): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.134ms, max 1.611ms, min 710.400us - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 5.67 MB, avg 483.75 KB, max 489.14 KB, min 478.47 KB - BuildKeyArena: sum 2.98 MB, avg 254.33 KB, max 256.00 KB, min 252.00 KB - HashTable: sum 1.33 MB, avg 113.62 KB, max 114.18 KB, min 113.08 KB - PeakMemoryUsage: sum 9.93 MB, avg 847.70 KB, max 855.31 KB, min 839.55 KB - OpenTime: avg 18.718us, max 82.25us, min 4.691us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=115): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#1469] - group by: YMD, CUS_ID - cardinality=774,219 - BlocksProduced: sum 48, avg 4, max 4, min 4 - CloseTime: avg 649ns, max 900ns, min 450ns - ExecTime: avg 799.556us, max 1.0ms, min 623.830us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.79us, max 15.37us, min 6.32us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 424.978ms, max 468.695ms, min 389.569ms Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=132): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 10.968ms, max 19.249ms, min 7.866ms - InputRows: sum 1.536379M (1536379), avg 128.031K (128031), max 128.653K (128653), min 127.387K (127387) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 46.89 MB, avg 3.91 MB, max 3.93 MB, min 3.89 MB - BuildKeyArena: sum 29.38 MB, avg 2.45 MB, max 2.46 MB, min 2.44 MB - HashTable: sum 17.86 MB, avg 1.49 MB, max 1.49 MB, min 1.49 MB - PeakMemoryUsage: sum 94.08 MB, avg 7.84 MB, max 7.87 MB, min 7.81 MB - OpenTime: avg 10.614us, max 21.147us, min 4.136us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=122): - PlanInfo - offset: 0 - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 12.125us, max 20.310us, min 8.364us - ExecTime: avg 3.212ms, max 25.552ms, min 665.448us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 18.58 MB, avg 1.55 MB, max 3.55 MB, min 1.00 MB - OpenTime: avg 18.685us, max 27.899us, min 12.890us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.536379M (1536379), avg 128.031K (128031), max 128.653K (128653), min 127.387K (127387) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s944ms, max 3s133ms, min 2s711ms Pipeline : 4(instance_num=12): AGGREGATION_SINK_OPERATOR (id=115): - CloseTime: avg 4.14us, max 18.100us, min 1.714us - ExecTime: avg 14.240ms, max 90.38ms, min 3.677ms - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 383.98 KB, max 383.98 KB, min 383.98 KB - PeakMemoryUsage: sum 21.33 MB, avg 1.78 MB, max 1.78 MB, min 1.78 MB - SerializeKeyArena: sum 16.83 MB, avg 1.40 MB, max 1.40 MB, min 1.40 MB - OpenTime: avg 21.872us, max 34.16us, min 15.375us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=114): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 9.518us, max 26.549us, min 5.401us - ExecTime: avg 97.586us, max 119.716us, min 76.107us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.12 MB, avg 351.50 KB, max 505.50 KB, min 169.50 KB - OpenTime: avg 13.251us, max 17.629us, min 8.167us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 299.825ms, max 324.882ms, min 246.676ms Fragment 102: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 10.706us, max 15.783us, min 7.138us - ExecTime: avg 102.993us, max 122.507us, min 89.313us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 69.281us, max 89.59us, min 58.639us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - PlanInfo - group by: YMD, CUS_ID, USER_ID - cardinality=1,170,738 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 201ns, max 302ns, min 117ns - ExecTime: avg 6.572us, max 17.681us, min 3.524us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.773us, max 17.9us, min 2.845us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 EXCHANGE_OPERATOR (id=129): - PlanInfo - offset: 0 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.60us, max 11.277us, min 1.711us - ExecTime: avg 21.870us, max 30.369us, min 15.838us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 15.129us, max 20.788us, min 10.976us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s137ms, max 2s141ms, min 2s132ms Fragment 103: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.87us, max 20.156us, min 7.666us - ExecTime: avg 127.534us, max 158.570us, min 98.282us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 78.852us, max 99.569us, min 66.310us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - PlanInfo - STREAMING - group by: YMD, CUS_ID, USER_ID - cardinality=1,170,738 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 273ns, max 525ns, min 185ns - ExecTime: avg 6.411us, max 10.420us, min 4.180us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.991us, max 9.358us, min 2.958us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 HASH_JOIN_OPERATOR (id=127): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF042[min_max] <- EXTERNAL_USER_ID(2341477/2097152/2097152), RF043[bloom] <- EXTERNAL_USER_ID(2341477/2097152/2097152) - cardinality=2,341,477 - vec output tuple id: 127 - output tuple id: 127 - vIntermediate tuple ids: 126 - hash output slot ids: 1603 1598 1599 - projections: date_format(ADD_TIME, '%Y%m%d'), CUS_ID, USER_ID - project output tuple id: 127 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 19.901us, max 33.753us, min 5.277us - ExecTime: avg 4.612ms, max 4.973ms, min 3.796ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.09 MB, avg 349.33 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.09 MB, avg 349.33 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 15.482us, max 26.696us, min 9.719us - ProbeRows: sum 1.820672M (1820672), avg 151.722K (151722), max 152.828K (152828), min 150.747K (150747) - ProjectionTime: avg 61.556us, max 83.670us, min 43.558us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=126): - PlanInfo - offset: 0 - BlocksProduced: sum 452, avg 37, max 39, min 37 - CloseTime: avg 7.892us, max 13.717us, min 2.318us - ExecTime: avg 516.877us, max 597.501us, min 465.238us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 94.88 MB, avg 7.91 MB, max 11.70 MB, min 5.29 MB - OpenTime: avg 17.708us, max 36.827us, min 12.67us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.820672M (1820672), avg 151.722K (151722), max 152.828K (152828), min 150.747K (150747) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s506ms, max 1s586ms, min 1s335ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=127): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 5.249ms, max 41.892ms, min 497.950us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - BuildKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 300.00 B, avg 25.00 B, max 25.00 B, min 25.00 B - PeakMemoryUsage: sum 204.00 B, avg 17.00 B, max 17.00 B, min 17.00 B - OpenTime: avg 21.953us, max 30.717us, min 13.273us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=124): - PlanInfo - offset: 0 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 8.715us, max 12.562us, min 3.646us - ExecTime: avg 25.79us, max 42.707us, min 14.875us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.58 KB, avg 2.21 KB, max 2.21 KB, min 2.21 KB - OpenTime: avg 14.436us, max 28.19us, min 8.700us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s137ms, max 1s149ms, min 1s127ms Fragment 104: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - BlocksProduced: sum 456, avg 114, max 168, min 60 - CloseTime: avg 14.660us, max 15.772us, min 13.143us - ExecTime: avg 114.505ms, max 153.448ms, min 43.284ms - InputRows: sum 1.820672M (1820672), avg 455.168K (455168), max 682.752K (682752), min 227.584K (227584) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 138.52 MB, avg 34.63 MB, max 52.19 MB, min 17.91 MB - OpenTime: avg 71.471us, max 85.487us, min 59.45us - RowsProduced: sum 1.820672M (1820672), avg 455.168K (455168), max 682.752K (682752), min 227.584K (227584) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF042[min_max] -> EXTERNAL_USER_ID, RF043[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 448, avg 112, max 168, min 56 - CloseTime: avg 53.353us, max 61.672us, min 44.167us - ExecTime: avg 302.977ms, max 339.208ms, min 270.30ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.923ms, max 18.912ms, min 173.1us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.820672M (1820672), avg 455.168K (455168), max 682.752K (682752), min 227.584K (227584) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 296.580ms, max 338.273ms, min 249.884ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 105: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.558us, max 16.738us, min 8.728us - ExecTime: avg 185.838us, max 237.635us, min 140.752us - InputRows: sum 0, avg 0, max 0, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 75.99us, max 110.826us, min 54.830us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (date_format(ADD_TIME, '%Y%m%d') >= '20240101') AND STATE like '%百应%' OR STATE like '%一知%' - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 124 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 38.989us, max 51.699us, min 28.819us - ExecTime: avg 271.778ms, max 534.318ms, min 133.860ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 197.643us, max 326.30us, min 125.414us - ProjectionTime: avg 1.530us, max 2.202us, min 1.284us - RowsProduced: sum 0, avg 0, max 0, min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 271.510ms, max 534.20ms, min 133.630ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 912.00 KB, avg 76.00 KB, max 76.00 KB, min 76.00 KB Fragment 106: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 15.535us, max 21.751us, min 13.316us - ExecTime: avg 31.337ms, max 49.327ms, min 22.763ms - InputRows: sum 1.536379M (1536379), avg 128.031K (128031), max 128.782K (128782), min 127.346K (127346) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 76.50 MB, avg 6.37 MB, max 6.87 MB, min 5.93 MB - OpenTime: avg 78.456us, max 186.145us, min 55.748us - RowsProduced: sum 1.536379M (1536379), avg 128.031K (128031), max 128.782K (128782), min 127.346K (127346) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - PlanInfo - group by: YMD, CALLED_PHONE_NUMBER, CUS_ID - cardinality=518,834 - projections: YMD, CUS_ID, '外呼' - project output tuple id: 122 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 8.497us, max 13.881us, min 4.437us - ExecTime: avg 110.271ms, max 134.276ms, min 88.517ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.243us, max 8.289us, min 3.61us - ProjectionTime: avg 6.152ms, max 21.476ms, min 3.952ms - RowsProduced: sum 1.536379M (1536379), avg 128.031K (128031), max 128.782K (128782), min 127.346K (127346) HASH_JOIN_OPERATOR (id=120): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_MOBILE = CALLED_PHONE_NUMBER) - runtime filters: RF040[min_max] <- CALLED_PHONE_NUMBER(782508/1048576/1048576), RF041[bloom] <- CALLED_PHONE_NUMBER(782508/1048576/1048576) - cardinality=1,037,668 - vec output tuple id: 120 - output tuple id: 120 - vIntermediate tuple ids: 119 - hash output slot ids: 1491 1492 1493 - projections: date_format(START_TIME, '%Y%m%d'), CALLED_PHONE_NUMBER, CUS_ID - project output tuple id: 120 - BlocksProduced: sum 3.453K (3453), avg 287, max 303, min 285 - CloseTime: avg 12.52us, max 17.424us, min 7.754us - ExecTime: avg 209.470ms, max 274.407ms, min 152.850ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.11 MB, avg 436.00 KB, max 456.00 KB, min 384.00 KB - ProbeKeyArena: sum 5.11 MB, avg 436.00 KB, max 456.00 KB, min 384.00 KB - OpenTime: avg 14.484us, max 27.458us, min 9.688us - ProbeRows: sum 14.147188M (14147188), avg 1.178932M (1178932), max 1.247336M (1247336), min 1.171627M (1171627) - ProjectionTime: avg 9.796ms, max 11.45ms, min 8.947ms - RowsProduced: sum 1.570003M (1570003), avg 130.833K (130833), max 131.739K (131739), min 130.102K (130102) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 541.885ms, max 708.296ms, min 428.643ms EXCHANGE_OPERATOR (id=119): - PlanInfo - offset: 0 - BlocksProduced: sum 3.416K (3416), avg 284, max 300, min 282 - CloseTime: avg 9.892us, max 11.521us, min 4.719us - ExecTime: avg 7.505ms, max 26.439ms, min 4.1ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 232.68 MB, avg 19.39 MB, max 19.66 MB, min 18.97 MB - OpenTime: avg 20.132us, max 32.235us, min 12.131us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 14.147188M (14147188), avg 1.178932M (1178932), max 1.247336M (1247336), min 1.171627M (1171627) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s381ms, max 1s600ms, min 1s78ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=120): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 38.101ms, max 116.920ms, min 21.748ms - InputRows: sum 1.570003M (1570003), avg 130.833K (130833), max 131.739K (131739), min 130.102K (130102) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 37.43 MB, avg 3.12 MB, max 3.14 MB, min 3.10 MB - BuildKeyArena: sum 43.49 MB, avg 3.62 MB, max 3.65 MB, min 3.61 MB - HashTable: sum 19.49 MB, avg 1.62 MB, max 1.63 MB, min 1.62 MB - PeakMemoryUsage: sum 100.36 MB, avg 8.36 MB, max 8.41 MB, min 8.32 MB - OpenTime: avg 25.268us, max 52.220us, min 13.828us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=117): - PlanInfo - offset: 0 - BlocksProduced: sum 384, avg 32, max 32, min 32 - CloseTime: avg 13.566us, max 19.408us, min 10.393us - ExecTime: avg 3.181ms, max 33.414ms, min 353.358us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.74 MB, avg 1.06 MB, max 1.50 MB, min 880.61 KB - OpenTime: avg 28.974us, max 112.579us, min 12.971us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.570003M (1570003), avg 130.833K (130833), max 131.739K (131739), min 130.102K (130102) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s189ms, max 1s281ms, min 946.420ms Fragment 107: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - BlocksProduced: sum 3.422K (3422), avg 285, max 628, min 120 - CloseTime: avg 13.175us, max 18.73us, min 9.743us - ExecTime: avg 163.205ms, max 354.414ms, min 53.200ms - InputRows: sum 14.147188M (14147188), avg 1.178932M (1178932), max 2.635484M (2635484), min 465.123K (465123) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 545.32 MB, avg 45.44 MB, max 101.41 MB, min 17.92 MB - OpenTime: avg 78.272us, max 137.267us, min 54.594us - RowsProduced: sum 14.147188M (14147188), avg 1.178932M (1178932), max 2.635484M (2635484), min 465.123K (465123) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF040[min_max] -> CAST(CUS_MOBILE AS VARCHAR(300)), RF041[bloom] -> CAST(CUS_MOBILE AS VARCHAR(300)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 3.542K (3542), avg 295, max 656, min 120 - CloseTime: avg 81.729us, max 130.927us, min 50.826us - ExecTime: avg 191.952ms, max 304.933ms, min 70.418ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 225.439us, max 390.353us, min 129.29us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 14.147188M (14147188), avg 1.178932M (1178932), max 2.635484M (2635484), min 465.123K (465123) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 181.569ms, max 303.754ms, min 67.309ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 240.70 MB, avg 20.06 MB, max 30.23 MB, min 10.08 MB Fragment 108: Pipeline : 0(instance_num=6): DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - BlocksProduced: sum 432, avg 72, max 192, min 12 - CloseTime: avg 14.457us, max 20.165us, min 9.19us - ExecTime: avg 59.819ms, max 219.650ms, min 178.700us - InputRows: sum 1.570003M (1570003), avg 261.667K (261667), max 785.04K (785040), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 61.92 MB, avg 10.32 MB, max 31.04 MB, min 0.00 - OpenTime: avg 87.774us, max 169.594us, min 60.65us - RowsProduced: sum 1.570003M (1570003), avg 261.667K (261667), max 785.04K (785040), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - PlanInfo - TABLE: ods_demo.ODS_AI_CALLING_RECORD(ODS_AI_CALLING_RECORD), PREAGGREGATION: ON - PREDICATES: (date_format(START_TIME, '%Y%m%d') >= '20240101') AND RESULT_STATUS IN ('已接听', 'ANSWERED') - partitions=3/3 (p2022,p2023,p2024), tablets=6/6, tabletList=22328,22330,22324 ... - cardinality=24257759, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: CALLED_PHONE_NUMBER, START_TIME - project output tuple id: 117 - BlocksProduced: sum 456, avg 76, max 228, min 0 - CloseTime: avg 72.471us, max 127.801us, min 52.166us - ExecTime: avg 387.639ms, max 644.150ms, min 195.16ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.57ms, max 23.289ms, min 178.722us - ProjectionTime: avg 2.206ms, max 7.145ms, min 2.986us - RowsProduced: sum 1.570003M (1570003), avg 261.667K (261667), max 785.04K (785040), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 47.196564M (47196564), avg 7.866094M (7866094), max 18.640402M (18640402), min 2.121624M (2121624) - filter id = -1 input: sum 98.028048M (98028048), avg 16.338008M (16338008), max 37.6791M (37679100), min 3.691704M (3691704) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 380.838ms, max 635.526ms, min 194.672ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 14.23 MB, avg 2.37 MB, max 6.88 MB, min 60.00 KB Fragment 109: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.441us, max 15.240us, min 9.111us - ExecTime: avg 1.814ms, max 4.979ms, min 143.870us - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 840.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 78.325us, max 110.616us, min 60.40us - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#1466] - group by: YMD, CUS_ID - cardinality=774,219 - BlocksProduced: sum 40, avg 3, max 8, min 0 - CloseTime: avg 177.711us, max 436.858us, min 1.359us - ExecTime: avg 24.296ms, max 119.634ms, min 40.552us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 639.99 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 1.85 MB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 1.22 MB, max 2.93 MB, min 0.00 - OpenTime: avg 46.250us, max 123.560us, min 21.487us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: date_format(SUBMIT_DATE, '%Y%m%d'), CUS_ID, TOTAL_FEE - project output tuple id: 113 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 126.253us, max 151.487us, min 86.516us - ExecTime: avg 131.100ms, max 309.458ms, min 53.99ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 325.266us, max 384.951us, min 244.888us - ProjectionTime: avg 1.644ms, max 5.277ms, min 5.191us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 124.232ms, max 305.185ms, min 49.775ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 11.49 MB, avg 980.67 KB, max 2.15 MB, min 80.00 KB Fragment 110: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.230us, max 19.389us, min 12.415us - ExecTime: avg 1.866ms, max 2.225ms, min 1.679ms - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.43 MB, avg 292.83 KB, max 300.00 KB, min 282.00 KB - OpenTime: avg 78.764us, max 98.507us, min 67.604us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - PlanInfo - group by: YMD, EXTERNAL_USER_ID, USER_ID, CUS_ID - cardinality=59 - projections: YMD, USER_ID, CUS_ID, '拉黑' - project output tuple id: 111 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.646us, max 16.46us, min 2.452us - ExecTime: avg 2.957ms, max 3.386ms, min 2.470ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.364us, max 12.84us, min 3.760us - ProjectionTime: avg 343.372us, max 418.532us, min 260.334us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) AGGREGATION_OPERATOR (id=109): - PlanInfo - output: min(USER_BLOCKING_TIME)[#1377], min(EXTERNAL_BLOCKING_TIME)[#1378] - group by: EXTERNAL_USER_ID, USER_ID, CUS_ID - having: (date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d') >= '20240101') - cardinality=11,923 - projections: date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d'), EXTERNAL_USER_ID, USER_ID, CUS_ID - project output tuple id: 109 - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 940ns, max 1.447us, min 628ns - ExecTime: avg 33.217ms, max 75.387ms, min 25.728ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.390us, max 10.809us, min 5.835us - ProjectionTime: avg 1.529ms, max 6.618ms, min 883.79us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 3s863ms, max 3s947ms, min 3s826ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=109): - CloseTime: avg 1.724us, max 4.9us, min 1.198us - ExecTime: avg 165.288ms, max 277.723ms, min 99.375ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - MemoryUsage: sum , avg , max , min - HashTable: sum 72.00 MB, avg 6.00 MB, max 6.00 MB, min 6.00 MB - PeakMemoryUsage: sum 406.50 MB, avg 33.87 MB, max 33.87 MB, min 33.87 MB - SerializeKeyArena: sum 334.50 MB, avg 27.88 MB, max 27.88 MB, min 27.88 MB - OpenTime: avg 31.445us, max 96.293us, min 13.521us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=108): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF038[min_max] <- EXTERNAL_USER_ID(11923/16384/16384), RF039[bloom] <- EXTERNAL_USER_ID(11923/16384/16384) - cardinality=11,923 - vec output tuple id: 107 - output tuple id: 107 - vIntermediate tuple ids: 106 - hash output slot ids: 1302 1303 1304 1305 1309 - projections: EXTERNAL_USER_ID, USER_ID, CUS_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME - project output tuple id: 107 - BlocksProduced: sum 2.008K (2008), avg 167, max 169, min 166 - CloseTime: avg 17.331us, max 38.808us, min 9.925us - ExecTime: avg 197.224ms, max 271.513ms, min 130.78ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.82 MB, avg 325.67 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 3.82 MB, avg 325.67 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 23.477us, max 47.94us, min 13.333us - ProbeRows: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - ProjectionTime: avg 7.536ms, max 29.647ms, min 2.540ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s178ms, max 1s425ms, min 776.560ms EXCHANGE_OPERATOR (id=107): - PlanInfo - offset: 0 - BlocksProduced: sum 1.996K (1996), avg 166, max 168, min 165 - CloseTime: avg 980.746us, max 11.636ms, min 5.657us - ExecTime: avg 9.946ms, max 36.255ms, min 2.706ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 228.73 MB, avg 19.06 MB, max 19.61 MB, min 18.31 MB - OpenTime: avg 19.365us, max 24.623us, min 13.276us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s402ms, max 1s654ms, min 1s140ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=108): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 82.583ms, max 202.370ms, min 32.917ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 129.17 MB, avg 10.76 MB, max 10.79 MB, min 10.73 MB - BuildKeyArena: sum 67.47 MB, avg 5.62 MB, max 5.64 MB, min 5.61 MB - HashTable: sum 21.36 MB, avg 1.78 MB, max 1.78 MB, min 1.78 MB - PeakMemoryUsage: sum 217.95 MB, avg 18.16 MB, max 18.21 MB, min 18.11 MB - OpenTime: avg 21.628us, max 35.948us, min 14.549us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=105): - PlanInfo - offset: 0 - BlocksProduced: sum 548, avg 45, max 46, min 45 - CloseTime: avg 12.514us, max 14.970us, min 8.243us - ExecTime: avg 4.269ms, max 24.922ms, min 935.892us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 81.78 MB, avg 6.81 MB, max 10.13 MB, min 3.09 MB - OpenTime: avg 15.729us, max 32.413us, min 8.917us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s178ms, max 1s502ms, min 978.75ms Fragment 111: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - BlocksProduced: sum 1.999K (1999), avg 499, max 502, min 497 - CloseTime: avg 13.351us, max 14.36us, min 12.287us - ExecTime: avg 376.924ms, max 457.903ms, min 254.290ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 644.67 MB, avg 161.17 MB, max 161.61 MB, min 160.30 MB - OpenTime: avg 78.579us, max 90.68us, min 68.770us - RowsProduced: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=106. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF038[min_max] -> EXTERNAL_USER_ID, RF039[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 52.346us, max 56.322us, min 50.464us - ExecTime: avg 265.148ms, max 327.422ms, min 163.973ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.146ms, max 31.878ms, min 166.721us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 254.678ms, max 293.264ms, min 161.117ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 112: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - BlocksProduced: sum 561, avg 46, max 48, min 39 - CloseTime: avg 17.473us, max 32.38us, min 9.239us - ExecTime: avg 98.348ms, max 248.330ms, min 51.136ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 183.028K (183028), min 147.309K (147309) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 222.22 MB, avg 18.52 MB, max 20.21 MB, min 15.46 MB - OpenTime: avg 76.800us, max 115.567us, min 65.325us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 183.028K (183028), min 147.309K (147309) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=104): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF036[min_max] <- USER_ID(21/32/2048), RF037[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=11,923 - vec output tuple id: 104 - output tuple id: 104 - vIntermediate tuple ids: 103 - hash output slot ids: 1296 1293 1294 1295 - projections: USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME, EXTERNAL_USER_ID, USER_ID - project output tuple id: 104 - BlocksProduced: sum 559, avg 46, max 52, min 41 - CloseTime: avg 22.58us, max 40.568us, min 13.737us - ExecTime: avg 25.365ms, max 86.467ms, min 14.254ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.33 MB, avg 113.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.33 MB, avg 113.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 20.795us, max 93.945us, min 10.404us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 183.028K (183028), min 147.309K (147309) - ProjectionTime: avg 3.358ms, max 19.821ms, min 1.680ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 183.028K (183028), min 147.309K (147309) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 559, avg 46, max 52, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 382.769us, max 464.485us, min 302.7us - GetBlockFailedTime: sum 122, avg 10, max 15, min 7 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 60.50 MB, avg 5.04 MB, max 6.52 MB, min 1.60 MB - OpenTime: avg 797ns, max 923ns, min 598ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 183.028K (183028), min 147.309K (147309) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 860.963ms, max 1s77ms, min 703.259ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 3.201ms, max 33.768ms, min 244.92us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 174.499K (174499), min 139.856K (139856) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.523us, max 2.312us, min 1.70us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=103): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = WORKER_ID) - cardinality=13,008,209 - vec output tuple id: 102 - output tuple id: 102 - vIntermediate tuple ids: 101 - hash output slot ids: 1281 1282 1269 1270 - projections: EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME - project output tuple id: 102 - BlocksProduced: sum 559, avg 46, max 50, min 41 - CloseTime: avg 27.187us, max 53.919us, min 12.630us - ExecTime: avg 33.392ms, max 66.776ms, min 14.71ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.59 MB, avg 136.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.59 MB, avg 136.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 23.507us, max 81.337us, min 9.467us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 174.499K (174499), min 139.856K (139856) - ProjectionTime: avg 6.254ms, max 22.780ms, min 3.62ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 174.499K (174499), min 139.856K (139856) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2.306ms, max 27.676ms, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 559, avg 46, max 50, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 276.927us, max 395.796us, min 205.684us - GetBlockFailedTime: sum 142, avg 11, max 21, min 4 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 49.69 MB, avg 4.14 MB, max 8.64 MB, min 1.99 MB - OpenTime: avg 987ns, max 3.448us, min 452ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 174.499K (174499), min 139.856K (139856) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 781.536ms, max 1s130ms, min 493.625ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 241.119us, max 559.906us, min 26.985us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.629us, max 3.615us, min 877ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - runtime filters: RF036[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF037[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 559, avg 46, max 113, min 0 - CloseTime: avg 49.428us, max 66.671us, min 17.456us - ExecTime: avg 569.974ms, max 941.123ms, min 171.641ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 409.314us, max 578.136us, min 264.778us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 567.639ms, max 940.108ms, min 171.315ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.63 MB, avg 3.39 MB, max 7.01 MB, min 112.00 KB Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=104): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.21ms, max 11.727ms, min 23.877us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 25.507us, max 76.807us, min 12.669us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 134.22ms, max 152.534ms, min 0ns EXCHANGE_OPERATOR (id=99): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 8.162us, max 18.160us, min 3.243us - ExecTime: avg 33.737us, max 54.482us, min 18.429us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 23.557us, max 44.440us, min 14.110us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 10.419ms, max 125.31ms, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=103): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 14.380ms, max 172.267ms, min 10.470us - InputRows: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 549.72 KB, avg 45.81 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 1.09 MB, avg 92.67 KB, max 1.09 MB, min 0.00 - HashTable: sum 426.31 KB, avg 35.53 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 2.04 MB, avg 173.67 KB, max 2.04 MB, min 0.00 - OpenTime: avg 15.80us, max 89.684us, min 5.72us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 312.508ms, max 351.562ms, min 0ns EXCHANGE_OPERATOR (id=101): - PlanInfo - offset: 0 - BlocksProduced: sum 11, avg 0, max 11, min 0 - CloseTime: avg 8.14us, max 18.105us, min 1.440us - ExecTime: avg 35.850us, max 185.789us, min 14.92us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 700.00 KB, avg 58.33 KB, max 700.00 KB, min 0.00 - OpenTime: avg 13.763us, max 20.403us, min 9.268us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 10.339ms, max 124.75ms, min 0ns Fragment 113: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=101,dst_id=101): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 16.850us, max 16.850us, min 16.850us - ExecTime: avg 704.359us, max 704.359us, min 704.359us - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 36.300us, max 36.300us, min 36.300us - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=100. table name = DIM_WORKER): - PlanInfo - TABLE: ods_demo.DIM_WORKER(DIM_WORKER), PREAGGREGATION: ON - partitions=1/1 (DIM_WORKER), tablets=1/1, tabletList=21815 - cardinality=43597, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 17.297us, max 17.297us, min 17.297us - ExecTime: avg 109.432ms, max 109.432ms, min 109.432ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 3.89ms, max 3.89ms, min 3.89ms - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 106.244ms, max 106.244ms, min 106.244ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 724.00 KB, avg 724.00 KB, max 724.00 KB, min 724.00 KB Fragment 114: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=99,dst_id=99): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 8.142us, max 8.142us, min 8.142us - ExecTime: avg 50.367us, max 50.367us, min 50.367us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 29.467us, max 29.467us, min 29.467us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=98. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 98 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 28.387us, max 28.387us, min 28.387us - ExecTime: avg 110.52ms, max 110.52ms, min 110.52ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 139.0us, max 139.0us, min 139.0us - ProjectionTime: avg 5.466us, max 5.466us, min 5.466us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 109.849ms, max 109.849ms, min 109.849ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 115: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.837us, max 20.854us, min 9.800us - ExecTime: avg 1.329ms, max 12.685ms, min 243.722us - InputRows: sum 2.315K (2315), avg 192, max 216, min 164 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 197.81 KB, avg 16.48 KB, max 17.50 KB, min 15.06 KB - OpenTime: avg 82.404us, max 129.245us, min 58.272us - RowsProduced: sum 2.315K (2315), avg 192, max 216, min 164 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=96): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#1221], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#1222], multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END))[#1223] - group by: STATIS_DATE, USER_ID - cardinality=387,109 - projections: QW_NEW_BGK, count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END), CAST(STATIS_DATE AS DOUBLE), USER_ID - project output tuple id: 96 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 686ns, max 1.382us, min 209ns - ExecTime: avg 93.242us, max 132.256us, min 74.373us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.294us, max 16.37us, min 5.565us - ProjectionTime: avg 32.607us, max 54.956us, min 23.202us - RowsProduced: sum 2.315K (2315), avg 192, max 216, min 164 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s693ms, max 4s709ms, min 4s669ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=96): - CloseTime: avg 718ns, max 1.334us, min 306ns - ExecTime: avg 1.105ms, max 4.800ms, min 549.853us - InputRows: sum 9.81K (9810), avg 817, max 958, min 733 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.72 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 15.35 MB, avg 1.28 MB, max 1.28 MB, min 1.28 MB - SerializeKeyArena: sum 15.28 MB, avg 1.27 MB, max 1.27 MB, min 1.27 MB - OpenTime: avg 30.1us, max 56.670us, min 19.496us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=95): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.278us, max 11.755us, min 1.713us - ExecTime: avg 99.198us, max 130.272us, min 87.286us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 852.00 KB, avg 71.00 KB, max 227.25 KB, min 28.63 KB - OpenTime: avg 22.490us, max 55.897us, min 12.555us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.81K (9810), avg 817, max 958, min 733 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s672ms, max 4s679ms, min 4s647ms Fragment 116: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.841us, max 14.801us, min 8.693us - ExecTime: avg 411.725us, max 530.723us, min 335.652us - InputRows: sum 9.81K (9810), avg 817, max 861, min 770 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.96 MB, avg 167.13 KB, max 190.00 KB, min 155.25 KB - OpenTime: avg 87.499us, max 168.399us, min 61.120us - RowsProduced: sum 9.81K (9810), avg 817, max 861, min 770 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=94): - PlanInfo - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#1216], partial_multi_distinct_count(DISTINCT CASE WHEN (FLAG = '拉黑') THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#1217], partial_multi_distinct_count(DISTINCT CASE WHEN (TOTAL_FEE > cast(0 as DECIMALV3(38, 0))) THEN cast(EXTERNAL_USER_ID as TEXT) ELSE NULL END)[#1218] - group by: STATIS_DATE, USER_ID - cardinality=387,109 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 384ns, max 640ns, min 189ns - ExecTime: avg 331.510us, max 463.4us, min 191.345us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.152us, max 13.182us, min 5.959us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.81K (9810), avg 817, max 861, min 770 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s638ms, max 4s676ms, min 4s615ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=94): - CloseTime: avg 1.12us, max 1.356us, min 634ns - ExecTime: avg 4.107ms, max 32.557ms, min 1.307ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - MemoryUsage: sum , avg , max , min - HashTable: sum 287.72 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 15.75 MB, avg 1.31 MB, max 1.31 MB, min 1.31 MB - SerializeKeyArena: sum 15.47 MB, avg 1.29 MB, max 1.29 MB, min 1.29 MB - OpenTime: avg 28.967us, max 59.768us, min 17.816us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=93): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (STATIS_DATE = STATIS_DATE) - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF034[min_max] <- CUS_ID(982/1024/2048), RF035[bloom] <- CUS_ID(982/1024/2048) - cardinality=774,219 - vec output tuple id: 93 - output tuple id: 93 - vIntermediate tuple ids: 92 - hash output slot ids: 1120 1200 1117 1118 1119 - projections: STATIS_DATE, USER_ID, EXTERNAL_USER_ID, if((FLAG = '拉黑'), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((TOTAL_FEE > 0), CAST(EXTERNAL_USER_ID AS TEXT), NULL) - project output tuple id: 93 - BlocksProduced: sum 62, avg 5, max 6, min 5 - CloseTime: avg 12.918us, max 18.767us, min 8.899us - ExecTime: avg 3.641ms, max 28.538ms, min 1.106ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.08 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - ProbeKeyArena: sum 1.08 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - OpenTime: avg 20.823us, max 28.595us, min 16.666us - ProbeRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - ProjectionTime: avg 296.524us, max 387.171us, min 245.938us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s557ms, max 2s656ms, min 2s326ms AGGREGATION_OPERATOR (id=92): - PlanInfo - output: sum(partial_sum(TOTAL_FEE))[#1200] - group by: STATIS_DATE, CUS_ID - cardinality=774,219 - BlocksProduced: sum 48, avg 4, max 4, min 4 - CloseTime: avg 743ns, max 1.81us, min 444ns - ExecTime: avg 794.988us, max 1.100ms, min 619.76us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.382us, max 27.294us, min 4.909us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s43ms, max 2s221ms, min 1s949ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=93): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.681ms, max 25.561ms, min 462.984us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.59 MB, avg 306.30 KB, max 378.25 KB, min 271.30 KB - BuildKeyArena: sum 1.08 MB, avg 92.33 KB, max 112.00 KB, min 84.00 KB - HashTable: sum 603.74 KB, avg 50.31 KB, max 56.26 KB, min 33.40 KB - PeakMemoryUsage: sum 5.21 MB, avg 444.94 KB, max 542.50 KB, min 384.69 KB - OpenTime: avg 26.305us, max 38.20us, min 18.460us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=88): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 6.391us, max 13.699us, min 2.268us - ExecTime: avg 127.503us, max 157.559us, min 106.576us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.53 MB, avg 215.85 KB, max 480.24 KB, min 114.06 KB - OpenTime: avg 19.458us, max 28.634us, min 13.208us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.966K (4966), min 3.562K (3562) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s546ms, max 4s556ms, min 4s509ms Pipeline : 3(instance_num=12): AGGREGATION_SINK_OPERATOR (id=92): - CloseTime: avg 5.762us, max 12.704us, min 2.835us - ExecTime: avg 9.250ms, max 45.56ms, min 3.844ms - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 383.98 KB, max 383.98 KB, min 383.98 KB - PeakMemoryUsage: sum 21.33 MB, avg 1.78 MB, max 1.78 MB, min 1.78 MB - SerializeKeyArena: sum 16.83 MB, avg 1.40 MB, max 1.40 MB, min 1.40 MB - OpenTime: avg 33.675us, max 95.525us, min 14.896us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=91): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 11.355us, max 15.991us, min 5.530us - ExecTime: avg 114.469us, max 142.263us, min 93.502us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.41 MB, avg 547.02 KB, max 673.50 KB, min 336.43 KB - OpenTime: avg 15.962us, max 28.286us, min 8.363us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 12.843K (12843), min 12.563K (12563) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s452ms, max 1s713ms, min 1s189ms Fragment 117: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.413us, max 23.574us, min 10.791us - ExecTime: avg 4.10ms, max 32.436ms, min 141.910us - InputRows: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 840.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 87.362us, max 159.183us, min 62.364us - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - PlanInfo - STREAMING - output: partial_sum(TOTAL_FEE)[#1197] - group by: STATIS_DATE, CUS_ID - cardinality=774,219 - BlocksProduced: sum 40, avg 3, max 8, min 0 - CloseTime: avg 182.633us, max 480.248us, min 807ns - ExecTime: avg 12.24ms, max 38.168ms, min 42.755us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 639.99 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 1.85 MB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 1.22 MB, max 2.93 MB, min 0.00 - OpenTime: avg 36.428us, max 70.400us, min 24.581us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 12.701K (12701), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - PlanInfo - TABLE: ods_demo.ODS_VIPSHOP_SALE(ODS_VIPSHOP_SALE), PREAGGREGATION: ON - PREDICATES: (date_format(SUBMIT_DATE, '%Y%m%d') >= '20240101') AND (CAST(PAY_STATUS AS DOUBLE) = 1) - runtime filters: RF034[min_max] -> CUS_ID, RF035[bloom] -> CUS_ID - partitions=8/8 (p2017,p2018,p2019,p2020,p2021,p2022,p2023,p2024), tablets=40/40, tabletList=15297,15299,15301 ... - cardinality=12387517, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: date_format(SUBMIT_DATE, '%Y%m%d'), CUS_ID, TOTAL_FEE - project output tuple id: 89 - BlocksProduced: sum 95, avg 7, max 19, min 0 - CloseTime: avg 154.71us, max 223.647us, min 94.610us - ExecTime: avg 32.108ms, max 92.553ms, min 12.656ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.96ms, max 9.387ms, min 212.554us - ProjectionTime: avg 1.357ms, max 3.821ms, min 3.983us - RowsProduced: sum 338.667K (338667), avg 28.222K (28222), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 29.294ms, max 88.859ms, min 7.895ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.82 MB, avg 1.07 MB, max 2.32 MB, min 240.00 KB Fragment 118: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.859us, max 20.223us, min 8.890us - ExecTime: avg 1.907ms, max 7.937ms, min 869.774us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.17 MB, avg 441.60 KB, max 1.04 MB, min 335.88 KB - OpenTime: avg 72.500us, max 82.690us, min 60.390us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=87): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (STATIS_DATE = STATIS_DATE) - equal join conjunct: (USER_ID = USER_ID) - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - cardinality=982 - vec output tuple id: 87 - output tuple id: 87 - vIntermediate tuple ids: 86 - hash output slot ids: 1105 1106 1107 916 1108 - projections: FLAG, STATIS_DATE, EXTERNAL_USER_ID, USER_ID, CUS_ID - project output tuple id: 87 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 2.100ms, max 25.88ms, min 7.843us - ExecTime: avg 7.183ms, max 26.940ms, min 1.196ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 544.00 KB, avg 45.33 KB, max 60.00 KB, min 24.00 KB - ProbeKeyArena: sum 544.00 KB, avg 45.33 KB, max 60.00 KB, min 24.00 KB - OpenTime: avg 19.990us, max 46.111us, min 11.87us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - ProjectionTime: avg 113.260us, max 181.180us, min 78.312us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 71.751us, max 99.6us, min 49.647us - GetBlockFailedTime: sum 45, avg 3, max 6, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.48 MB, avg 296.92 KB, max 420.00 KB, min 105.00 KB - OpenTime: avg 665ns, max 807ns, min 510ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 4s394ms, max 4s442ms, min 4s364ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 101.950us, max 152.14us, min 50.83us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.532us, max 3.382us, min 1000ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - PlanInfo - group by: USER_ID, STATIS_DATE, EXTERNAL_USER_ID, CUS_ID - cardinality=982 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.220us, max 19.387us, min 203ns - ExecTime: avg 6.1ms, max 28.852ms, min 1.740ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.873us, max 6.760us, min 3.314us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) EXCHANGE_OPERATOR (id=85): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 7.924us, max 13.703us, min 2.822us - ExecTime: avg 3.195ms, max 36.818ms, min 109.861us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.40 MB, avg 375.67 KB, max 455.00 KB, min 175.00 KB - OpenTime: avg 22.792us, max 49.340us, min 13.486us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.129K (4129), min 3.957K (3957) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s330ms, max 4s376ms, min 4s293ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=87): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 911.334us, max 10.634ms, min 12.469us - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 52.587K (52587), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.71 MB, avg 316.68 KB, max 3.71 MB, min 0.00 - BuildKeyArena: sum 3.16 MB, avg 270.00 KB, max 3.16 MB, min 0.00 - HashTable: sum 461.43 KB, avg 38.45 KB, max 461.43 KB, min 0.00 - PeakMemoryUsage: sum 7.32 MB, avg 624.79 KB, max 7.32 MB, min 0.00 - OpenTime: avg 11.52us, max 19.221us, min 6.195us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 2s979ms, max 3s260ms, min 0ns EXCHANGE_OPERATOR (id=71): - PlanInfo - offset: 0 - BlocksProduced: sum 492, avg 41, max 492, min 0 - CloseTime: avg 8.171us, max 12.863us, min 2.23us - ExecTime: avg 245.465us, max 2.695ms, min 13.938us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.11 MB, avg 1.01 MB, max 12.11 MB, min 0.00 - OpenTime: avg 14.232us, max 17.725us, min 8.222us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 52.587K (52587), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 248.976ms, max 2s987ms, min 0ns Fragment 119: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.317us, max 16.444us, min 8.734us - ExecTime: avg 9.245ms, max 20.120ms, min 5.442ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.39 MB, avg 460.00 KB, max 920.00 KB, min 408.00 KB - OpenTime: avg 84.464us, max 147.628us, min 64.20us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - PlanInfo - STREAMING - group by: USER_ID, STATIS_DATE, EXTERNAL_USER_ID, CUS_ID - cardinality=982 - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.444us, max 13.943us, min 1.904us - ExecTime: avg 4.654ms, max 6.811ms, min 3.665ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.211us, max 19.499us, min 3.526us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) HASH_JOIN_OPERATOR (id=83): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF032[min_max] <- CUS_ID(1490/2048/2048), RF033[bloom] <- CUS_ID(1490/2048/2048) - cardinality=1,965 - vec output tuple id: 83 - output tuple id: 83 - vIntermediate tuple ids: 82 - hash output slot ids: 1017 1018 1019 1020 - projections: USER_ID, date_format(ADD_TIME, '%Y%m%d'), EXTERNAL_USER_ID, CUS_ID - project output tuple id: 83 - BlocksProduced: sum 8.776K (8776), avg 731, max 736, min 721 - CloseTime: avg 8.970us, max 31.954us, min 3.47us - ExecTime: avg 77.122ms, max 98.276ms, min 56.476ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 828.94 KB, avg 69.08 KB, max 69.28 KB, min 68.88 KB - ProbeKeyArena: sum 828.94 KB, avg 69.08 KB, max 69.28 KB, min 68.88 KB - OpenTime: avg 23.607us, max 105.262us, min 9.615us - ProbeRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - ProjectionTime: avg 3.898ms, max 4.637ms, min 3.229ms - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s461ms, max 2s701ms, min 2s133ms EXCHANGE_OPERATOR (id=82): - PlanInfo - offset: 0 - BlocksProduced: sum 9.442K (9442), avg 786, max 789, min 785 - CloseTime: avg 6.87us, max 11.706us, min 3.456us - ExecTime: avg 12.343ms, max 44.677ms, min 4.789ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 230.58 MB, avg 19.21 MB, max 19.58 MB, min 18.84 MB - OpenTime: avg 19.241us, max 45.570us, min 12.784us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s168ms, max 1s258ms, min 1s75ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=83): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 487.411us, max 820.309us, min 341.491us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.18 MB, avg 270.95 KB, max 621.30 KB, min 233.99 KB - BuildKeyArena: sum 754.22 KB, avg 62.85 KB, max 144.09 KB, min 54.28 KB - HashTable: sum 523.74 KB, avg 43.64 KB, max 109.03 KB, min 32.97 KB - PeakMemoryUsage: sum 4.42 MB, avg 377.44 KB, max 874.42 KB, min 321.23 KB - OpenTime: avg 22.307us, max 37.836us, min 13.15us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=80): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 6.418us, max 10.853us, min 3.110us - ExecTime: avg 712.206us, max 6.758ms, min 139.865us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.10 MB, avg 264.92 KB, max 798.00 KB, min 99.00 KB - OpenTime: avg 12.734us, max 19.259us, min 8.606us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s603ms, max 3s669ms, min 3s510ms Fragment 120: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - BlocksProduced: sum 9.452K (9452), avg 787, max 1.186K (1186), min 216 - CloseTime: avg 15.127us, max 24.960us, min 11.196us - ExecTime: avg 160.563ms, max 303.826ms, min 18.469ms - InputRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 508.31 MB, avg 42.36 MB, max 65.34 MB, min 10.47 MB - OpenTime: avg 66.888us, max 82.399us, min 53.702us - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF032[min_max] -> CUS_ID, RF033[bloom] -> CUS_ID - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 55.121us, max 90.18us, min 21.368us - ExecTime: avg 96.545ms, max 144.77ms, min 44.535ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 169.211us, max 236.150us, min 131.196us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 92.550ms, max 139.590ms, min 40.972ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 216.00 MB, avg 18.00 MB, max 26.86 MB, min 7.63 MB Fragment 121: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 15.538us, max 23.755us, min 9.761us - ExecTime: avg 5.966ms, max 17.290ms, min 3.888ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.07 MB, avg 432.67 KB, max 437.00 KB, min 423.00 KB - OpenTime: avg 86.171us, max 160.896us, min 57.255us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=79): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF030[min_max] <- EXTERNAL_USER_ID(1490/2048/2048), RF031[bloom] <- EXTERNAL_USER_ID(1490/2048/2048) - cardinality=1,490 - vec output tuple id: 80 - output tuple id: 80 - vIntermediate tuple ids: 79 - hash output slot ids: 951 952 953 957 - projections: CUS_ID, EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 80 - BlocksProduced: sum 2.002K (2002), avg 166, max 169, min 165 - CloseTime: avg 13.634us, max 29.762us, min 6.904us - ExecTime: avg 43.467ms, max 104.385ms, min 30.395ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.71 MB, avg 401.67 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.71 MB, avg 401.67 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 13.677us, max 18.748us, min 9.678us - ProbeRows: sum 8.342235M (8342235), avg 695.186K (695186), max 696.514K (696514), min 694.136K (694136) - ProjectionTime: avg 1.342ms, max 8.509ms, min 596.957us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=78): - PlanInfo - offset: 0 - BlocksProduced: sum 1.996K (1996), avg 166, max 168, min 165 - CloseTime: avg 11.612us, max 25.427us, min 5.260us - ExecTime: avg 6.153ms, max 28.433ms, min 2.327ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 147.12 MB, avg 12.26 MB, max 19.71 MB, min 7.62 MB - OpenTime: avg 19.290us, max 34.490us, min 11.336us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342235M (8342235), avg 695.186K (695186), max 696.514K (696514), min 694.136K (694136) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s132ms, max 2s296ms, min 1s818ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=79): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 824.354us, max 1.186ms, min 578.90us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.76 MB, avg 235.60 KB, max 242.12 KB, min 226.88 KB - BuildKeyArena: sum 1.73 MB, avg 147.33 KB, max 152.00 KB, min 144.00 KB - HashTable: sum 619.74 KB, avg 51.64 KB, max 52.19 KB, min 50.92 KB - PeakMemoryUsage: sum 5.05 MB, avg 430.57 KB, max 442.30 KB, min 417.79 KB - OpenTime: avg 20.774us, max 39.685us, min 12.109us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=76): - PlanInfo - offset: 0 - BlocksProduced: sum 84, avg 7, max 7, min 7 - CloseTime: avg 9.110us, max 13.861us, min 4.523us - ExecTime: avg 86.160us, max 104.789us, min 64.888us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.83 MB, avg 241.15 KB, max 302.17 KB, min 188.17 KB - OpenTime: avg 15.314us, max 24.835us, min 7.828us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 650.123ms, max 859.617ms, min 537.842ms Fragment 122: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - BlocksProduced: sum 1.999K (1999), avg 499, max 502, min 497 - CloseTime: avg 13.684us, max 15.720us, min 12.161us - ExecTime: avg 316.360ms, max 440.756ms, min 226.164ms - InputRows: sum 8.342235M (8342235), avg 2.085558M (2085558), max 2.087045M (2087045), min 2.082064M (2082064) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 644.27 MB, avg 161.07 MB, max 161.61 MB, min 159.90 MB - OpenTime: avg 98.875us, max 178.506us, min 64.548us - RowsProduced: sum 8.342235M (8342235), avg 2.085558M (2085558), max 2.087045M (2087045), min 2.082064M (2082064) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=77. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF030[min_max] -> EXTERNAL_USER_ID, RF031[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 45.367us, max 55.590us, min 30.131us - ExecTime: avg 255.82ms, max 321.786ms, min 135.556ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 228.967us, max 488.400us, min 126.862us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342235M (8342235), avg 2.085558M (2085558), max 2.087045M (2087045), min 2.082064M (2082064) - RuntimeFilterInfo: sum , avg , max , min - filter id = 31 filtered: sum 0, avg 0, max 0, min 0 - filter id = 31 input: sum 207.264K (207264), avg 207.264K (207264), max 207.264K (207264), min 207.264K (207264) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 245.65ms, max 319.276ms, min 132.775ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 123: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.292us, max 29.109us, min 8.285us - ExecTime: avg 3.948ms, max 38.900ms, min 167.7us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.09 MB, avg 348.85 KB, max 684.00 KB, min 0.00 - OpenTime: avg 75.332us, max 96.139us, min 62.932us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=75): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF028[min_max] <- USER_ID(21/32/2048), RF029[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=1,490 - vec output tuple id: 77 - output tuple id: 77 - vIntermediate tuple ids: 76 - hash output slot ids: 944 945 946 - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 77 - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 11.617us, max 34.139us, min 1.761us - ExecTime: avg 564.837us, max 1.214ms, min 24.274us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 472.00 KB, avg 39.33 KB, max 108.00 KB, min 0.00 - ProbeKeyArena: sum 472.00 KB, avg 39.33 KB, max 108.00 KB, min 0.00 - OpenTime: avg 13.441us, max 16.692us, min 10.797us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - ProjectionTime: avg 137.448us, max 368.764us, min 7.155us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 17.849us, max 86.283us, min 1.585us - GetBlockFailedTime: sum 28, avg 2, max 8, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.55 MB, avg 217.67 KB, max 564.00 KB, min 0.00 - OpenTime: avg 1.958us, max 10.640us, min 550ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 8.069K (8069), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 489.808ms, max 524.813ms, min 421.435ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 26.644us, max 100.160us, min 7.476us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.777us, max 17.254us, min 1.44us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (date_format(ADD_TIME, '%Y%m%d') >= '20240101') AND (EXTERNAL_USER_DELETE_FLAG = 0) AND (USER_DELETE_FLAG = 0) - runtime filters: RF028[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF029[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID, ADD_TIME - project output tuple id: 75 - BlocksProduced: sum 13, avg 1, max 7, min 0 - CloseTime: avg 54.230us, max 82.106us, min 33.553us - ExecTime: avg 179.107ms, max 278.855ms, min 117.554ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.1ms, max 55.461ms, min 315.459us - ProjectionTime: avg 97.194us, max 744.612us, min 1.213us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 173.907ms, max 278.433ms, min 116.306ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 4.16 MB, avg 355.00 KB, max 1.84 MB, min 76.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=75): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 47.393us, max 157.76us, min 24.968us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 17.370us, max 30.1us, min 11.493us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 165.789ms, max 191.399ms, min 0ns EXCHANGE_OPERATOR (id=73): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 6.213us, max 9.305us, min 3.379us - ExecTime: avg 26.972us, max 40.402us, min 17.102us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 18.906us, max 31.713us, min 12.361us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 14.973ms, max 179.686ms, min 0ns Fragment 124: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=73,dst_id=73): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 15.637us, max 15.637us, min 15.637us - ExecTime: avg 90.318us, max 90.318us, min 90.318us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 33.490us, max 33.490us, min 33.490us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=72. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 73 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 34.688us, max 34.688us, min 34.688us - ExecTime: avg 159.426ms, max 159.426ms, min 159.426ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 196.39us, max 196.39us, min 196.39us - ProjectionTime: avg 6.987us, max 6.987us, min 6.987us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 159.102ms, max 159.102ms, min 159.102ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 125: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 12.181us, max 15.724us, min 9.775us - ExecTime: avg 382.558us, max 450.875us, min 324.868us - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 27.899us, max 47.6us, min 20.732us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=70): - PlanInfo - output: min(partial_min(USER_BLOCKING_TIME))[#911], min(partial_min(EXTERNAL_BLOCKING_TIME))[#912] - group by: EXTERNAL_USER_ID, USER_ID - having: (date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d') >= '20240101') - cardinality=11,923 - projections: date_format(CASE WHEN min(USER_BLOCKING_TIME) IS NULL THEN min(EXTERNAL_BLOCKING_TIME) WHEN min(USER_BLOCKING_TIME) IS NOT NULL AND (min(USER_BLOCKING_TIME) < min(USER_BLOCKING_TIME)) THEN min(USER_BLOCKING_TIME) ELSE min(EXTERNAL_BLOCKING_TIME) END, '%Y%m%d'), EXTERNAL_USER_ID, USER_ID, '拉黑' - project output tuple id: 71 - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 766ns, max 985ns, min 428ns - ExecTime: avg 23.439ms, max 30.30ms, min 21.258ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.39us, max 21.548us, min 5.351us - ProjectionTime: avg 1.38ms, max 1.142ms, min 941.244us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 2s908ms, max 3s45ms, min 2s845ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=70): - CloseTime: avg 13.86us, max 43.109us, min 4.514us - ExecTime: avg 160.691ms, max 268.133ms, min 96.567ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.983K (163983), min 162.829K (162829) - MemoryUsage: sum , avg , max , min - HashTable: sum 72.00 MB, avg 6.00 MB, max 6.00 MB, min 6.00 MB - PeakMemoryUsage: sum 310.50 MB, avg 25.87 MB, max 25.87 MB, min 25.87 MB - SerializeKeyArena: sum 238.50 MB, avg 19.88 MB, max 19.88 MB, min 19.88 MB - OpenTime: avg 25.699us, max 65.165us, min 15.851us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=69): - PlanInfo - offset: 0 - BlocksProduced: sum 555, avg 46, max 47, min 45 - CloseTime: avg 15.291us, max 31.163us, min 8.743us - ExecTime: avg 1.300ms, max 1.410ms, min 1.184ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 57.08 MB, avg 4.76 MB, max 5.97 MB, min 3.29 MB - OpenTime: avg 21.999us, max 38.936us, min 14.735us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.983K (163983), min 162.829K (162829) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s673ms, max 2s64ms, min 1s273ms Fragment 126: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - BlocksProduced: sum 562, avg 46, max 48, min 40 - CloseTime: avg 15.510us, max 19.457us, min 12.407us - ExecTime: avg 64.903ms, max 95.587ms, min 35.195ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 215.23 MB, avg 17.94 MB, max 20.34 MB, min 15.47 MB - OpenTime: avg 94.974us, max 178.546us, min 72.950us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - PlanInfo - STREAMING - output: partial_min(USER_BLOCKING_TIME)[#907], partial_min(EXTERNAL_BLOCKING_TIME)[#908] - group by: EXTERNAL_USER_ID, USER_ID - cardinality=11,923 - BlocksProduced: sum 525, avg 43, max 48, min 39 - CloseTime: avg 559.344us, max 649.490us, min 485.456us - ExecTime: avg 109.783ms, max 201.900ms, min 45.716ms - MemoryUsage: sum , avg , max , min - HashTable: sum 18.00 MB, avg 1.50 MB, max 1.50 MB, min 1.50 MB - PeakMemoryUsage: sum 135.75 MB, avg 11.31 MB, max 11.31 MB, min 11.31 MB - SerializeKeyArena: sum 117.75 MB, avg 9.81 MB, max 9.81 MB, min 9.81 MB - OpenTime: avg 33.523us, max 58.357us, min 23.912us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) HASH_JOIN_OPERATOR (id=67): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF026[min_max] <- USER_ID(21/32/2048), RF027[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=11,923 - vec output tuple id: 68 - output tuple id: 68 - vIntermediate tuple ids: 67 - hash output slot ids: 892 893 894 895 - projections: EXTERNAL_USER_ID, USER_ID, EXTERNAL_BLOCKING_TIME, USER_BLOCKING_TIME - project output tuple id: 68 - BlocksProduced: sum 554, avg 46, max 50, min 41 - CloseTime: avg 24.608us, max 34.504us, min 18.908us - ExecTime: avg 48.611ms, max 111.885ms, min 17.366ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.42 MB, avg 121.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.42 MB, avg 121.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 18.125us, max 31.487us, min 12.70us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) - ProjectionTime: avg 4.541ms, max 26.890ms, min 2.95ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: sum 554, avg 46, max 50, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.246ms, max 9.579ms, min 372.997us - GetBlockFailedTime: sum 185, avg 15, max 23, min 9 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 40.53 MB, avg 3.38 MB, max 5.13 MB, min 1.32 MB - OpenTime: avg 1.273us, max 3.972us, min 637ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 178.386K (178386), min 149.676K (149676) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s192ms, max 1s603ms, min 737.581ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 499.495us, max 685.817us, min 298.605us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 175.329K (175329), min 139.317K (139317) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.664us, max 3.592us, min 1.81us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=66): - PlanInfo - join op: LEFT OUTER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = WORKER_ID) - cardinality=13,008,209 - vec output tuple id: 66 - output tuple id: 66 - vIntermediate tuple ids: 65 - hash output slot ids: 880 881 868 869 - projections: EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME - project output tuple id: 66 - BlocksProduced: sum 554, avg 46, max 50, min 40 - CloseTime: avg 26.121us, max 43.421us, min 16.310us - ExecTime: avg 32.210ms, max 66.961ms, min 13.460ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.68 MB, avg 143.67 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.68 MB, avg 143.67 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 16.544us, max 30.100us, min 9.878us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 175.329K (175329), min 139.317K (139317) - ProjectionTime: avg 11.574ms, max 47.740ms, min 2.712ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 175.329K (175329), min 139.317K (139317) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 554, avg 46, max 50, min 40 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 491.238us, max 2.130ms, min 303.34us - GetBlockFailedTime: sum 207, avg 17, max 23, min 11 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 31.82 MB, avg 2.65 MB, max 4.05 MB, min 1.45 MB - OpenTime: avg 522ns, max 604ns, min 462ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 175.329K (175329), min 139.317K (139317) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 963.674ms, max 1s253ms, min 588.384ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.140ms, max 9.839ms, min 19.561us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.656us, max 3.590us, min 850ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - runtime filters: RF026[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF027[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 554, avg 46, max 113, min 0 - CloseTime: avg 46.491us, max 63.299us, min 29.947us - ExecTime: avg 548.138ms, max 892.375ms, min 108.880ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.321ms, max 24.469ms, min 359.272us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 540.740ms, max 890.969ms, min 108.426ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.51 MB, avg 3.38 MB, max 7.01 MB, min 112.00 KB Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=67): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 53.192us, max 156.201us, min 31.213us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 22.602us, max 35.495us, min 16.43us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 6.129ms, max 12.349ms, min 0ns EXCHANGE_OPERATOR (id=62): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 6.958us, max 11.60us, min 3.431us - ExecTime: avg 34.323us, max 111.307us, min 18.809us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 25.827us, max 103.844us, min 13.891us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 0ns, max 0ns, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=66): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.503ms, max 17.803ms, min 12.214us - InputRows: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 549.72 KB, avg 45.81 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 1.09 MB, avg 92.67 KB, max 1.09 MB, min 0.00 - HashTable: sum 426.31 KB, avg 35.53 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 2.04 MB, avg 173.67 KB, max 2.04 MB, min 0.00 - OpenTime: avg 11.528us, max 30.743us, min 5.46us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 30.953ms, max 41.972ms, min 0ns EXCHANGE_OPERATOR (id=64): - PlanInfo - offset: 0 - BlocksProduced: sum 11, avg 0, max 11, min 0 - CloseTime: avg 37.189us, max 385.742us, min 2.710us - ExecTime: avg 57.910us, max 401.129us, min 14.180us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 700.00 KB, avg 58.33 KB, max 700.00 KB, min 0.00 - OpenTime: avg 14.224us, max 17.636us, min 10.258us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 3.633K (3633), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 590.929us, max 7.91ms, min 0ns Fragment 127: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=64,dst_id=64): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 30.600us, max 30.600us, min 30.600us - ExecTime: avg 725.371us, max 725.371us, min 725.371us - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 25.506us, max 25.506us, min 25.506us - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=63. table name = DIM_WORKER): - PlanInfo - TABLE: ods_demo.DIM_WORKER(DIM_WORKER), PREAGGREGATION: ON - partitions=1/1 (DIM_WORKER), tablets=1/1, tabletList=21815 - cardinality=43597, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 32.438us, max 32.438us, min 32.438us - ExecTime: avg 17.696ms, max 17.696ms, min 17.696ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 174.810us, max 174.810us, min 174.810us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 17.382ms, max 17.382ms, min 17.382ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 724.00 KB, avg 724.00 KB, max 724.00 KB, min 724.00 KB Fragment 128: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=62,dst_id=62): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 15.175us, max 15.175us, min 15.175us - ExecTime: avg 74.726us, max 74.726us, min 74.726us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 46.272us, max 46.272us, min 46.272us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=61. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: (TYPE_ID = '01') - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 62 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 20.988us, max 20.988us, min 20.988us - ExecTime: avg 1.812ms, max 1.812ms, min 1.812ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 224.976us, max 224.976us, min 224.976us - ProjectionTime: avg 6.720us, max 6.720us, min 6.720us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 1.525ms, max 1.525ms, min 1.525ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 129: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 10.511us, max 14.482us, min 6.253us - ExecTime: avg 50.27us, max 59.249us, min 37.678us - InputRows: sum 964, avg 80, max 97, min 55 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 27.383us, max 43.26us, min 21.803us - RowsProduced: sum 964, avg 80, max 97, min 55 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=59): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#824] - group by: STATIS_DATE, USER_ID - cardinality=60,237 - projections: USER_ID, GZH_NEW_NUM, CAST(STATIS_DATE AS DOUBLE) - project output tuple id: 60 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 504ns, max 800ns, min 177ns - ExecTime: avg 65.889us, max 85.872us, min 55.449us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.247us, max 22.431us, min 5.220us - ProjectionTime: avg 25.191us, max 37.165us, min 20.617us - RowsProduced: sum 964, avg 80, max 97, min 55 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s316ms, max 4s351ms, min 4s287ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=59): - CloseTime: avg 679ns, max 1.238us, min 318ns - ExecTime: avg 147.487us, max 222.598us, min 89.723us - InputRows: sum 1.471K (1471), avg 122, max 148, min 83 - MemoryUsage: sum , avg , max , min - HashTable: sum 34.22 KB, avg 2.85 KB, max 2.98 KB, min 1.48 KB - PeakMemoryUsage: sum 6.22 MB, avg 530.85 KB, max 530.98 KB, min 529.48 KB - SerializeKeyArena: sum 6.19 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 25.415us, max 89.83us, min 13.916us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=58): - PlanInfo - offset: 0 - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 4.823us, max 9.475us, min 1.981us - ExecTime: avg 80.203us, max 120.323us, min 57.281us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 106.63 KB, avg 8.88 KB, max 14.56 KB, min 5.06 KB - OpenTime: avg 21.236us, max 50.704us, min 10.581us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.471K (1471), avg 122, max 148, min 83 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s287ms, max 4s296ms, min 4s270ms Fragment 130: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.195us, max 15.728us, min 8.395us - ExecTime: avg 595.18us, max 4.560ms, min 197.794us - InputRows: sum 1.471K (1471), avg 122, max 146, min 100 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 156.44 KB, avg 13.04 KB, max 14.81 KB, min 11.00 KB - OpenTime: avg 77.133us, max 139.304us, min 58.733us - RowsProduced: sum 1.471K (1471), avg 122, max 146, min 100 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#821] - group by: STATIS_DATE, USER_ID - cardinality=60,237 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 8.825us, max 15.5us, min 5.742us - ExecTime: avg 185.617us, max 229.114us, min 149.770us - MemoryUsage: sum , avg , max , min - HashTable: sum 62.72 KB, avg 5.23 KB, max 5.98 KB, min 2.98 KB - PeakMemoryUsage: sum 6.26 MB, avg 533.89 KB, max 541.98 KB, min 530.98 KB - SerializeKeyArena: sum 6.20 MB, avg 528.67 KB, max 536.00 KB, min 528.00 KB - OpenTime: avg 33.240us, max 66.848us, min 19.754us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.471K (1471), avg 122, max 146, min 100 HASH_JOIN_OPERATOR (id=56): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (UNIONID = UNION_ID) - runtime filters: RF024[min_max] <- UNION_ID(14904/16384/16384), RF025[bloom] <- UNION_ID(14904/16384/16384) - cardinality=120,475 - vec output tuple id: 57 - output tuple id: 57 - vIntermediate tuple ids: 56 - hash output slot ids: 794 795 797 - projections: date_format(FRIST_FANS_TIME, '%Y%m%d'), USER_ID, EXTERNAL_USER_ID - project output tuple id: 57 - BlocksProduced: sum 109, avg 9, max 10, min 9 - CloseTime: avg 7.8us, max 13.457us, min 3.871us - ExecTime: avg 1.532ms, max 1.634ms, min 1.425ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.48 MB, avg 297.00 KB, max 420.00 KB, min 144.00 KB - ProbeKeyArena: sum 3.48 MB, avg 297.00 KB, max 420.00 KB, min 144.00 KB - OpenTime: avg 14.302us, max 20.17us, min 9.155us - ProbeRows: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - ProjectionTime: avg 63.672us, max 86.513us, min 54.940us - RowsProduced: sum 1.631K (1631), avg 135, max 164, min 111 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s388ms, max 2s466ms, min 2s109ms EXCHANGE_OPERATOR (id=55): - PlanInfo - offset: 0 - BlocksProduced: sum 101, avg 8, max 9, min 8 - CloseTime: avg 6.460us, max 10.979us, min 3.548us - ExecTime: avg 94.393us, max 118.632us, min 78.377us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 15.53 MB, avg 1.29 MB, max 1.33 MB, min 1.28 MB - OpenTime: avg 20.421us, max 33.921us, min 11.36us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s799ms, max 1s816ms, min 1s792ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=56): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 125.977us, max 296.200us, min 76.401us - InputRows: sum 1.631K (1631), avg 135, max 164, min 111 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 148.12 KB, avg 12.34 KB, max 14.89 KB, min 10.08 KB - BuildKeyArena: sum 120.00 KB, avg 10.00 KB, max 12.00 KB, min 4.00 KB - HashTable: sum 20.07 KB, avg 1.67 KB, max 1.81 KB, min 1.55 KB - PeakMemoryUsage: sum 240.09 KB, avg 20.01 KB, max 24.70 KB, min 11.62 KB - OpenTime: avg 28.771us, max 60.891us, min 12.758us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=53): - PlanInfo - offset: 0 - BlocksProduced: sum 36, avg 3, max 3, min 3 - CloseTime: avg 4.456us, max 12.759us, min 1.734us - ExecTime: avg 37.666us, max 56.688us, min 20.469us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 208.51 KB, avg 17.38 KB, max 25.02 KB, min 8.58 KB - OpenTime: avg 17.501us, max 40.381us, min 9.222us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.631K (1631), avg 135, max 164, min 111 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s180ms, max 4s213ms, min 4s163ms Fragment 131: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=55,dst_id=55): - BlocksProduced: sum 103, avg 103, max 103, min 103 - CloseTime: avg 14.547us, max 14.547us, min 14.547us - ExecTime: avg 46.56ms, max 46.56ms, min 46.56ms - InputRows: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 15.53 MB, avg 15.53 MB, max 15.53 MB, min 15.53 MB - OpenTime: avg 68.686us, max 68.686us, min 68.686us - RowsProduced: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=54. table name = DIM_OPENID_B): - PlanInfo - TABLE: ods_demo.DIM_OPENID_B(DIM_OPENID_B), PREAGGREGATION: ON - runtime filters: RF024[min_max] -> CAST(UNIONID AS VARCHAR(96)), RF025[bloom] -> CAST(UNIONID AS VARCHAR(96)) - partitions=1/1 (DIM_OPENID_B), tablets=1/1, tabletList=22339 - cardinality=405258, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 100, avg 100, max 100, min 100 - CloseTime: avg 15.549us, max 15.549us, min 15.549us - ExecTime: avg 30.430ms, max 30.430ms, min 30.430ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 358.426us, max 358.426us, min 358.426us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 29.465ms, max 29.465ms, min 29.465ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 10.12 MB, avg 10.12 MB, max 10.12 MB, min 10.12 MB Fragment 132: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 11.596us, max 17.101us, min 8.256us - ExecTime: avg 273.581us, max 607.946us, min 154.250us - InputRows: sum 1.631K (1631), avg 135, max 905, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 231.44 KB, avg 19.29 KB, max 130.00 KB, min 0.00 - OpenTime: avg 87.396us, max 154.206us, min 60.540us - RowsProduced: sum 1.631K (1631), avg 135, max 905, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=52): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (UNIONID = UNION_ID) - runtime filters: RF022[min_max] <- UNION_ID(14904/16384/16384), RF023[in_or_bloom] <- UNION_ID(14904/16384/16384) - cardinality=120,442 - vec output tuple id: 54 - output tuple id: 54 - vIntermediate tuple ids: 53 - hash output slot ids: 787 712 713 714 - projections: EXTERNAL_USER_ID, USER_ID, UNION_ID, FRIST_FANS_TIME - project output tuple id: 54 - BlocksProduced: sum 27, avg 2, max 12, min 0 - CloseTime: avg 3.933us, max 9.859us, min 1.231us - ExecTime: avg 409.383us, max 2.236ms, min 19.66us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 156.00 KB, avg 13.00 KB, max 76.00 KB, min 0.00 - ProbeKeyArena: sum 156.00 KB, avg 13.00 KB, max 76.00 KB, min 0.00 - OpenTime: avg 13.599us, max 21.149us, min 9.926us - ProbeRows: sum 11.25K (11250), avg 937, max 5.842K (5842), min 0 - ProjectionTime: avg 23.465us, max 93.840us, min 3.798us - RowsProduced: sum 1.631K (1631), avg 135, max 905, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s222ms, max 2s464ms, min 1s948ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 28, avg 2, max 12, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 13.840us, max 61.875us, min 1.250us - GetBlockFailedTime: sum 12, avg 1, max 1, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.89 MB, avg 161.67 KB, max 852.00 KB, min 0.00 - OpenTime: avg 789ns, max 932ns, min 616ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 11.25K (11250), avg 937, max 5.842K (5842), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s829ms, max 1s939ms, min 1s518ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 22.958us, max 45.850us, min 6.936us - InputRows: sum 11.25K (11250), avg 937, max 4.236K (4236), min 141 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.227us, max 2.206us, min 1.43us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - PREDICATES: (date_format(FRIST_FANS_TIME, '%Y%m%d') >= '20240101') AND (FANS_FLAG = 'Y') - runtime filters: RF022[min_max] -> CAST(UNIONID AS VARCHAR(96)), RF023[in_or_bloom] -> CAST(UNIONID AS VARCHAR(96)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: FRIST_FANS_TIME, UNIONID - project output tuple id: 52 - BlocksProduced: sum 28, avg 2, max 3, min 2 - CloseTime: avg 81.699us, max 126.76us, min 28.344us - ExecTime: avg 125.461ms, max 243.343ms, min 44.213ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 228.769us, max 358.393us, min 144.367us - ProjectionTime: avg 2.365ms, max 22.813ms, min 291.767us - RowsProduced: sum 11.25K (11250), avg 937, max 4.236K (4236), min 141 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 122.671ms, max 220.244ms, min 42.982ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 2.88 MB, avg 246.00 KB, max 364.00 KB, min 124.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=52): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 14.661ms, max 175.142ms, min 40.127us - InputRows: sum 708.298K (708298), avg 59.024K (59024), max 708.298K (708298), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 56.72 MB, avg 4.73 MB, max 56.72 MB, min 0.00 - BuildKeyArena: sum 32.00 MB, avg 2.67 MB, max 32.00 MB, min 0.00 - HashTable: sum 6.70 MB, avg 571.90 KB, max 6.70 MB, min 0.00 - PeakMemoryUsage: sum 95.42 MB, avg 7.95 MB, max 95.42 MB, min 0.00 - OpenTime: avg 29.623us, max 87.193us, min 16.559us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 3s724ms, max 4s69ms, min 0ns EXCHANGE_OPERATOR (id=50): - PlanInfo - offset: 0 - BlocksProduced: sum 2.058K (2058), avg 171, max 2.058K (2058), min 0 - CloseTime: avg 1.301ms, max 15.535ms, min 2.149us - ExecTime: avg 3.482ms, max 25.946ms, min 20.721us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.71 MB, avg 487.42 KB, max 5.71 MB, min 0.00 - OpenTime: avg 20.548us, max 34.58us, min 14.154us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 708.298K (708298), avg 59.024K (59024), max 708.298K (708298), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 219.37ms, max 2s628ms, min 0ns Fragment 133: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 12.80us, max 13.605us, min 9.518us - ExecTime: avg 11.805ms, max 12.30ms, min 11.507ms - InputRows: sum 708.298K (708298), avg 177.074K (177074), max 177.744K (177744), min 176.388K (176388) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 31.944us, max 39.390us, min 21.773us - RowsProduced: sum 708.298K (708298), avg 177.074K (177074), max 177.744K (177744), min 176.388K (176388) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=49): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF020[min_max] <- EXTERNAL_USER_ID(14904/16384/16384), RF021[bloom] <- EXTERNAL_USER_ID(14904/16384/16384) - cardinality=14,904 - vec output tuple id: 50 - output tuple id: 50 - vIntermediate tuple ids: 49 - hash output slot ids: 649 650 652 - projections: EXTERNAL_USER_ID, USER_ID, UNION_ID - project output tuple id: 50 - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 16.164us, max 19.930us, min 11.332us - ExecTime: avg 369.796ms, max 406.751ms, min 310.37ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 592.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - ProbeKeyArena: sum 592.00 KB, avg 148.00 KB, max 148.00 KB, min 148.00 KB - OpenTime: avg 16.342us, max 19.346us, min 13.46us - ProbeRows: sum 8.342087M (8342087), avg 2.085521M (2085521), max 2.086985M (2086985), min 2.082107M (2082107) - ProjectionTime: avg 3.319ms, max 3.620ms, min 3.63ms - RowsProduced: sum 708.298K (708298), avg 177.074K (177074), max 177.744K (177744), min 176.388K (176388) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 545.223ms, max 750.53ms, min 321.465ms OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF020[min_max] -> EXTERNAL_USER_ID, RF021[bloom] -> EXTERNAL_USER_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 58.262us, max 71.843us, min 49.338us - ExecTime: avg 254.304ms, max 314.390ms, min 173.802ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.639ms, max 9.898ms, min 164.889us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342087M (8342087), avg 2.085521M (2085521), max 2.086985M (2086985), min 2.082107M (2082107) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 245.173ms, max 285.984ms, min 171.17ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.47 MB, avg 10.12 MB, max 10.12 MB, min 10.12 MB Pipeline : 1(instance_num=4): HASH_JOIN_SINK_OPERATOR (id=49): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 47.684ms, max 88.95ms, min 27.57ms - InputRows: sum 712.703K (712703), avg 178.175K (178175), max 178.793K (178793), min 177.502K (177502) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 34.66 MB, avg 8.67 MB, max 8.70 MB, min 8.63 MB - BuildKeyArena: sum 24.49 MB, avg 6.12 MB, max 6.14 MB, min 6.10 MB - HashTable: sum 6.72 MB, avg 1.68 MB, max 1.68 MB, min 1.68 MB - PeakMemoryUsage: sum 65.86 MB, avg 16.46 MB, max 16.52 MB, min 16.41 MB - OpenTime: avg 14.188us, max 16.450us, min 11.942us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=47): - PlanInfo - offset: 0 - BlocksProduced: sum 172, avg 43, max 43, min 43 - CloseTime: avg 14.275us, max 16.408us, min 9.452us - ExecTime: avg 658.821us, max 699.57us, min 622.261us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 19.13 MB, avg 4.78 MB, max 6.38 MB, min 3.00 MB - OpenTime: avg 15.427us, max 17.453us, min 13.189us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 178.175K (178175), max 178.793K (178793), min 177.502K (177502) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s408ms, max 1s439ms, min 1s355ms Fragment 134: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - BlocksProduced: sum 176, avg 14, max 20, min 12 - CloseTime: avg 16.577us, max 23.713us, min 7.991us - ExecTime: avg 9.958ms, max 19.443ms, min 5.410ms - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 82.896K (82896), min 43.285K (43285) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 54.70 MB, avg 4.56 MB, max 6.44 MB, min 3.38 MB - OpenTime: avg 40.590us, max 48.976us, min 32.299us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.896K (82896), min 43.285K (43285) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=46): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF018[min_max] <- USER_ID(109/128/2048), RF019[in_or_bloom] <- USER_ID(109/128/2048) - cardinality=14,904 - vec output tuple id: 47 - output tuple id: 47 - vIntermediate tuple ids: 46 - hash output slot ids: 644 645 - projections: EXTERNAL_USER_ID, USER_ID - project output tuple id: 47 - BlocksProduced: sum 203, avg 16, max 24, min 12 - CloseTime: avg 18.307us, max 34.495us, min 7.734us - ExecTime: avg 10.46ms, max 42.709ms, min 3.909ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.26 MB, avg 107.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.26 MB, avg 107.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 15.502us, max 28.151us, min 9.449us - ProbeRows: sum 712.703K (712703), avg 59.391K (59391), max 82.896K (82896), min 43.285K (43285) - ProjectionTime: avg 689.621us, max 812.19us, min 527.904us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.896K (82896), min 43.285K (43285) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 203, avg 16, max 24, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 114.146us, max 157.97us, min 72.72us - GetBlockFailedTime: sum 93, avg 7, max 9, min 7 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 14.08 MB, avg 1.17 MB, max 1.97 MB, min 448.00 KB - OpenTime: avg 1.452us, max 8.676us, min 552ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.896K (82896), min 43.285K (43285) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s238ms, max 1s641ms, min 731.257ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 101.321us, max 203.326us, min 13.755us - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 178.881K (178881), min 4 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.524us, max 5.118us, min 1.32us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) - runtime filters: RF018[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF019[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID - project output tuple id: 45 - BlocksProduced: sum 203, avg 16, max 47, min 1 - CloseTime: avg 47.369us, max 60.900us, min 28.990us - ExecTime: avg 237.908ms, max 447.325ms, min 116.723ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.269ms, max 10.713ms, min 267.936us - ProjectionTime: avg 2.763ms, max 22.526ms, min 10.227us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 178.881K (178881), min 4 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 8.29081M (8290810), avg 690.9K (690900), max 1.136506M (1136506), min 191.49K (191490) - filter id = -1 input: sum 9.716216M (9716216), avg 809.684K (809684), max 1.349576M (1349576), min 191.5K (191500) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 232.611ms, max 445.679ms, min 115.670ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 24.89 MB, avg 2.07 MB, max 5.32 MB, min 80.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=46): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 68.496us, max 159.238us, min 30.773us - InputRows: sum 109, avg 9, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.65 KB, avg 140.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 956.00 B, avg 79.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 2.58 KB, avg 219.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 36.509us, max 123.31us, min 14.875us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 227.5ms, max 257.626ms, min 0ns EXCHANGE_OPERATOR (id=44): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 7.721us, max 14.45us, min 3.537us - ExecTime: avg 29.187us, max 44.212us, min 18.609us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 20.257us, max 39.901us, min 12.528us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 9, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20.90ms, max 241.91ms, min 0ns Fragment 135: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=44,dst_id=44): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.685us, max 11.685us, min 11.685us - ExecTime: avg 51.821us, max 51.821us, min 51.821us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 29.274us, max 29.274us, min 29.274us - RowsProduced: sum 109, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=43. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: USER_NAME IS NOT NULL - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 43 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 26.760us, max 26.760us, min 26.760us - ExecTime: avg 170.97ms, max 170.97ms, min 170.97ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 196.683us, max 196.683us, min 196.683us - ProjectionTime: avg 4.388us, max 4.388us, min 4.388us - RowsProduced: sum 109, avg 109, max 109, min 109 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 169.832ms, max 169.832ms, min 169.832ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 136: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 12.226us, max 18.960us, min 7.659us - ExecTime: avg 240.312us, max 327.780us, min 182.558us - InputRows: sum 542, avg 45, max 53, min 36 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 54.81 KB, avg 4.57 KB, max 5.03 KB, min 4.19 KB - OpenTime: avg 89.931us, max 142.50us, min 68.983us - RowsProduced: sum 542, avg 45, max 53, min 36 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=41): - PlanInfo - output: multi_distinct_count(DISTINCT partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID))[#613] - group by: STATIS_DATE, USER_ID - cardinality=405,930 - projections: CAST(STATIS_DATE AS DOUBLE), USER_ID, GZH_NEW_NUM_2 - project output tuple id: 41 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 494ns, max 963ns, min 256ns - ExecTime: avg 59.664us, max 85.859us, min 40.847us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.606us, max 22.90us, min 6.293us - ProjectionTime: avg 21.63us, max 37.495us, min 12.337us - RowsProduced: sum 542, avg 45, max 53, min 36 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s607ms, max 4s616ms, min 4s591ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=41): - CloseTime: avg 604ns, max 942ns, min 253ns - ExecTime: avg 1.222ms, max 13.159ms, min 102.567us - InputRows: sum 659, avg 54, max 67, min 41 - MemoryUsage: sum , avg , max , min - HashTable: sum 17.72 KB, avg 1.48 KB, max 1.48 KB, min 1.48 KB - PeakMemoryUsage: sum 6.20 MB, avg 529.48 KB, max 529.48 KB, min 529.48 KB - SerializeKeyArena: sum 6.19 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 20.652us, max 32.753us, min 13.809us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=40): - PlanInfo - offset: 0 - BlocksProduced: sum 143, avg 11, max 12, min 11 - CloseTime: avg 4.263us, max 10.13us, min 1.365us - ExecTime: avg 80.71us, max 103.426us, min 64.176us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 51.38 KB, avg 4.28 KB, max 5.44 KB, min 3.28 KB - OpenTime: avg 20.821us, max 41.487us, min 14.434us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 659, avg 54, max 67, min 41 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4s549ms, max 4s574ms, min 4s518ms Fragment 137: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 13.558us, max 27.929us, min 9.923us - ExecTime: avg 1.18ms, max 9.530ms, min 193.677us - InputRows: sum 659, avg 54, max 76, min 40 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 89.38 KB, avg 7.45 KB, max 8.88 KB, min 6.03 KB - OpenTime: avg 77.962us, max 104.926us, min 67.75us - RowsProduced: sum 659, avg 54, max 76, min 40 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#610] - group by: STATIS_DATE, USER_ID - cardinality=405,930 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 9.153us, max 12.491us, min 4.658us - ExecTime: avg 285.59us, max 372.243us, min 212.89us - MemoryUsage: sum , avg , max , min - HashTable: sum 25.22 KB, avg 2.10 KB, max 2.98 KB, min 1.48 KB - PeakMemoryUsage: sum 6.21 MB, avg 530.10 KB, max 530.98 KB, min 529.48 KB - SerializeKeyArena: sum 6.19 MB, avg 528.00 KB, max 528.00 KB, min 528.00 KB - OpenTime: avg 31.447us, max 72.253us, min 18.298us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 659, avg 54, max 76, min 40 HASH_JOIN_OPERATOR (id=38): - PlanInfo - join op: INNER JOIN(PARTITIONED)[] - equal join conjunct: (UNION_ID = UNIONID) - runtime filters: RF016[min_max] <- UNIONID(202629/262144/262144), RF017[bloom] <- UNIONID(202629/262144/262144) - cardinality=811,860 - vec output tuple id: 38 - output tuple id: 38 - vIntermediate tuple ids: 37 - hash output slot ids: 419 597 598 - projections: date_format(SUBSCRIBE_TIME, '%Y%m%d'), USER_ID, EXTERNAL_USER_ID - project output tuple id: 38 - BlocksProduced: sum 185, avg 15, max 22, min 10 - CloseTime: avg 14.8us, max 39.402us, min 9.69us - ExecTime: avg 1.905ms, max 13.641ms, min 601.882us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 48.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 15.224us, max 26.491us, min 11.178us - ProbeRows: sum 677, avg 56, max 79, min 40 - ProjectionTime: avg 1.473ms, max 13.283ms, min 255.376us - RowsProduced: sum 669, avg 55, max 77, min 40 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=37): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (UNIONID = UNION_ID) - other predicates: (date_format(FRIST_FANS_TIME, '%Y%m%d') >= '20240101') - runtime filters: RF014[min_max] <- UNION_ID(14904/16384/16384), RF015[bloom] <- UNION_ID(14904/16384/16384) - cardinality=1,623,720 - vec output tuple id: 36 - output tuple id: 36 - vIntermediate tuple ids: 35 - hash output slot ids: 517 518 519 573 - projections: EXTERNAL_USER_ID, USER_ID, UNION_ID - project output tuple id: 36 - BlocksProduced: sum 190, avg 15, max 23, min 10 - CloseTime: avg 13.55us, max 54.14us, min 4.832us - ExecTime: avg 71.400ms, max 261.578ms, min 39.458ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.85 MB, avg 414.00 KB, max 444.00 KB, min 396.00 KB - ProbeKeyArena: sum 4.85 MB, avg 414.00 KB, max 444.00 KB, min 396.00 KB - OpenTime: avg 11.553us, max 18.692us, min 7.451us - ProbeRows: sum 17.327563M (17327563), avg 1.443963M (1443963), max 10.976264M (10976264), min 576.75K (576750) - ProjectionTime: avg 479.723us, max 2.56ms, min 310.243us - RowsProduced: sum 677, avg 56, max 79, min 40 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s397ms, max 1s424ms, min 1s367ms EXCHANGE_OPERATOR (id=36): - PlanInfo - offset: 0 - BlocksProduced: sum 3.18K (3180), avg 265, max 1.602K (1602), min 142 - CloseTime: avg 8.784us, max 12.137us, min 5.56us - ExecTime: avg 6.502ms, max 46.710ms, min 1.999ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 105.89 MB, avg 8.82 MB, max 19.73 MB, min 3.89 MB - OpenTime: avg 19.576us, max 36.360us, min 14.109us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 17.327563M (17327563), avg 1.443963M (1443963), max 10.976264M (10976264), min 576.75K (576750) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s42ms, max 2s142ms, min 1s940ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=38): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.67ms, max 12.394ms, min 2.76ms - InputRows: sum 209.907K (209907), avg 17.492K (17492), max 17.655K (17655), min 17.182K (17182) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 8.41 MB, avg 717.46 KB, max 724.13 KB, min 704.73 KB - BuildKeyArena: sum 6.48 MB, avg 552.67 KB, max 556.00 KB, min 544.00 KB - HashTable: sum 2.30 MB, avg 196.34 KB, max 196.97 KB, min 195.13 KB - PeakMemoryUsage: sum 17.14 MB, avg 1.43 MB, max 1.44 MB, min 1.41 MB - OpenTime: avg 22.276us, max 32.604us, min 15.724us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=26): - PlanInfo - offset: 0 - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 361.294us, max 4.200ms, min 8.983us - ExecTime: avg 449.802us, max 4.267ms, min 77.423us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.35 MB, avg 456.50 KB, max 720.00 KB, min 286.00 KB - OpenTime: avg 26.455us, max 95.561us, min 11.584us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 209.907K (209907), avg 17.492K (17492), max 17.655K (17655), min 17.182K (17182) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 426.89ms, max 442.193ms, min 403.519ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=37): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.32ms, max 1.553ms, min 805.738us - InputRows: sum 78.283K (78283), avg 6.523K (6523), max 6.695K (6695), min 6.334K (6334) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 6.27 MB, avg 535.00 KB, max 549.05 KB, min 519.44 KB - BuildKeyArena: sum 2.54 MB, avg 216.33 KB, max 220.00 KB, min 212.00 KB - HashTable: sum 766.35 KB, avg 63.86 KB, max 64.70 KB, min 62.94 KB - PeakMemoryUsage: sum 9.51 MB, avg 811.19 KB, max 829.74 KB, min 790.37 KB - OpenTime: avg 21.844us, max 58.198us, min 8.899us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=34): - PlanInfo - offset: 0 - BlocksProduced: sum 48, avg 4, max 4, min 4 - CloseTime: avg 9.797us, max 17.756us, min 6.183us - ExecTime: avg 98.775us, max 137.122us, min 77.920us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.91 MB, avg 248.00 KB, max 558.00 KB, min 186.00 KB - OpenTime: avg 15.456us, max 28.366us, min 7.924us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 78.283K (78283), avg 6.523K (6523), max 6.695K (6695), min 6.334K (6334) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s68ms, max 3s156ms, min 2s694ms Fragment 138: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - BlocksProduced: sum 3.196K (3196), avg 266, max 487, min 121 - CloseTime: avg 14.698us, max 24.194us, min 11.71us - ExecTime: avg 125.543ms, max 376.461ms, min 46.893ms - InputRows: sum 17.327563M (17327563), avg 1.443963M (1443963), max 2.548473M (2548473), min 503.815K (503815) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 533.32 MB, avg 44.44 MB, max 82.99 MB, min 25.80 MB - OpenTime: avg 67.248us, max 87.303us, min 57.193us - RowsProduced: sum 17.327563M (17327563), avg 1.443963M (1443963), max 2.548473M (2548473), min 503.815K (503815) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF014[min_max] -> CAST(UNIONID AS VARCHAR(96)), RF015[bloom] -> CAST(UNIONID AS VARCHAR(96)) - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 4.564K (4564), avg 380, max 660, min 137 - CloseTime: avg 57.122us, max 93.496us, min 27.318us - ExecTime: avg 251.532ms, max 450.614ms, min 168.856ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 169.942us, max 289.687us, min 112.41us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 17.327563M (17327563), avg 1.443963M (1443963), max 2.548473M (2548473), min 503.815K (503815) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 242.425ms, max 442.159ms, min 167.891ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 271.38 MB, avg 22.62 MB, max 33.71 MB, min 10.12 MB Fragment 139: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - BlocksProduced: sum 48, avg 12, max 12, min 12 - CloseTime: avg 12.999us, max 14.940us, min 10.817us - ExecTime: avg 8.318ms, max 14.966ms, min 5.537ms - InputRows: sum 78.283K (78283), avg 19.57K (19570), max 19.818K (19818), min 19.242K (19242) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 8.72 MB, avg 2.18 MB, max 2.18 MB, min 2.18 MB - OpenTime: avg 71.206us, max 78.118us, min 59.87us - RowsProduced: sum 78.283K (78283), avg 19.57K (19570), max 19.818K (19818), min 19.242K (19242) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=33): - PlanInfo - join op: INNER JOIN(BUCKET_SHUFFLE)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - runtime filters: RF012[min_max] <- EXTERNAL_USER_ID(14904/16384/16384), RF013[bloom] <- EXTERNAL_USER_ID(14904/16384/16384) - cardinality=14,904 - vec output tuple id: 33 - output tuple id: 33 - vIntermediate tuple ids: 32 - hash output slot ids: 452 453 456 - projections: EXTERNAL_USER_ID, USER_ID, UNION_ID - project output tuple id: 33 - BlocksProduced: sum 61, avg 15, max 16, min 15 - CloseTime: avg 23.134us, max 33.471us, min 15.101us - ExecTime: avg 23.200ms, max 34.893ms, min 18.293ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 864.00 KB, avg 216.00 KB, max 420.00 KB, min 148.00 KB - ProbeKeyArena: sum 864.00 KB, avg 216.00 KB, max 420.00 KB, min 148.00 KB - OpenTime: avg 17.335us, max 20.99us, min 12.674us - ProbeRows: sum 215.407K (215407), avg 53.851K (53851), max 54.0K (54000), min 53.623K (53623) - ProjectionTime: avg 531.538us, max 556.993us, min 483.493us - RowsProduced: sum 78.283K (78283), avg 19.57K (19570), max 19.818K (19818), min 19.242K (19242) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 383.635ms, max 418.626ms, min 310.96ms OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF012[min_max] -> EXTERNAL_USER_ID, RF013[bloom] -> EXTERNAL_USER_ID, RF016[min_max] -> CAST(UNION_ID AS VARCHAR(600)), RF017[bloom] -> CAST(UNION_ID AS VARCHAR(600)) - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 61, avg 15, max 16, min 15 - CloseTime: avg 59.197us, max 80.813us, min 43.630us - ExecTime: avg 320.783ms, max 441.775ms, min 265.516ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 415.162us, max 530.915us, min 308.560us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 215.407K (215407), avg 53.851K (53851), max 54.0K (54000), min 53.623K (53623) - RuntimeFilterInfo: sum , avg , max , min - filter id = 17 filtered: sum 8.126601M (8126601), avg 2.03165M (2031650), max 2.033014M (2033014), min 2.028253M (2028253) - filter id = 17 input: sum 8.342037M (8342037), avg 2.085509M (2085509), max 2.086977M (2086977), min 2.082089M (2082089) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 319.907ms, max 440.980ms, min 264.677ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 6.70 MB, avg 1.67 MB, max 1.72 MB, min 1.66 MB Pipeline : 1(instance_num=4): HASH_JOIN_SINK_OPERATOR (id=33): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 105.889ms, max 150.166ms, min 70.548ms - InputRows: sum 712.703K (712703), avg 178.175K (178175), max 178.793K (178793), min 177.502K (177502) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 45.53 MB, avg 11.38 MB, max 11.42 MB, min 11.34 MB - BuildKeyArena: sum 24.49 MB, avg 6.12 MB, max 6.14 MB, min 6.10 MB - HashTable: sum 6.72 MB, avg 1.68 MB, max 1.68 MB, min 1.68 MB - PeakMemoryUsage: sum 76.73 MB, avg 19.18 MB, max 19.25 MB, min 19.11 MB - OpenTime: avg 23.714us, max 35.355us, min 12.677us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=31): - PlanInfo - offset: 0 - BlocksProduced: sum 177, avg 44, max 45, min 44 - CloseTime: avg 15.112us, max 18.26us, min 13.336us - ExecTime: avg 881.718us, max 950.105us, min 793.246us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 37.65 MB, avg 9.41 MB, max 12.87 MB, min 5.24 MB - OpenTime: avg 16.852us, max 19.478us, min 13.923us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 178.175K (178175), max 178.793K (178793), min 177.502K (177502) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s290ms, max 1s332ms, min 1s264ms Fragment 140: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - BlocksProduced: sum 180, avg 15, max 20, min 12 - CloseTime: avg 15.518us, max 20.685us, min 8.388us - ExecTime: avg 22.894ms, max 42.702ms, min 4.992ms - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 80.173K (80173), min 41.703K (41703) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 70.38 MB, avg 5.86 MB, max 7.86 MB, min 4.11 MB - OpenTime: avg 45.119us, max 96.93us, min 29.395us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 80.173K (80173), min 41.703K (41703) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=30): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF010[min_max] <- USER_ID(109/128/2048), RF011[in_or_bloom] <- USER_ID(109/128/2048) - cardinality=14,904 - vec output tuple id: 30 - output tuple id: 30 - vIntermediate tuple ids: 29 - hash output slot ids: 448 427 447 - projections: EXTERNAL_USER_ID, USER_ID, USER_ID - project output tuple id: 30 - BlocksProduced: sum 200, avg 16, max 23, min 12 - CloseTime: avg 17.272us, max 29.347us, min 8.781us - ExecTime: avg 29.636ms, max 132.865ms, min 6.498ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.56 MB, avg 133.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.56 MB, avg 133.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 13.643us, max 27.231us, min 9.458us - ProbeRows: sum 712.703K (712703), avg 59.391K (59391), max 80.173K (80173), min 41.703K (41703) - ProjectionTime: avg 789.994us, max 1.93ms, min 584.954us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 80.173K (80173), min 41.703K (41703) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 200, avg 16, max 23, min 12 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 106.647us, max 186.256us, min 53.208us - GetBlockFailedTime: sum 64, avg 5, max 9, min 3 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 23.67 MB, avg 1.97 MB, max 3.06 MB, min 896.00 KB - OpenTime: avg 876ns, max 1.752us, min 593ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 80.173K (80173), min 41.703K (41703) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s168ms, max 1s484ms, min 635.604ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 102.242us, max 264.315us, min 8.357us - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 178.881K (178881), min 4 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.382us, max 10.754us, min 1.31us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - PREDICATES: (EXTERNAL_USER_DELETE_FLAG = 0) AND (USER_DELETE_FLAG = 0) - runtime filters: RF010[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF011[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: EXTERNAL_USER_ID, USER_ID - project output tuple id: 28 - BlocksProduced: sum 200, avg 16, max 47, min 1 - CloseTime: avg 51.704us, max 66.364us, min 39.733us - ExecTime: avg 159.866ms, max 475.144ms, min 15.597ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 506.276us, max 617.952us, min 282.244us - ProjectionTime: avg 960.618us, max 2.99ms, min 7.670us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 178.881K (178881), min 4 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 8.29081M (8290810), avg 690.9K (690900), max 1.136506M (1136506), min 191.49K (191490) - filter id = -1 input: sum 9.716216M (9716216), avg 809.684K (809684), max 1.349576M (1349576), min 191.5K (191500) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 158.168ms, max 472.0ms, min 14.524ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 24.89 MB, avg 2.07 MB, max 5.32 MB, min 80.00 KB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=30): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 64.95us, max 125.213us, min 29.560us - InputRows: sum 109, avg 9, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.65 KB, avg 140.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 956.00 B, avg 79.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 2.58 KB, avg 219.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 32.357us, max 100.406us, min 12.579us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 289.468ms, max 324.16ms, min 0ns EXCHANGE_OPERATOR (id=28): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 7.844us, max 14.62us, min 2.779us - ExecTime: avg 29.953us, max 37.561us, min 20.112us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 20.773us, max 32.605us, min 14.95us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 9, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 22.293ms, max 267.526ms, min 0ns Fragment 141: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=28,dst_id=28): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 10.542us, max 10.542us, min 10.542us - ExecTime: avg 53.140us, max 53.140us, min 53.140us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 28.601us, max 28.601us, min 28.601us - RowsProduced: sum 109, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=27. table name = ODS_EXCEL_QYWX_ZONGBU): - PlanInfo - TABLE: ods_demo.ODS_EXCEL_QYWX_ZONGBU(ODS_EXCEL_QYWX_ZONGBU), PREAGGREGATION: ON - PREDICATES: USER_NAME IS NOT NULL - partitions=1/1 (ODS_EXCEL_QYWX_ZONGBU), tablets=1/1, tabletList=15070 - cardinality=109, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: USER_ID - project output tuple id: 26 - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 22.640us, max 22.640us, min 22.640us - ExecTime: avg 215.802ms, max 215.802ms, min 215.802ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 207.566us, max 207.566us, min 207.566us - ProjectionTime: avg 3.265us, max 3.265us, min 3.265us - RowsProduced: sum 109, avg 109, max 109, min 109 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 215.534ms, max 215.534ms, min 215.534ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Fragment 142: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=26,dst_id=26): - BlocksProduced: sum 60, avg 60, max 60, min 60 - CloseTime: avg 10.667us, max 10.667us, min 10.667us - ExecTime: avg 70.947ms, max 70.947ms, min 70.947ms - InputRows: sum 209.907K (209907), avg 209.907K (209907), max 209.907K (209907), min 209.907K (209907) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.65 MB, avg 11.65 MB, max 11.65 MB, min 11.65 MB - OpenTime: avg 78.680us, max 78.680us, min 78.680us - RowsProduced: sum 209.907K (209907), avg 209.907K (209907), max 209.907K (209907), min 209.907K (209907) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=25. table name = DIM_OPENID_B): - PlanInfo - TABLE: ods_demo.DIM_OPENID_B(DIM_OPENID_B), PREAGGREGATION: ON - PREDICATES: (CAST(SUBSCRIBE AS DOUBLE) = 1) - partitions=1/1 (DIM_OPENID_B), tablets=1/1, tabletList=22339 - cardinality=405258, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - projections: UNIONID, SUBSCRIBE_TIME - project output tuple id: 24 - BlocksProduced: sum 99, avg 99, max 99, min 99 - CloseTime: avg 35.881us, max 35.881us, min 35.881us - ExecTime: avg 501.715ms, max 501.715ms, min 501.715ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 212.299us, max 212.299us, min 212.299us - ProjectionTime: avg 114.450ms, max 114.450ms, min 114.450ms - RowsProduced: sum 209.907K (209907), avg 209.907K (209907), max 209.907K (209907), min 209.907K (209907) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 386.208ms, max 386.208ms, min 386.208ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 10.08 MB, avg 10.08 MB, max 10.08 MB, min 10.08 MB Fragment 143: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - BlocksProduced: sum 60, avg 5, max 5, min 5 - CloseTime: avg 17.893us, max 25.522us, min 12.309us - ExecTime: avg 1.670ms, max 4.666ms, min 1.136ms - InputRows: sum 876, avg 73, max 75, min 72 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 81.68 MB, avg 6.81 MB, max 29.16 MB, min 4.70 MB - OpenTime: avg 47.762us, max 77.903us, min 39.270us - RowsProduced: sum 876, avg 73, max 75, min 72 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - PlanInfo - STREAMING - output: partial_multi_distinct_count(DISTINCT EXTERNAL_USER_ID)[#364], partial_multi_distinct_count(DISTINCT if(((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#365], partial_multi_distinct_count(DISTINCT if((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (VIP_CUS_STATUS = 1)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#366], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 7)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#367], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 15)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#368], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 30)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#369], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 45)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#370], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 60)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#371], partial_multi_distinct_count(DISTINCT if(((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not FIRST_BUY_TIME IS NULL)) AND ((cast(date(SECOND_BUY_TIME) as BIGINT) - cast(date(FIRST_BUY_TIME) as BIGINT)) <= 90)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#372], partial_multi_distinct_count(DISTINCT if((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (FANS_FLAG = 'Y')), cast(EXTERNAL_USER_ID as TEXT), NULL))[#373], partial_multi_distinct_count(DISTINCT if((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (cast(SUBSCRIBE as DOUBLE) = 1.0)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#374], partial_multi_distinct_count(DISTINCT if((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND (( not GZ_DATE IS NULL) OR ( not QXGZ_DATE IS NULL))), cast(EXTERNAL_USER_ID as TEXT), NULL))[#375], partial_multi_distinct_count(DISTINCT if((((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0)) AND ( not OPENID IS NULL)), cast(EXTERNAL_USER_ID as TEXT), NULL))[#376] - group by: USER_ID - cardinality=21 - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 279.638us, max 336.864us, min 216.895us - ExecTime: avg 93.810ms, max 256.13ms, min 58.159ms - MemoryUsage: sum , avg , max , min - HashTable: sum 195.38 KB, avg 16.28 KB, max 16.28 KB, min 16.28 KB - PeakMemoryUsage: sum 60.38 MB, avg 5.03 MB, max 5.03 MB, min 5.03 MB - SerializeKeyArena: sum 60.19 MB, avg 5.02 MB, max 5.02 MB, min 5.02 MB - OpenTime: avg 104.398us, max 164.29us, min 71.117us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 876, avg 73, max 75, min 72 HASH_JOIN_OPERATOR (id=21): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (UNIONID = UNIONID) - runtime filters: RF008[min_max] <- UNIONID(15808/16384/16384), RF009[bloom] <- UNIONID(15808/16384/16384) - cardinality=19,345 - vec output tuple id: 19 - output tuple id: 19 - vIntermediate tuple ids: 18 - hash output slot ids: 320 321 322 332 311 312 313 315 316 317 318 319 - projections: USER_ID, if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND (VIP_CUS_STATUS = 1), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 7), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 15), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 30), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 45), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 60), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND FIRST_BUY_TIME IS NOT NULL AND ((CAST(date(SECOND_BUY_TIME) AS BIGINT) - CAST(date(FIRST_BUY_TIME) AS BIGINT)) <= 90), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND (FANS_FLAG = 'Y'), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND OPENID IS NOT NULL, CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND (CAST(SUBSCRIBE AS DOUBLE) = 1), CAST(EXTERNAL_USER_ID AS TEXT), NULL), if((USER_DELETE_FLAG = 0) AND (EXTERNAL_USER_DELETE_FLAG = 0) AND GZ_DATE IS NOT NULL OR QXGZ_DATE IS NOT NULL, CAST(EXTERNAL_USER_ID AS TEXT), NULL), EXTERNAL_USER_ID - project output tuple id: 19 - BlocksProduced: sum 556, avg 46, max 200, min 32 - CloseTime: avg 195.497us, max 2.79ms, min 18.802us - ExecTime: avg 115.308ms, max 285.824ms, min 67.826ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.48 MB, avg 297.00 KB, max 420.00 KB, min 144.00 KB - ProbeKeyArena: sum 3.48 MB, avg 297.00 KB, max 420.00 KB, min 144.00 KB - OpenTime: avg 26.933us, max 44.642us, min 18.523us - ProbeRows: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - ProjectionTime: avg 83.714ms, max 230.748ms, min 47.291ms - RowsProduced: sum 1.963094M (1963094), avg 163.591K (163591), max 785.077K (785077), min 106.608K (106608) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s375ms, max 3s395ms, min 3s313ms EXCHANGE_OPERATOR (id=20): - PlanInfo - offset: 0 - BlocksProduced: sum 101, avg 8, max 9, min 8 - CloseTime: avg 9.546us, max 11.264us, min 7.475us - ExecTime: avg 178.701us, max 244.203us, min 134.290us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 35.25 MB, avg 2.94 MB, max 3.03 MB, min 2.89 MB - OpenTime: avg 24.293us, max 42.999us, min 13.847us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s870ms, max 1s881ms, min 1s862ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=21): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 34.912ms, max 101.717ms, min 19.93ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.077K (785077), min 106.606K (106606) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 246.36 MB, avg 20.53 MB, max 87.50 MB, min 14.38 MB - BuildKeyArena: sum 45.13 MB, avg 3.76 MB, max 8.00 MB, min 3.36 MB - HashTable: sum 18.86 MB, avg 1.57 MB, max 7.74 MB, min 1.01 MB - PeakMemoryUsage: sum 310.31 MB, avg 25.86 MB, max 103.24 MB, min 18.74 MB - OpenTime: avg 24.209us, max 51.860us, min 14.943us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=18): - PlanInfo - offset: 0 - BlocksProduced: sum 598, avg 49, max 202, min 36 - CloseTime: avg 10.392us, max 13.623us, min 6.472us - ExecTime: avg 1.719ms, max 4.496ms, min 1.319ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 50.66 MB, avg 4.22 MB, max 8.76 MB, min 2.56 MB - OpenTime: avg 19.871us, max 48.54us, min 8.684us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.077K (785077), min 106.606K (106606) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 5s195ms, max 5s214ms, min 5s141ms Fragment 144: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=20,dst_id=20): - BlocksProduced: sum 103, avg 103, max 103, min 103 - CloseTime: avg 13.40us, max 13.40us, min 13.40us - ExecTime: avg 123.96ms, max 123.96ms, min 123.96ms - InputRows: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 35.25 MB, avg 35.25 MB, max 35.25 MB, min 35.25 MB - OpenTime: avg 148.327us, max 148.327us, min 148.327us - RowsProduced: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=19. table name = DIM_OPENID_B): - PlanInfo - TABLE: ods_demo.DIM_OPENID_B(DIM_OPENID_B), PREAGGREGATION: ON - runtime filters: RF008[min_max] -> CAST(UNIONID AS VARCHAR(1500)), RF009[bloom] -> CAST(UNIONID AS VARCHAR(1500)) - partitions=1/1 (DIM_OPENID_B), tablets=1/1, tabletList=22339 - cardinality=405258, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 100, avg 100, max 100, min 100 - CloseTime: avg 28.227us, max 28.227us, min 28.227us - ExecTime: avg 99.353ms, max 99.353ms, min 99.353ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 185.600us, max 185.600us, min 185.600us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 98.198ms, max 98.198ms, min 98.198ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 10.00 MB, avg 10.00 MB, max 10.00 MB, min 10.00 MB Fragment 145: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - BlocksProduced: sum 598, avg 49, max 202, min 36 - CloseTime: avg 16.63us, max 31.557us, min 10.47us - ExecTime: avg 52.383ms, max 87.630ms, min 44.295ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 326.24 MB, avg 27.19 MB, max 95.30 MB, min 19.39 MB - OpenTime: avg 73.499us, max 93.674us, min 61.302us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=17): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF006[min_max] <- CUS_ID(11923/16384/16384), RF007[bloom] <- CUS_ID(11923/16384/16384) - cardinality=19,339 - vec output tuple id: 16 - output tuple id: 16 - vIntermediate tuple ids: 15 - hash output slot ids: 231 232 233 234 235 236 237 238 239 284 285 - projections: EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG, FANS_FLAG, UNIONID, USER_ID, EXTERNAL_USER_ID, VIP_CUS_STATUS, GZ_DATE, QXGZ_DATE, FIRST_BUY_TIME, SECOND_BUY_TIME - project output tuple id: 16 - BlocksProduced: sum 2.119K (2119), avg 176, max 491, min 148 - CloseTime: avg 19.716us, max 38.903us, min 10.596us - ExecTime: avg 114.823ms, max 192.163ms, min 95.162ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 847.41 KB, avg 70.62 KB, max 94.67 KB, min 68.17 KB - ProbeKeyArena: sum 847.41 KB, avg 70.62 KB, max 94.67 KB, min 68.17 KB - OpenTime: avg 24.380us, max 50.38us, min 16.933us - ProbeRows: sum 8.258001M (8258001), avg 688.166K (688166), max 1.396578M (1396578), min 622.435K (622435) - ProjectionTime: avg 4.552ms, max 12.626ms, min 3.412ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 2s988ms, max 3s200ms, min 2s657ms EXCHANGE_OPERATOR (id=16): - PlanInfo - offset: 0 - BlocksProduced: sum 1.955K (1955), avg 162, max 327, min 148 - CloseTime: avg 15.513us, max 64.951us, min 4.277us - ExecTime: avg 2.417ms, max 4.964ms, min 2.21ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 108.28 MB, avg 9.02 MB, max 19.83 MB, min 7.73 MB - OpenTime: avg 18.778us, max 58.378us, min 9.994us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.258001M (8258001), avg 688.166K (688166), max 1.396578M (1396578), min 622.435K (622435) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s678ms, max 1s698ms, min 1s578ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=17): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 33.47ms, max 91.151ms, min 16.433ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 229.51 MB, avg 19.13 MB, max 80.80 MB, min 13.43 MB - BuildKeyArena: sum 29.95 MB, avg 2.50 MB, max 11.98 MB, min 1.62 MB - HashTable: sum 18.86 MB, avg 1.57 MB, max 7.74 MB, min 1.01 MB - PeakMemoryUsage: sum 278.33 MB, avg 23.19 MB, max 100.53 MB, min 16.06 MB - OpenTime: avg 20.364us, max 34.372us, min 12.732us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=14): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF004[min_max] <- CUS_ID(11923/16384/16384), RF005[bloom] <- CUS_ID(11923/16384/16384) - cardinality=15,808 - vec output tuple id: 13 - output tuple id: 13 - vIntermediate tuple ids: 12 - hash output slot ids: 144 145 146 147 180 181 142 143 207 175 - projections: EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG, FANS_FLAG, UNIONID, USER_ID, EXTERNAL_USER_ID, VIP_CUS_STATUS, GZ_DATE, QXGZ_DATE, CUS_ID - project output tuple id: 13 - BlocksProduced: sum 9.608K (9608), avg 800, max 951, min 786 - CloseTime: avg 30.765us, max 82.732us, min 17.277us - ExecTime: avg 275.377ms, max 406.653ms, min 205.487ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 829.36 KB, avg 69.11 KB, max 69.28 KB, min 68.94 KB - ProbeKeyArena: sum 829.36 KB, avg 69.11 KB, max 69.28 KB, min 68.94 KB - OpenTime: avg 20.903us, max 31.782us, min 14.642us - ProbeRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - ProjectionTime: avg 13.410ms, max 32.75ms, min 7.774ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s259ms, max 1s664ms, min 840.942ms EXCHANGE_OPERATOR (id=13): - PlanInfo - offset: 0 - BlocksProduced: sum 9.45K (9450), avg 787, max 790, min 785 - CloseTime: avg 6.855us, max 10.669us, min 4.720us - ExecTime: avg 84.179ms, max 180.790ms, min 20.24ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 236.03 MB, avg 19.67 MB, max 20.19 MB, min 19.20 MB - OpenTime: avg 20.169us, max 33.690us, min 8.979us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s982ms, max 2s78ms, min 1s700ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=14): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 20.760ms, max 114.878ms, min 7.751ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 142.28 MB, avg 11.86 MB, max 56.92 MB, min 7.71 MB - BuildKeyArena: sum 29.95 MB, avg 2.50 MB, max 11.98 MB, min 1.62 MB - HashTable: sum 18.86 MB, avg 1.57 MB, max 7.74 MB, min 1.01 MB - PeakMemoryUsage: sum 191.09 MB, avg 15.92 MB, max 76.65 MB, min 10.34 MB - OpenTime: avg 13.408us, max 18.559us, min 8.547us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=11): - PlanInfo - join op: RIGHT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (CUS_ID = CUS_ID) - runtime filters: RF002[min_max] <- CUS_ID(11923/16384/16384), RF003[bloom] <- CUS_ID(11923/16384/16384) - cardinality=11,988 - vec output tuple id: 10 - output tuple id: 10 - vIntermediate tuple ids: 9 - hash output slot ids: 101 102 103 119 104 105 - projections: EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG, USER_ID, EXTERNAL_USER_ID, VIP_CUS_STATUS, CUS_ID - project output tuple id: 10 - BlocksProduced: sum 943, avg 78, max 231, min 64 - CloseTime: avg 17.590us, max 23.937us, min 12.198us - ExecTime: avg 43.370ms, max 70.65ms, min 27.544ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 828.66 KB, avg 69.05 KB, max 69.31 KB, min 68.92 KB - ProbeKeyArena: sum 828.66 KB, avg 69.05 KB, max 69.31 KB, min 68.92 KB - OpenTime: avg 19.363us, max 83.930us, min 9.72us - ProbeRows: sum 2.506017M (2506017), avg 208.834K (208834), max 209.241K (209241), min 208.294K (208294) - ProjectionTime: avg 1.950ms, max 6.380ms, min 1.168ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s61ms, max 1s397ms, min 768.345ms EXCHANGE_OPERATOR (id=10): - PlanInfo - offset: 0 - BlocksProduced: sum 612, avg 51, max 51, min 51 - CloseTime: avg 13.486us, max 23.537us, min 10.52us - ExecTime: avg 520.441us, max 682.947us, min 414.473us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 59.69 MB, avg 4.97 MB, max 5.17 MB, min 4.78 MB - OpenTime: avg 19.501us, max 74.327us, min 9.355us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.506017M (2506017), avg 208.834K (208834), max 209.241K (209241), min 208.294K (208294) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s588ms, max 1s594ms, min 1s580ms Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=11): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 20.165ms, max 99.427ms, min 8.361ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 132.92 MB, avg 11.08 MB, max 53.18 MB, min 7.20 MB - BuildKeyArena: sum 29.95 MB, avg 2.50 MB, max 11.98 MB, min 1.62 MB - HashTable: sum 18.86 MB, avg 1.57 MB, max 7.74 MB, min 1.01 MB - PeakMemoryUsage: sum 181.73 MB, avg 15.14 MB, max 72.91 MB, min 9.83 MB - OpenTime: avg 18.204us, max 36.27us, min 9.257us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=8): - PlanInfo - offset: 0 - BlocksProduced: sum 506, avg 42, max 166, min 30 - CloseTime: avg 13.29us, max 16.45us, min 11.100us - ExecTime: avg 2.978ms, max 27.284ms, min 659.930us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 71.11 MB, avg 5.93 MB, max 19.97 MB, min 2.97 MB - OpenTime: avg 13.458us, max 23.441us, min 7.574us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s677ms, max 2s732ms, min 2s556ms Fragment 146: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - BlocksProduced: sum 1.956K (1956), avg 489, max 489, min 489 - CloseTime: avg 15.4us, max 17.294us, min 12.422us - ExecTime: avg 153.265ms, max 178.741ms, min 122.914ms - InputRows: sum 8.258001M (8258001), avg 2.0645M (2064500), max 2.065884M (2065884), min 2.061147M (2061147) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 400.65 MB, avg 100.16 MB, max 100.54 MB, min 99.67 MB - OpenTime: avg 104.363us, max 218.814us, min 53.636us - RowsProduced: sum 8.258001M (8258001), avg 2.0645M (2064500), max 2.065884M (2065884), min 2.061147M (2061147) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - runtime filters: RF006[min_max] -> CUS_ID, RF007[bloom] -> CUS_ID - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 39.754us, max 49.902us, min 32.645us - ExecTime: avg 242.972ms, max 290.381ms, min 203.654ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 202.747us, max 322.807us, min 158.985us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.258001M (8258001), avg 2.0645M (2064500), max 2.065884M (2065884), min 2.061147M (2061147) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 240.401ms, max 287.728ms, min 201.276ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.08 MB, avg 10.02 MB, max 10.02 MB, min 10.02 MB Fragment 147: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - BlocksProduced: sum 9.457K (9457), avg 788, max 1.187K (1187), min 216 - CloseTime: avg 12.774us, max 16.736us, min 10.64us - ExecTime: avg 363.603ms, max 567.801ms, min 140.565ms - InputRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.39 GB, avg 203.65 MB, max 306.05 MB, min 66.39 MB - OpenTime: avg 79.968us, max 168.370us, min 59.508us - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER(DIM_CUSTOMER), PREAGGREGATION: ON - runtime filters: RF004[min_max] -> CUS_ID, RF005[bloom] -> CUS_ID - partitions=6/6 (p2012,p2024,p2014,p2016,p2018,p2020), tablets=12/12, tabletList=22629,22631,22614 ... - cardinality=39547993, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 93.93us, max 180.866us, min 48.307us - ExecTime: avg 204.699ms, max 276.499ms, min 139.986ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 404.582us, max 2.166ms, min 131.376us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 195.162ms, max 271.366ms, min 132.223ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 249.92 MB, avg 20.83 MB, max 32.77 MB, min 10.27 MB Fragment 148: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - BlocksProduced: sum 612, avg 204, max 204, min 204 - CloseTime: avg 13.302us, max 14.687us, min 11.876us - ExecTime: avg 58.419ms, max 68.850ms, min 39.671ms - InputRows: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 59.69 MB, avg 19.90 MB, max 20.32 MB, min 19.59 MB - OpenTime: avg 103.722us, max 172.380us, min 61.209us - RowsProduced: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=9. table name = DIM_CUSTOMER_ONLINE): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_ONLINE(DIM_CUSTOMER_ONLINE), PREAGGREGATION: ON - runtime filters: RF002[min_max] -> CUS_ID, RF003[bloom] -> CUS_ID - partitions=1/1 (DIM_CUSTOMER_ONLINE), tablets=3/3, tabletList=15145,15147,15149 - cardinality=2506017, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 618, avg 206, max 206, min 206 - CloseTime: avg 24.805us, max 28.249us, min 21.539us - ExecTime: avg 104.247ms, max 252.752ms, min 21.728ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 259.857us, max 311.141us, min 221.672us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 102.736ms, max 251.252ms, min 20.156ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 30.02 MB, avg 10.01 MB, max 10.01 MB, min 10.01 MB Fragment 149: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - BlocksProduced: sum 512, avg 42, max 59, min 27 - CloseTime: avg 15.220us, max 21.70us, min 12.291us - ExecTime: avg 30.161ms, max 73.673ms, min 12.960ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 216.79K (216790), min 64.674K (64674) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 214.70 MB, avg 17.89 MB, max 24.56 MB, min 7.13 MB - OpenTime: avg 85.430us, max 154.723us, min 65.76us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 216.79K (216790), min 64.674K (64674) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=7): - PlanInfo - join op: INNER JOIN(BROADCAST)[] - equal join conjunct: (USER_ID = USER_ID) - runtime filters: RF000[min_max] <- USER_ID(21/32/2048), RF001[in_or_bloom] <- USER_ID(21/32/2048) - cardinality=11,923 - vec output tuple id: 7 - output tuple id: 7 - vIntermediate tuple ids: 6 - hash output slot ids: 7 90 92 93 94 - projections: EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG, USER_ID, EXTERNAL_USER_ID, CUS_ID - project output tuple id: 7 - BlocksProduced: sum 923, avg 76, max 84, min 72 - CloseTime: avg 28.364us, max 45.433us, min 12.650us - ExecTime: avg 19.115ms, max 40.513ms, min 8.3ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 860.00 KB, avg 71.67 KB, max 144.00 KB, min 64.00 KB - ProbeKeyArena: sum 860.00 KB, avg 71.67 KB, max 144.00 KB, min 64.00 KB - OpenTime: avg 16.710us, max 27.831us, min 9.671us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 216.79K (216790), min 64.674K (64674) - ProjectionTime: avg 2.15ms, max 2.632ms, min 1.122ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 216.79K (216790), min 64.674K (64674) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 923, avg 76, max 84, min 72 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 458.891us, max 564.890us, min 306.670us - GetBlockFailedTime: sum 156, avg 13, max 27, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 93.83 MB, avg 7.82 MB, max 24.35 MB, min 3.37 MB - OpenTime: avg 1.292us, max 3.452us, min 593ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 216.79K (216790), min 64.674K (64674) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 2s474ms, max 2s517ms, min 2s440ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 518.341us, max 747.120us, min 364.135us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.669us, max 3.556us, min 1.24us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=6): - PlanInfo - join op: LEFT OUTER JOIN(PARTITIONED)[] - equal join conjunct: (EXTERNAL_USER_ID = EXTERNAL_USER_ID) - cardinality=13,008,209 - vec output tuple id: 5 - output tuple id: 5 - vIntermediate tuple ids: 4 - hash output slot ids: 65 66 72 73 11 - projections: EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG, CUS_ID - project output tuple id: 5 - BlocksProduced: sum 923, avg 76, max 77, min 76 - CloseTime: avg 24.722us, max 38.491us, min 14.876us - ExecTime: avg 83.795ms, max 118.977ms, min 64.465ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.20 MB, avg 444.00 KB, max 456.00 KB, min 432.00 KB - ProbeKeyArena: sum 5.20 MB, avg 444.00 KB, max 456.00 KB, min 432.00 KB - OpenTime: avg 15.772us, max 25.629us, min 8.968us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - ProjectionTime: avg 4.715ms, max 11.850ms, min 3.588ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s840ms, max 2s149ms, min 1s452ms EXCHANGE_OPERATOR (id=5): - PlanInfo - offset: 0 - BlocksProduced: sum 528, avg 44, max 44, min 44 - CloseTime: avg 13.360us, max 21.403us, min 9.799us - ExecTime: avg 1.869ms, max 13.70ms, min 692.844us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 196.84 MB, avg 16.40 MB, max 16.82 MB, min 16.04 MB - OpenTime: avg 15.723us, max 20.497us, min 10.724us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 506.970ms, max 523.410ms, min 490.919ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 71.319us, max 337.472us, min 24.766us - InputRows: sum 80, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.21 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 4.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 840.00 B, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 2.02 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 29.72us, max 79.813us, min 12.492us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 341.652ms, max 387.560ms, min 0ns EXCHANGE_OPERATOR (id=1): - PlanInfo - offset: 0 - BlocksProduced: sum 1, avg 0, max 1, min 0 - CloseTime: avg 7.741us, max 12.544us, min 3.603us - ExecTime: avg 27.832us, max 77.100us, min 14.468us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.00 KB, avg 2.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 18.951us, max 69.520us, min 8.617us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 26.288ms, max 315.463ms, min 0ns Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 280.99ms, max 523.832ms, min 178.151ms - InputRows: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 365.97 MB, avg 30.50 MB, max 30.56 MB, min 30.45 MB - BuildKeyArena: sum 383.95 MB, avg 32.00 MB, max 32.00 MB, min 32.00 MB - HashTable: sum 79.82 MB, avg 6.65 MB, max 6.66 MB, min 6.65 MB - PeakMemoryUsage: sum 829.70 MB, avg 69.14 MB, max 69.20 MB, min 69.09 MB - OpenTime: avg 13.668us, max 62.106us, min 5.873us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=3): - PlanInfo - offset: 0 - BlocksProduced: sum 1.996K (1996), avg 166, max 168, min 165 - CloseTime: avg 12.917us, max 17.837us, min 9.100us - ExecTime: avg 8.453ms, max 62.120ms, min 2.289ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 114.42 MB, avg 9.53 MB, max 13.92 MB, min 5.45 MB - OpenTime: avg 16.136us, max 31.882us, min 8.679us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 495.734ms, max 667.140ms, min 384.962ms Fragment 150: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - BlocksProduced: sum 540, avg 45, max 96, min 12 - CloseTime: avg 15.348us, max 24.246us, min 11.284us - ExecTime: avg 76.597ms, max 209.461ms, min 240.469us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 196.83 MB, avg 16.40 MB, max 40.16 MB, min 0.00 - OpenTime: avg 70.649us, max 84.410us, min 56.916us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - PlanInfo - TABLE: ods_demo.QYWX_USER_CONTACT_RELATION(QYWX_USER_CONTACT_RELATION), PREAGGREGATION: ON - runtime filters: RF000[min_max] -> CAST(USER_ID AS VARCHAR(15)), RF001[in_or_bloom] -> CAST(USER_ID AS VARCHAR(15)) - partitions=6/6 (p2019,p2020,p2021,p2022,p2023,p2024), tablets=12/12, tabletList=21165,21167,21173 ... - cardinality=13008209, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 556, avg 46, max 114, min 0 - CloseTime: avg 38.860us, max 58.552us, min 15.498us - ExecTime: avg 247.401ms, max 451.228ms, min 16.191ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 419.280us, max 707.371us, min 252.241us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 246.442ms, max 449.325ms, min 15.454ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 42.82 MB, avg 3.57 MB, max 7.70 MB, min 80.00 KB Fragment 151: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - BlocksProduced: sum 1.999K (1999), avg 499, max 502, min 497 - CloseTime: avg 16.433us, max 17.596us, min 14.928us - ExecTime: avg 771.684ms, max 833.392ms, min 715.200ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 644.67 MB, avg 161.17 MB, max 161.61 MB, min 160.30 MB - OpenTime: avg 85.888us, max 142.224us, min 65.441us - RowsProduced: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - PlanInfo - TABLE: ods_demo.DIM_CUSTOMER_QYWX(DIM_CUSTOMER_QYWX), PREAGGREGATION: ON - partitions=1/1 (DIM_CUSTOMER_QYWX), tablets=4/4, tabletList=21601,21603,21605 ... - cardinality=8342327, avgRowSize=0.0, numNodes=1 - pushAggOp=NONE - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 35.525us, max 49.158us, min 27.720us - ExecTime: avg 472.151ms, max 521.285ms, min 434.782ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 225.732us, max 258.967us, min 159.214us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 468.350ms, max 518.545ms, min 432.73ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.25 MB, avg 10.06 MB, max 10.06 MB, min 10.06 MB Fragment 152: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=1,dst_id=1): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.127us, max 13.127us, min 13.127us - ExecTime: avg 57.419us, max 57.419us, min 57.419us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 25.174us, max 25.174us, min 25.174us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=0. table name = ODS_EXCEL_QYWX_ZONGBU): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 29.236us, max 29.236us, min 29.236us - ExecTime: avg 280.924ms, max 280.924ms, min 280.924ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 53.290ms, max 53.290ms, min 53.290ms - ProjectionTime: avg 3.932us, max 3.932us, min 3.932us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 227.536ms, max 227.536ms, min 227.536ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 48.00 KB, avg 48.00 KB, max 48.00 KB, min 48.00 KB Execution Profile d9f55876ba7744e8-85f36bf268962f69:(Active: 6s925ms, % non-child: 0.00%) Fragments: Fragment 0: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 37.638ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 37.430ms - CloseTime: 30.71us - GetBlockTime: 715.568us - OpenTime: 66.868us - PrepareTime: 100.955us - SinkTime: 36.554ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 224.333us RESULT_SINK_OPERATOR (id=0): - AppendBatchTime: 36.534ms - CopyBufferTime: 0ns - ResultSendTime: 2.892ms - TupleConvertTime: 32.976ms - BlocksProduced: 11 - BytesSent: 1.21 MB - CloseTime: 7.975us - ExecTime: 36.628ms - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumSentRows: 9.2K (9200) - OpenTime: 73.374us - PendingFinishDependency: 0ns - RowsProduced: 9.2K (9200) - WaitForDependencyTime: 0ns - WaitForDependency[RESULT_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=389): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 750.857us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.50 MB - MemoryUsage: - Blocks: 5.03 MB - PeakMemoryUsage: 5.60 MB - OpenTime: 37.848us - ProjectionTime: 0ns - RowsProduced: 9.2K (9200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s884ms Fragment 1: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 4.252ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.842ms - CloseTime: 59.921us - GetBlockTime: 3.215ms - OpenTime: 7.723us - PrepareTime: 332.732us - SinkTime: 565.379us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.169ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.363ms DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.648us - CompressTime: 0ns - ExecTime: 646.8us - InputRows: 1.955K (1955) - LocalBytesSent: 901.13 KB - LocalSendTime: 556.695us - LocalSentRows: 1.955K (1955) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 68.56us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.955K (1955) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 32.771us - ExecTime: 1.579ms - InitProbeSideTime: 70.94us - JoinFilterTimer: 168ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 74.344us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.172us - ProbeFindNextTime: 0ns - ProbeRows: 1.955K (1955) - ProbeTime: 1.45ms - ProbeWhenBuildSideOutputTime: 290.79us - ProbeWhenProbeSideOutputTime: 399.600us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 49.728us - ProjectionTime: 411.836us - RowsProduced: 1.955K (1955) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s10ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 8.584us - ExecTime: 1.780ms - InitProbeSideTime: 16.760us - JoinFilterTimer: 531ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 60.253us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 507ns - ProbeFindNextTime: 0ns - ProbeRows: 9 - ProbeTime: 1.161ms - ProbeWhenBuildSideOutputTime: 535.278us - ProbeWhenProbeSideOutputTime: 26.718us - ProbeWhenProcessHashTableTime: 332.700us - ProbeWhenSearchHashTableTime: 48.276us - ProjectionTime: 541.930us - RowsProduced: 1.955K (1955) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s258ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 757ns - DeserializeAndMergeTime: 0ns - ExecTime: 39.658us - GetResultsTime: 10.758us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 662ns - HashTableSize: 9 - InsertKeysToColumnTime: 3.88us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.234us - ProjectionTime: 8.148us - RowsProduced: 9 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s552ms PipelineXTask (index=5):(Active: 3.805ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.386ms - CloseTime: 106.535us - GetBlockTime: 2.774ms - OpenTime: 24.103us - PrepareTime: 280.628us - SinkTime: 472.14us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.683ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.529ms DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.17us - CompressTime: 0ns - ExecTime: 528.379us - InputRows: 1.38K (1380) - LocalBytesSent: 637.89 KB - LocalSendTime: 458.198us - LocalSentRows: 1.38K (1380) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 43.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.38K (1380) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 49.558us - ExecTime: 1.406ms - InitProbeSideTime: 68.427us - JoinFilterTimer: 345ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 73.743us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 901ns - ProbeFindNextTime: 0ns - ProbeRows: 1.38K (1380) - ProbeTime: 856.927us - ProbeWhenBuildSideOutputTime: 219.564us - ProbeWhenProbeSideOutputTime: 331.209us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 41.113us - ProjectionTime: 410.352us - RowsProduced: 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s4ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 35.587us - ExecTime: 1.468ms - InitProbeSideTime: 24.640us - JoinFilterTimer: 380ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 50.754us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 692ns - ProbeFindNextTime: 0ns - ProbeRows: 6 - ProbeTime: 1.31ms - ProbeWhenBuildSideOutputTime: 443.841us - ProbeWhenProbeSideOutputTime: 13.150us - ProbeWhenProcessHashTableTime: 351.563us - ProbeWhenSearchHashTableTime: 32.750us - ProjectionTime: 338.314us - RowsProduced: 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s44ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 1.19us - DeserializeAndMergeTime: 0ns - ExecTime: 116.92us - GetResultsTime: 53.100us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.93us - HashTableSize: 6 - InsertKeysToColumnTime: 6.757us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 16.788us - ProjectionTime: 14.495us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s758ms PipelineXTask (index=10):(Active: 2.665ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.329ms - CloseTime: 37.578us - GetBlockTime: 1.903ms - OpenTime: 43.627us - PrepareTime: 246.584us - SinkTime: 289.394us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.581ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.360ms DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.940us - CompressTime: 0ns - ExecTime: 337.942us - InputRows: 1.495K (1495) - LocalBytesSent: 689.44 KB - LocalSendTime: 283.69us - LocalSentRows: 1.495K (1495) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 39.898us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.495K (1495) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 18.220us - ExecTime: 1.23ms - InitProbeSideTime: 40.185us - JoinFilterTimer: 214ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 64.154us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 640ns - ProbeFindNextTime: 0ns - ProbeRows: 1.495K (1495) - ProbeTime: 681.3us - ProbeWhenBuildSideOutputTime: 175.208us - ProbeWhenProbeSideOutputTime: 302.149us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.714us - ProjectionTime: 250.801us - RowsProduced: 1.495K (1495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s12ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 6.618us - ExecTime: 1.14ms - InitProbeSideTime: 15.327us - JoinFilterTimer: 303ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 89.544us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 192ns - ProbeFindNextTime: 0ns - ProbeRows: 7 - ProbeTime: 697.377us - ProbeWhenBuildSideOutputTime: 344.261us - ProbeWhenProbeSideOutputTime: 8.480us - ProbeWhenProcessHashTableTime: 197.173us - ProbeWhenSearchHashTableTime: 26.484us - ProjectionTime: 215.211us - RowsProduced: 1.495K (1495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s48ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 434ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.973us - GetResultsTime: 9.170us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 564ns - HashTableSize: 7 - InsertKeysToColumnTime: 2.881us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.50us - ProjectionTime: 7.724us - RowsProduced: 7 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s618ms PipelineXTask (index=15):(Active: 4.400ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.35ms - CloseTime: 93.95us - GetBlockTime: 3.324ms - OpenTime: 11.507us - PrepareTime: 252.458us - SinkTime: 655.731us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.295ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.668ms DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.798us - CompressTime: 0ns - ExecTime: 706.720us - InputRows: 2.185K (2185) - LocalBytesSent: 1014.00 KB - LocalSendTime: 645.849us - LocalSentRows: 2.185K (2185) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 40.982us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.185K (2185) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 62.240us - ExecTime: 1.897ms - InitProbeSideTime: 92.707us - JoinFilterTimer: 518ns - MemoryUsage: - PeakMemoryUsage: 36.00 KB - ProbeKeyArena: 36.00 KB - OpenTime: 59.332us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.15us - ProbeFindNextTime: 0ns - ProbeRows: 2.185K (2185) - ProbeTime: 1.100ms - ProbeWhenBuildSideOutputTime: 307.108us - ProbeWhenProbeSideOutputTime: 456.438us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 69.11us - ProjectionTime: 654.796us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s7ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 13.295us - ExecTime: 1.566ms - InitProbeSideTime: 18.37us - JoinFilterTimer: 525ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 41.626us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 504ns - ProbeFindNextTime: 0ns - ProbeRows: 6 - ProbeTime: 1.49ms - ProbeWhenBuildSideOutputTime: 330.915us - ProbeWhenProbeSideOutputTime: 10.246us - ProbeWhenProcessHashTableTime: 528.943us - ProbeWhenSearchHashTableTime: 44.252us - ProjectionTime: 455.243us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s259ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 955ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.517us - GetResultsTime: 12.40us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 855ns - HashTableSize: 6 - InsertKeysToColumnTime: 3.985us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.440us - ProjectionTime: 8.402us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s580ms PipelineXTask (index=20):(Active: 5.360ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.968ms - CloseTime: 126.511us - GetBlockTime: 4.218ms - OpenTime: 11.145us - PrepareTime: 245.757us - SinkTime: 645.432us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 301.174ms DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.772us - CompressTime: 0ns - ExecTime: 705.399us - InputRows: 2.185K (2185) - LocalBytesSent: 1005.80 KB - LocalSendTime: 630.697us - LocalSentRows: 2.185K (2185) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 45.349us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.185K (2185) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 75.859us - ExecTime: 2.29ms - InitProbeSideTime: 91.130us - JoinFilterTimer: 668ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 54.622us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.679us - ProbeFindNextTime: 0ns - ProbeRows: 2.185K (2185) - ProbeTime: 1.304ms - ProbeWhenBuildSideOutputTime: 387.970us - ProbeWhenProbeSideOutputTime: 510.198us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 71.55us - ProjectionTime: 573.312us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s3ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 24.581us - ExecTime: 2.269ms - InitProbeSideTime: 48.231us - JoinFilterTimer: 686ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 41.377us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 855ns - ProbeFindNextTime: 0ns - ProbeRows: 11 - ProbeTime: 1.460ms - ProbeWhenBuildSideOutputTime: 670.210us - ProbeWhenProbeSideOutputTime: 36.169us - ProbeWhenProcessHashTableTime: 427.791us - ProbeWhenSearchHashTableTime: 63.643us - ProjectionTime: 697.630us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s48ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 1.724us - DeserializeAndMergeTime: 0ns - ExecTime: 111.135us - GetResultsTime: 48.905us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.333us - HashTableSize: 11 - InsertKeysToColumnTime: 12.104us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.969us - ProjectionTime: 26.778us - RowsProduced: 11 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s528ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 360.864us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 270.615us - CloseTime: 2.286us - GetBlockTime: 143.112us - OpenTime: 11.223us - PrepareTime: 70.440us - SinkTime: 85.642us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 342.246us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 189.708us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 627ns - BuildRows: 16 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.962us - BuildTableInsertTime: 13.636us - BuildTableTime: 33.947us - CloseTime: 0ns - ExecTime: 103.464us - InputRows: 15 - MemoryUsage: - BuildBlocks: 1.75 KB - BuildKeyArena: 4.00 KB - HashTable: 196.00 B - PeakMemoryUsage: 1.94 KB - OpenTime: 18.727us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 712ns - DeserializeAndMergeTime: 0ns - ExecTime: 153.291us - GetResultsTime: 71.191us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 860ns - HashTableSize: 15 - InsertKeysToColumnTime: 4.675us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.6us - ProjectionTime: 47.119us - RowsProduced: 15 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 5s888ms PipelineXTask (index=6):(Active: 298.559us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 191.941us - CloseTime: 2.536us - GetBlockTime: 76.487us - OpenTime: 3.932us - PrepareTime: 88.94us - SinkTime: 71.938us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 264.104us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 942ns - BuildRows: 12 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.55us - BuildTableInsertTime: 13.571us - BuildTableTime: 22.794us - CloseTime: 0ns - ExecTime: 87.384us - InputRows: 11 - MemoryUsage: - BuildBlocks: 1.28 KB - BuildKeyArena: 4.00 KB - HashTable: 116.00 B - PeakMemoryUsage: 1.39 KB - OpenTime: 22.302us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 640ns - DeserializeAndMergeTime: 0ns - ExecTime: 88.432us - GetResultsTime: 36.727us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 708ns - HashTableSize: 11 - InsertKeysToColumnTime: 3.574us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.376us - ProjectionTime: 24.97us - RowsProduced: 11 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 5s882ms PipelineXTask (index=11):(Active: 373.916us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 282.436us - CloseTime: 2.383us - GetBlockTime: 105.514us - OpenTime: 4.400us - PrepareTime: 77.738us - SinkTime: 111.737us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 361.365us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.38us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 675ns - BuildRows: 13 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.284us - BuildTableInsertTime: 13.176us - BuildTableTime: 44.363us - CloseTime: 0ns - ExecTime: 125.987us - InputRows: 12 - MemoryUsage: - BuildBlocks: 1.40 KB - BuildKeyArena: 4.00 KB - HashTable: 120.00 B - PeakMemoryUsage: 1.51 KB - OpenTime: 14.606us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 616ns - DeserializeAndMergeTime: 0ns - ExecTime: 129.40us - GetResultsTime: 52.189us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 776ns - HashTableSize: 12 - InsertKeysToColumnTime: 4.913us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 23.675us - ProjectionTime: 31.642us - RowsProduced: 12 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 5s890ms PipelineXTask (index=16):(Active: 241.280us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 150.466us - CloseTime: 1.448us - GetBlockTime: 83.51us - OpenTime: 3.82us - PrepareTime: 80.502us - SinkTime: 37.914us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.673us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 172.751us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 356ns - BuildRows: 20 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.376us - BuildTableInsertTime: 4.509us - BuildTableTime: 13.920us - CloseTime: 0ns - ExecTime: 66.680us - InputRows: 19 - MemoryUsage: - BuildBlocks: 2.22 KB - BuildKeyArena: 4.00 KB - HashTable: 212.00 B - PeakMemoryUsage: 2.42 KB - OpenTime: 28.709us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 395ns - DeserializeAndMergeTime: 0ns - ExecTime: 98.866us - GetResultsTime: 29.873us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.26us - HashTableSize: 19 - InsertKeysToColumnTime: 2.915us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.780us - ProjectionTime: 35.885us - RowsProduced: 19 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 5s886ms PipelineXTask (index=21):(Active: 313.147us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 209.982us - CloseTime: 2.327us - GetBlockTime: 102.576us - OpenTime: 2.62us - PrepareTime: 74.813us - SinkTime: 89.988us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 285.326us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.611us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.73us - BuildRows: 19 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.370us - BuildTableInsertTime: 23.421us - BuildTableTime: 36.226us - CloseTime: 0ns - ExecTime: 120.29us - InputRows: 18 - MemoryUsage: - BuildBlocks: 2.10 KB - BuildKeyArena: 4.00 KB - HashTable: 208.00 B - PeakMemoryUsage: 2.29 KB - OpenTime: 30.911us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 570ns - DeserializeAndMergeTime: 0ns - ExecTime: 113.180us - GetResultsTime: 43.773us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 953ns - HashTableSize: 18 - InsertKeysToColumnTime: 9.869us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.24us - ProjectionTime: 29.717us - RowsProduced: 18 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 5s881ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.316ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.196ms - CloseTime: 6.753us - GetBlockTime: 281.851us - OpenTime: 3.160us - PrepareTime: 103.454us - SinkTime: 843.256us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.296ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 647.357us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.386us - BuildRows: 1.956K (1956) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 615.729us - BuildTableInsertTime: 61.863us - BuildTableTime: 64.723us - CloseTime: 0ns - ExecTime: 879.224us - InputRows: 1.955K (1955) - MemoryUsage: - BuildBlocks: 660.58 KB - BuildKeyArena: 36.00 KB - HashTable: 25.55 KB - PeakMemoryUsage: 718.12 KB - OpenTime: 44.412us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.17us - RuntimeFilterComputeTime: 58.886us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 308.922us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1023.00 KB - MemoryUsage: - Blocks: 511.50 KB - PeakMemoryUsage: 511.50 KB - OpenTime: 25.221us - ProjectionTime: 0ns - RowsProduced: 1.955K (1955) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s876ms PipelineXTask (index=7):(Active: 1.221ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.112ms - CloseTime: 19.990us - GetBlockTime: 263.28us - OpenTime: 2.109us - PrepareTime: 80.900us - SinkTime: 795.792us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.184ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 736.544us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.245us - BuildRows: 1.381K (1381) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 611.129us - BuildTableInsertTime: 62.800us - BuildTableTime: 65.607us - CloseTime: 0ns - ExecTime: 821.935us - InputRows: 1.38K (1380) - MemoryUsage: - BuildBlocks: 468.09 KB - BuildKeyArena: 28.00 KB - HashTable: 14.75 KB - PeakMemoryUsage: 506.83 KB - OpenTime: 27.862us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.155us - RuntimeFilterComputeTime: 54.681us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 18.423us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 298.144us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 616.00 KB - MemoryUsage: - Blocks: 321.50 KB - PeakMemoryUsage: 321.50 KB - OpenTime: 20.389us - ProjectionTime: 0ns - RowsProduced: 1.38K (1380) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s876ms PipelineXTask (index=12):(Active: 1.506ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.386ms - CloseTime: 7.65us - GetBlockTime: 258.605us - OpenTime: 5.748us - PrepareTime: 99.389us - SinkTime: 958.456us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 320.391us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.844us - BuildRows: 1.496K (1496) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 697.396us - BuildTableInsertTime: 76.608us - BuildTableTime: 78.617us - CloseTime: 0ns - ExecTime: 989.915us - InputRows: 1.495K (1495) - MemoryUsage: - BuildBlocks: 505.48 KB - BuildKeyArena: 28.00 KB - HashTable: 15.31 KB - PeakMemoryUsage: 544.78 KB - OpenTime: 34.413us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.942us - RuntimeFilterComputeTime: 68.221us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.788us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 286.864us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 809.50 KB - MemoryUsage: - Blocks: 380.25 KB - PeakMemoryUsage: 380.25 KB - OpenTime: 27.311us - ProjectionTime: 0ns - RowsProduced: 1.495K (1495) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s876ms PipelineXTask (index=17):(Active: 1.608ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.491ms - CloseTime: 4.740us - GetBlockTime: 227.678us - OpenTime: 6.357us - PrepareTime: 99.436us - SinkTime: 1.166ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.589ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 394.602us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.583us - BuildRows: 2.186K (2186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 837.91us - BuildTableInsertTime: 85.94us - BuildTableTime: 86.644us - CloseTime: 0ns - ExecTime: 1.192ms - InputRows: 2.185K (2185) - MemoryUsage: - BuildBlocks: 745.14 KB - BuildKeyArena: 40.00 KB - HashTable: 26.68 KB - PeakMemoryUsage: 807.81 KB - OpenTime: 29.491us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 112.691us - RuntimeFilterComputeTime: 45.311us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 247.502us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.03 MB - MemoryUsage: - Blocks: 349.00 KB - PeakMemoryUsage: 349.00 KB - OpenTime: 19.533us - ProjectionTime: 0ns - RowsProduced: 2.185K (2185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s876ms PipelineXTask (index=22):(Active: 1.626ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.493ms - CloseTime: 5.333us - GetBlockTime: 228.429us - OpenTime: 4.180us - PrepareTime: 115.511us - SinkTime: 1.203ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 553.676us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.179us - BuildRows: 2.186K (2186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 954.653us - BuildTableInsertTime: 100.751us - BuildTableTime: 102.385us - CloseTime: 0ns - ExecTime: 1.248ms - InputRows: 2.185K (2185) - MemoryUsage: - BuildBlocks: 736.94 KB - BuildKeyArena: 40.00 KB - HashTable: 26.68 KB - PeakMemoryUsage: 799.61 KB - OpenTime: 47.472us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.220us - RuntimeFilterComputeTime: 63.789us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.291us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 252.705us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1023.00 KB - MemoryUsage: - Blocks: 511.50 KB - PeakMemoryUsage: 511.50 KB - OpenTime: 22.893us - ProjectionTime: 0ns - RowsProduced: 2.185K (2185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s876ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 3.299ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.152ms - CloseTime: 16.75us - GetBlockTime: 78.862us - OpenTime: 4.172us - PrepareTime: 119.318us - SinkTime: 3.14ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.269ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.571ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.195us - DeserializeAndMergeTime: 2.916ms - ExecTime: 3.59ms - ExprTime: 0ns - HashTableComputeTime: 50.624us - HashTableEmplaceTime: 36.856us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 2.993ms - OpenTime: 47.135us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.594us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 450.06 KB - MemoryUsage: - Blocks: 192.63 KB - PeakMemoryUsage: 192.63 KB - OpenTime: 26.262us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s411ms PipelineXTask (index=8):(Active: 1.100ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 959.403us - CloseTime: 15.838us - GetBlockTime: 59.24us - OpenTime: 2.806us - PrepareTime: 116.391us - SinkTime: 856.712us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.74ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 669.408ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.98us - DeserializeAndMergeTime: 798.770us - ExecTime: 922.892us - ExprTime: 0ns - HashTableComputeTime: 29.974us - HashTableEmplaceTime: 21.39us - HashTableInputCount: 16 - InputRows: 16 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 843.380us - OpenTime: 67.251us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.813us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.598us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 133.41 KB - MemoryUsage: - Blocks: 68.78 KB - PeakMemoryUsage: 68.78 KB - OpenTime: 23.615us - ProjectionTime: 0ns - RowsProduced: 16 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s88ms PipelineXTask (index=13):(Active: 2.203ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.74ms - CloseTime: 16.196us - GetBlockTime: 88.257us - OpenTime: 4.500us - PrepareTime: 97.804us - SinkTime: 1.918ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.169ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 228.219ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.138us - DeserializeAndMergeTime: 1.813ms - ExecTime: 1.966ms - ExprTime: 0ns - HashTableComputeTime: 48.272us - HashTableEmplaceTime: 36.501us - HashTableInputCount: 28 - InputRows: 28 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 1.895ms - OpenTime: 50.173us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.654us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 289.56 KB - MemoryUsage: - Blocks: 128.63 KB - PeakMemoryUsage: 128.63 KB - OpenTime: 21.61us - ProjectionTime: 0ns - RowsProduced: 28 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s388ms PipelineXTask (index=18):(Active: 1.219ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.88ms - CloseTime: 14.554us - GetBlockTime: 58.343us - OpenTime: 2.591us - PrepareTime: 107.911us - SinkTime: 988.496us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.194ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 509.359ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.164us - DeserializeAndMergeTime: 927.745us - ExecTime: 1.46ms - ExprTime: 0ns - HashTableComputeTime: 32.426us - HashTableEmplaceTime: 23.490us - HashTableInputCount: 21 - InputRows: 21 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 974.187us - OpenTime: 59.184us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.715us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.295us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 209.50 KB - MemoryUsage: - Blocks: 145.19 KB - PeakMemoryUsage: 145.19 KB - OpenTime: 17.943us - ProjectionTime: 0ns - RowsProduced: 21 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s70ms PipelineXTask (index=23):(Active: 3.319ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.153ms - CloseTime: 17.167us - GetBlockTime: 61.758us - OpenTime: 21.417us - PrepareTime: 122.379us - SinkTime: 3.10ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.288ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.682ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.818us - DeserializeAndMergeTime: 2.897ms - ExecTime: 3.76ms - ExprTime: 0ns - HashTableComputeTime: 68.823us - HashTableEmplaceTime: 36.296us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 2.991ms - OpenTime: 67.772us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.514us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 94.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 578.06 KB - MemoryUsage: - Blocks: 256.88 KB - PeakMemoryUsage: 256.88 KB - OpenTime: 26.790us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s416ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 129.651ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.479ms - CloseTime: 8.725us - GetBlockTime: 521.767us - OpenTime: 3.14us - PrepareTime: 152.163us - SinkTime: 128.757ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 600.0us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 931ns - DeserializeAndMergeTime: 128.232ms - ExecTime: 128.857ms - ExprTime: 0ns - HashTableComputeTime: 108.179us - HashTableEmplaceTime: 71.429us - HashTableInputCount: 177 - InputRows: 177 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 128.712ms - OpenTime: 109.807us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.495us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 496.110us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.42 MB - MemoryUsage: - Blocks: 3.43 MB - PeakMemoryUsage: 3.43 MB - OpenTime: 17.763us - ProjectionTime: 0ns - RowsProduced: 177 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s758ms PipelineXTask (index=9):(Active: 69.738ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.559ms - CloseTime: 16.833us - GetBlockTime: 624.759us - OpenTime: 3.45us - PrepareTime: 150.784us - SinkTime: 68.715ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.848ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.484ms AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 2.449us - DeserializeAndMergeTime: 68.106ms - ExecTime: 68.806ms - ExprTime: 0ns - HashTableComputeTime: 126.75us - HashTableEmplaceTime: 85.380us - HashTableInputCount: 132 - InputRows: 132 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 68.644ms - OpenTime: 103.488us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.400us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 617.941us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.19 MB - MemoryUsage: - Blocks: 5.19 MB - PeakMemoryUsage: 5.19 MB - OpenTime: 20.856us - ProjectionTime: 0ns - RowsProduced: 132 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s811ms PipelineXTask (index=14):(Active: 116.72ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 115.863ms - CloseTime: 6.887us - GetBlockTime: 569.360us - OpenTime: 34.444us - PrepareTime: 158.527us - SinkTime: 115.80ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.932ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 476.681us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.37us - DeserializeAndMergeTime: 114.446ms - ExecTime: 115.174ms - ExprTime: 0ns - HashTableComputeTime: 123.210us - HashTableEmplaceTime: 86.320us - HashTableInputCount: 140 - InputRows: 140 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 115.30ms - OpenTime: 105.398us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.73us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 560.484us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.47 MB - MemoryUsage: - Blocks: 4.84 MB - PeakMemoryUsage: 4.84 MB - OpenTime: 20.213us - ProjectionTime: 0ns - RowsProduced: 140 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s774ms PipelineXTask (index=19):(Active: 75.424ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 75.271ms - CloseTime: 4.865us - GetBlockTime: 446.942us - OpenTime: 5.305us - PrepareTime: 135.588us - SinkTime: 74.653ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.322ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.84ms AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 747ns - DeserializeAndMergeTime: 74.275ms - ExecTime: 74.731ms - ExprTime: 0ns - HashTableComputeTime: 85.857us - HashTableEmplaceTime: 55.147us - HashTableInputCount: 221 - InputRows: 221 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 74.603ms - OpenTime: 90.114us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 457.41us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.39 MB - MemoryUsage: - Blocks: 10.21 MB - PeakMemoryUsage: 10.21 MB - OpenTime: 23.392us - ProjectionTime: 0ns - RowsProduced: 221 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s809ms PipelineXTask (index=24):(Active: 149.743ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 149.582ms - CloseTime: 11.24us - GetBlockTime: 550.275us - OpenTime: 3.720us - PrepareTime: 134.904us - SinkTime: 148.264ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 149.42ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 959.878us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.232us - DeserializeAndMergeTime: 147.541ms - ExecTime: 148.341ms - ExprTime: 0ns - HashTableComputeTime: 141.902us - HashTableEmplaceTime: 97.847us - HashTableInputCount: 206 - InputRows: 206 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 148.218ms - OpenTime: 87.544us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.856us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 551.141us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.20 MB - MemoryUsage: - Blocks: 5.49 MB - PeakMemoryUsage: 5.49 MB - OpenTime: 21.938us - ProjectionTime: 0ns - RowsProduced: 206 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s731ms Fragment 2: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 34.62ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.623ms - CloseTime: 64.155us - GetBlockTime: 33.303ms - OpenTime: 45.199us - PrepareTime: 319.381us - SinkTime: 163.277us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.516ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.997ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.738us - CompressTime: 0ns - ExecTime: 271.113us - InputRows: 31 - LocalBytesSent: 215.05 KB - LocalSendTime: 61.994us - LocalSentRows: 31 - MemoryUsage: - PeakMemoryUsage: 321.81 KB - MergeBlockTime: 0ns - OpenTime: 93.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 31 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.162us - SplitBlockHashComputeTime: 5.566us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.921ms - CloseTime: 15.90us - DeserializeAndMergeTime: 0ns - ExecTime: 4.399ms - ExprTime: 13.849us - GetResultsTime: 307.579us - HashTableComputeTime: 1.208ms - HashTableEmplaceTime: 628.612us - HashTableInputCount: 36.774K (36774) - HashTableIterateTime: 4.508us - HashTableSize: 31 - InsertKeysToColumnTime: 8.688us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 91.224us - ProjectionTime: 0ns - RowsProduced: 31 - SerializeDataTime: 283.351us - SerializeKeyTime: 0ns - SerializeResultTime: 310.302us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 16.464us - ExecTime: 28.660ms - InitProbeSideTime: 4.952ms - JoinFilterTimer: 4.37us - MemoryUsage: - PeakMemoryUsage: 900.00 KB - ProbeKeyArena: 900.00 KB - OpenTime: 26.970us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.490us - ProbeFindNextTime: 0ns - ProbeRows: 78.852K (78852) - ProbeTime: 15.274ms - ProbeWhenBuildSideOutputTime: 1.42ms - ProbeWhenProbeSideOutputTime: 425.382us - ProbeWhenProcessHashTableTime: 1.423ms - ProbeWhenSearchHashTableTime: 6.988ms - ProjectionTime: 13.170ms - RowsProduced: 36.774K (36774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s419ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 19 - BytesReceived: 0.00 - CloseTime: 13.439us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 276.202us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.89 MB - MemoryUsage: - Blocks: 7.89 MB - PeakMemoryUsage: 7.89 MB - OpenTime: 25.622us - ProjectionTime: 0ns - RowsProduced: 78.852K (78852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 589.549ms PipelineXTask (index=2):(Active: 18.160ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.807ms - CloseTime: 66.816us - GetBlockTime: 17.538ms - OpenTime: 12.408us - PrepareTime: 266.102us - SinkTime: 174.576us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.82ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 506.530ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.568us - CompressTime: 0ns - ExecTime: 253.721us - InputRows: 30 - LocalBytesSent: 183.94 KB - LocalSendTime: 55.879us - LocalSentRows: 30 - MemoryUsage: - PeakMemoryUsage: 325.72 KB - MergeBlockTime: 0ns - OpenTime: 65.256us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 57.207us - SplitBlockHashComputeTime: 5.125us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.135ms - CloseTime: 19.403us - DeserializeAndMergeTime: 0ns - ExecTime: 3.447ms - ExprTime: 9.974us - GetResultsTime: 184.591us - HashTableComputeTime: 1.11ms - HashTableEmplaceTime: 544.382us - HashTableInputCount: 32.103K (32103) - HashTableIterateTime: 781ns - HashTableSize: 30 - InsertKeysToColumnTime: 5.685us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 57.256us - ProjectionTime: 0ns - RowsProduced: 30 - SerializeDataTime: 165.337us - SerializeKeyTime: 0ns - SerializeResultTime: 186.999us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 15.674us - ExecTime: 13.812ms - InitProbeSideTime: 4.690ms - JoinFilterTimer: 2.900us - MemoryUsage: - PeakMemoryUsage: 852.00 KB - ProbeKeyArena: 852.00 KB - OpenTime: 21.847us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.761us - ProbeFindNextTime: 0ns - ProbeRows: 81.45K (81450) - ProbeTime: 12.834ms - ProbeWhenBuildSideOutputTime: 810.619us - ProbeWhenProbeSideOutputTime: 400.763us - ProbeWhenProcessHashTableTime: 1.165ms - ProbeWhenSearchHashTableTime: 5.379ms - ProjectionTime: 777.350us - RowsProduced: 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s393ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 12.669us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 312.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.87 MB - MemoryUsage: - Blocks: 7.87 MB - PeakMemoryUsage: 7.87 MB - OpenTime: 29.598us - ProjectionTime: 0ns - RowsProduced: 81.45K (81450) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 590.164ms PipelineXTask (index=4):(Active: 22.23ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.647ms - CloseTime: 64.468us - GetBlockTime: 21.378ms - OpenTime: 4.828us - PrepareTime: 300.212us - SinkTime: 142.582us - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.925ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.611ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.304us - CompressTime: 0ns - ExecTime: 248.210us - InputRows: 31 - LocalBytesSent: 215.27 KB - LocalSendTime: 42.938us - LocalSentRows: 31 - MemoryUsage: - PeakMemoryUsage: 321.75 KB - MergeBlockTime: 0ns - OpenTime: 92.402us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 31 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 46.25us - SplitBlockHashComputeTime: 5.308us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.824ms - CloseTime: 21.430us - DeserializeAndMergeTime: 0ns - ExecTime: 4.239ms - ExprTime: 19.716us - GetResultsTime: 238.775us - HashTableComputeTime: 1.276ms - HashTableEmplaceTime: 680.382us - HashTableInputCount: 38.892K (38892) - HashTableIterateTime: 1.268us - HashTableSize: 31 - InsertKeysToColumnTime: 6.980us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 80.84us - ProjectionTime: 0ns - RowsProduced: 31 - SerializeDataTime: 218.321us - SerializeKeyTime: 0ns - SerializeResultTime: 240.930us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 27 - BuildOutputBlock: 0ns - CloseTime: 11.940us - ExecTime: 16.807ms - InitProbeSideTime: 4.901ms - JoinFilterTimer: 3.774us - MemoryUsage: - PeakMemoryUsage: 912.00 KB - ProbeKeyArena: 912.00 KB - OpenTime: 20.233us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.451us - ProbeFindNextTime: 0ns - ProbeRows: 78.302K (78302) - ProbeTime: 15.775ms - ProbeWhenBuildSideOutputTime: 1.157ms - ProbeWhenProbeSideOutputTime: 562.374us - ProbeWhenProcessHashTableTime: 1.423ms - ProbeWhenSearchHashTableTime: 7.202ms - ProjectionTime: 807.912us - RowsProduced: 38.892K (38892) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s255ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 11.721us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 315.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.50 MB - MemoryUsage: - Blocks: 7.50 MB - PeakMemoryUsage: 7.50 MB - OpenTime: 27.113us - ProjectionTime: 0ns - RowsProduced: 78.302K (78302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 590.256ms PipelineXTask (index=6):(Active: 44.392ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.965ms - CloseTime: 141.707us - GetBlockTime: 43.564ms - OpenTime: 10.947us - PrepareTime: 266.608us - SinkTime: 255.674us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 29.176ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.209ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.936us - CompressTime: 0ns - ExecTime: 333.478us - InputRows: 28 - LocalBytesSent: 217.67 KB - LocalSendTime: 93.211us - LocalSentRows: 28 - MemoryUsage: - PeakMemoryUsage: 353.81 KB - MergeBlockTime: 0ns - OpenTime: 58.103us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 28 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 79.911us - SplitBlockHashComputeTime: 6.239us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 4.841ms - CloseTime: 57.564us - DeserializeAndMergeTime: 0ns - ExecTime: 5.774ms - ExprTime: 29.600us - GetResultsTime: 692.51us - HashTableComputeTime: 1.812ms - HashTableEmplaceTime: 981.67us - HashTableInputCount: 37.995K (37995) - HashTableIterateTime: 1.282us - HashTableSize: 28 - InsertKeysToColumnTime: 9.645us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 87.458us - ProjectionTime: 0ns - RowsProduced: 28 - SerializeDataTime: 655.150us - SerializeKeyTime: 0ns - SerializeResultTime: 698.302us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 31.41us - ExecTime: 37.501ms - InitProbeSideTime: 6.177ms - JoinFilterTimer: 4.372us - MemoryUsage: - PeakMemoryUsage: 984.00 KB - ProbeKeyArena: 984.00 KB - OpenTime: 25.240us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.556us - ProbeFindNextTime: 0ns - ProbeRows: 83.153K (83153) - ProbeTime: 36.87ms - ProbeWhenBuildSideOutputTime: 1.303ms - ProbeWhenProbeSideOutputTime: 625.994us - ProbeWhenProcessHashTableTime: 5.803ms - ProbeWhenSearchHashTableTime: 21.520ms - ProjectionTime: 1.136ms - RowsProduced: 37.995K (37995) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s231ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 21.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 327.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.15 MB - MemoryUsage: - Blocks: 8.15 MB - PeakMemoryUsage: 8.15 MB - OpenTime: 23.1us - ProjectionTime: 0ns - RowsProduced: 83.153K (83153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 589.517ms PipelineXTask (index=8):(Active: 31.965ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 31.539ms - CloseTime: 94.415us - GetBlockTime: 31.221ms - OpenTime: 5.560us - PrepareTime: 319.6us - SinkTime: 202.476us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.309ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.121ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.681us - CompressTime: 0ns - ExecTime: 294.668us - InputRows: 27 - LocalBytesSent: 203.68 KB - LocalSendTime: 56.518us - LocalSentRows: 27 - MemoryUsage: - PeakMemoryUsage: 337.50 KB - MergeBlockTime: 0ns - OpenTime: 76.200us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 27 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 70.211us - SplitBlockHashComputeTime: 10.985us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.708ms - CloseTime: 25.805us - DeserializeAndMergeTime: 0ns - ExecTime: 16.762ms - ExprTime: 16.28us - GetResultsTime: 12.870ms - HashTableComputeTime: 1.148ms - HashTableEmplaceTime: 597.675us - HashTableInputCount: 35.067K (35067) - HashTableIterateTime: 833ns - HashTableSize: 27 - InsertKeysToColumnTime: 5.616us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 87.200us - ProjectionTime: 0ns - RowsProduced: 27 - SerializeDataTime: 12.846ms - SerializeKeyTime: 0ns - SerializeResultTime: 12.873ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 32.646us - ExecTime: 14.198ms - InitProbeSideTime: 4.508ms - JoinFilterTimer: 3.597us - MemoryUsage: - PeakMemoryUsage: 852.00 KB - ProbeKeyArena: 852.00 KB - OpenTime: 24.935us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.680us - ProbeFindNextTime: 0ns - ProbeRows: 77.326K (77326) - ProbeTime: 13.347ms - ProbeWhenBuildSideOutputTime: 911.767us - ProbeWhenProbeSideOutputTime: 406.382us - ProbeWhenProcessHashTableTime: 1.273ms - ProbeWhenSearchHashTableTime: 5.763ms - ProjectionTime: 630.0us - RowsProduced: 35.067K (35067) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s264ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 12.351us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 318.517us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.65 MB - MemoryUsage: - Blocks: 7.65 MB - PeakMemoryUsage: 7.65 MB - OpenTime: 46.463us - ProjectionTime: 0ns - RowsProduced: 77.326K (77326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 589.770ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 58.734ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 58.534ms - CloseTime: 35.212us - GetBlockTime: 234.311us - OpenTime: 3.457us - PrepareTime: 154.244us - SinkTime: 58.241ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.604ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 960.730ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.81us - BuildRows: 36.775K (36775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.816ms - BuildTableInsertTime: 27.812ms - BuildTableTime: 27.825ms - CloseTime: 0ns - ExecTime: 58.309ms - InputRows: 36.774K (36774) - MemoryUsage: - BuildBlocks: 2.97 MB - BuildKeyArena: 2.43 MB - HashTable: 435.57 KB - PeakMemoryUsage: 5.81 MB - OpenTime: 73.980us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 57.355us - RuntimeFilterComputeTime: 3.375ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 30.170us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 278.560us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.38 MB - MemoryUsage: - Blocks: 2.87 MB - PeakMemoryUsage: 2.87 MB - OpenTime: 23.919us - ProjectionTime: 0ns - RowsProduced: 36.774K (36774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s7ms PipelineXTask (index=3):(Active: 9.806ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.674ms - CloseTime: 23.998us - GetBlockTime: 265.235us - OpenTime: 3.806us - PrepareTime: 97.251us - SinkTime: 9.349ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.769ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 874.580ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.997us - BuildRows: 32.104K (32104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.205ms - BuildTableInsertTime: 4.146ms - BuildTableTime: 4.153ms - CloseTime: 0ns - ExecTime: 9.386ms - InputRows: 32.103K (32103) - MemoryUsage: - BuildBlocks: 2.58 MB - BuildKeyArena: 2.12 MB - HashTable: 412.76 KB - PeakMemoryUsage: 5.09 MB - OpenTime: 42.33us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 337.364us - RuntimeFilterComputeTime: 1.562ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 19.446us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 297.663us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.00 MB - MemoryUsage: - Blocks: 2.10 MB - PeakMemoryUsage: 2.10 MB - OpenTime: 24.48us - ProjectionTime: 0ns - RowsProduced: 32.103K (32103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s126ms PipelineXTask (index=5):(Active: 14.619ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 14.491ms - CloseTime: 21.5us - GetBlockTime: 283.208us - OpenTime: 2.737us - PrepareTime: 97.902us - SinkTime: 14.120ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 440.196ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.389us - BuildRows: 38.893K (38893) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.119ms - BuildTableInsertTime: 6.830ms - BuildTableTime: 6.837ms - CloseTime: 0ns - ExecTime: 14.154ms - InputRows: 38.892K (38892) - MemoryUsage: - BuildBlocks: 3.15 MB - BuildKeyArena: 2.57 MB - HashTable: 445.91 KB - PeakMemoryUsage: 6.14 MB - OpenTime: 39.789us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 35.175us - RuntimeFilterComputeTime: 2.30ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 16.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 311.513us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.64 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 1.47 MB - OpenTime: 24.378us - ProjectionTime: 0ns - RowsProduced: 38.892K (38892) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s408ms PipelineXTask (index=7):(Active: 45.659ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 45.545ms - CloseTime: 17.634us - GetBlockTime: 138.169us - OpenTime: 2.380us - PrepareTime: 88.384us - SinkTime: 45.336ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.586ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 381.726ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.1us - BuildRows: 37.996K (37996) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.88ms - BuildTableInsertTime: 16.421ms - BuildTableTime: 16.428ms - CloseTime: 0ns - ExecTime: 45.366ms - InputRows: 37.995K (37995) - MemoryUsage: - BuildBlocks: 3.08 MB - BuildKeyArena: 2.51 MB - HashTable: 441.53 KB - PeakMemoryUsage: 6.02 MB - OpenTime: 34.785us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.787us - RuntimeFilterComputeTime: 1.718ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 13.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 163.662us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.57 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 1.47 MB - OpenTime: 26.116us - ProjectionTime: 0ns - RowsProduced: 37.995K (37995) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s425ms PipelineXTask (index=9):(Active: 20.955ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.828ms - CloseTime: 21.520us - GetBlockTime: 193.925us - OpenTime: 3.810us - PrepareTime: 95.554us - SinkTime: 20.565ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 512.755ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.752us - BuildRows: 35.068K (35068) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.860ms - BuildTableInsertTime: 5.3ms - BuildTableTime: 5.13ms - CloseTime: 0ns - ExecTime: 20.600ms - InputRows: 35.067K (35067) - MemoryUsage: - BuildBlocks: 2.84 MB - BuildKeyArena: 2.31 MB - HashTable: 427.23 KB - PeakMemoryUsage: 5.57 MB - OpenTime: 39.415us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 36.655us - RuntimeFilterComputeTime: 10.580ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 16.885us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 220.827us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.46 MB - MemoryUsage: - Blocks: 2.89 MB - PeakMemoryUsage: 2.89 MB - OpenTime: 21.192us - ProjectionTime: 0ns - RowsProduced: 35.067K (35067) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s346ms Fragment 3: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 90.458ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 89.826ms - CloseTime: 46.403us - GetBlockTime: 272.680us - OpenTime: 205.603us - PrepareTime: 369.174us - SinkTime: 88.701ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.329ms - WaitBfTime: 540.880ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.982ms DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.894us - CompressTime: 0ns - ExecTime: 88.782ms - InputRows: 83.949K (83949) - LocalBytesSent: 5.38 MB - LocalSendTime: 218.411us - LocalSentRows: 83.949K (83949) - MemoryUsage: - PeakMemoryUsage: 8.05 MB - MergeBlockTime: 0ns - OpenTime: 73.501us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 83.949K (83949) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 38.297ms - SplitBlockHashComputeTime: 2.464ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 114, type = minmax), RuntimeFilter: (id = 115, type = bloomfilter), RuntimeFilter: (id = 116, type = minmax), RuntimeFilter: (id = 117, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15193] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.548us - BlocksProduced: 21 - CloseTime: 28.72us - ExecTime: 13.729ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 389.105us - ProcessConjunctTime: 45.142us - ProjectionTime: 0ns - RowsProduced: 83.949K (83949) - RowsRead: 83.949K (83949) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.831ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.46ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [6.190ms, ] - PerScannerRowsRead: [83.95K, ] - PerScannerWaitTime: [5.831ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.69ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 740.923us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 996ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.212ms - ScannerCtxSchedTime: 5.827ms - ScannerFilterTime: 8.704us - ScannerGetBlockTime: 6.164ms - ScannerInitTime: 112.363us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 263ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.821us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 50.480us - BlockInitTime: 80.18us - BlockLoadTime: 6.703ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 42 - FirstReadSeekTime: 255.300us - FirstReadTime: 6.523ms - IOTimer: 0ns - InvertedIndexFilterTime: 599ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.160us - OutputIndexResultColumnTimer: 2.797us - RawRowsRead: 83.949K (83949) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 35 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 15.644ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.59ms - CloseTime: 50.276us - GetBlockTime: 227.77us - OpenTime: 212.190us - PrepareTime: 311.856us - SinkTime: 14.541ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.156ms - WaitBfTime: 577.119ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.932ms DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.165us - CompressTime: 0ns - ExecTime: 14.602ms - InputRows: 76.266K (76266) - LocalBytesSent: 4.89 MB - LocalSendTime: 207.492us - LocalSentRows: 76.266K (76266) - MemoryUsage: - PeakMemoryUsage: 7.43 MB - MergeBlockTime: 0ns - OpenTime: 55.32us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 76.266K (76266) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 11.499ms - SplitBlockHashComputeTime: 2.162ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 114, type = minmax), RuntimeFilter: (id = 115, type = bloomfilter), RuntimeFilter: (id = 116, type = minmax), RuntimeFilter: (id = 117, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15195] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 10.457us - BlocksProduced: 19 - CloseTime: 31.768us - ExecTime: 12.796ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 312.802us - ProcessConjunctTime: 42.504us - ProjectionTime: 0ns - RowsProduced: 76.266K (76266) - RowsRead: 76.266K (76266) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.999ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 12.230ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [7.444ms, ] - PerScannerRowsRead: [76.27K, ] - PerScannerWaitTime: [2.999ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.335ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.510ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 843ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.231ms - ScannerCtxSchedTime: 2.995ms - ScannerFilterTime: 9.67us - ScannerGetBlockTime: 7.425ms - ScannerInitTime: 108.364us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 249ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.736us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 32.852us - BlockInitTime: 63.932us - BlockLoadTime: 8.707ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 38 - FirstReadSeekTime: 694.150us - FirstReadTime: 8.518ms - IOTimer: 0ns - InvertedIndexFilterTime: 626ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.276us - OutputIndexResultColumnTimer: 3.56us - RawRowsRead: 76.266K (76266) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 51.416ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.848ms - CloseTime: 64.259us - GetBlockTime: 250.67us - OpenTime: 234.741us - PrepareTime: 257.989us - SinkTime: 50.261ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.335ms - WaitBfTime: 596.717ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.222ms DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.615us - CompressTime: 0ns - ExecTime: 50.332ms - InputRows: 80.456K (80456) - LocalBytesSent: 5.16 MB - LocalSendTime: 192.150us - LocalSentRows: 80.456K (80456) - MemoryUsage: - PeakMemoryUsage: 7.79 MB - MergeBlockTime: 0ns - OpenTime: 59.479us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80.456K (80456) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 46.879ms - SplitBlockHashComputeTime: 2.414ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 114, type = minmax), RuntimeFilter: (id = 115, type = bloomfilter), RuntimeFilter: (id = 116, type = minmax), RuntimeFilter: (id = 117, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15197] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.645us - BlocksProduced: 20 - CloseTime: 41.542us - ExecTime: 13.383ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 348.596us - ProcessConjunctTime: 42.391us - ProjectionTime: 0ns - RowsProduced: 80.456K (80456) - RowsRead: 80.456K (80456) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.175ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 12.752ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [8.110ms, ] - PerScannerRowsRead: [80.46K, ] - PerScannerWaitTime: [3.175ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.15ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.171ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.225us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.489ms - ScannerCtxSchedTime: 3.168ms - ScannerFilterTime: 10.410us - ScannerGetBlockTime: 8.89ms - ScannerInitTime: 116.518us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 188ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 910ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 40.255us - BlockInitTime: 72.36us - BlockLoadTime: 9.103ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 714.893us - FirstReadTime: 8.934ms - IOTimer: 0ns - InvertedIndexFilterTime: 316ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 5.476us - OutputIndexResultColumnTimer: 2.713us - RawRowsRead: 80.456K (80456) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 17.10ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.616ms - CloseTime: 63.974us - GetBlockTime: 331.551us - OpenTime: 80.818us - PrepareTime: 239.796us - SinkTime: 16.99ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.909ms - WaitBfTime: 596.897ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.988ms DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.800us - CompressTime: 0ns - ExecTime: 16.166ms - InputRows: 79.427K (79427) - LocalBytesSent: 5.10 MB - LocalSendTime: 221.2us - LocalSentRows: 79.427K (79427) - MemoryUsage: - PeakMemoryUsage: 7.81 MB - MergeBlockTime: 0ns - OpenTime: 59.932us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 79.427K (79427) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 12.60ms - SplitBlockHashComputeTime: 3.10ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 114, type = minmax), RuntimeFilter: (id = 115, type = bloomfilter), RuntimeFilter: (id = 116, type = minmax), RuntimeFilter: (id = 117, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15199] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.904us - BlocksProduced: 20 - CloseTime: 40.373us - ExecTime: 10.119ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 187.637us - ProcessConjunctTime: 16.296us - ProjectionTime: 0ns - RowsProduced: 79.427K (79427) - RowsRead: 79.427K (79427) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 4.87ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.568ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [4.500ms, ] - PerScannerRowsRead: [79.43K, ] - PerScannerWaitTime: [4.087ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.399ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 677.985us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.68us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.480ms - ScannerCtxSchedTime: 4.84ms - ScannerFilterTime: 11.645us - ScannerGetBlockTime: 4.480ms - ScannerInitTime: 34.846us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 117ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.1us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 39.12us - BlockInitTime: 65.139us - BlockLoadTime: 4.996ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 285.130us - FirstReadTime: 4.826ms - IOTimer: 0ns - InvertedIndexFilterTime: 375ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.404us - OutputIndexResultColumnTimer: 2.715us - RawRowsRead: 79.427K (79427) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 49.521ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.82ms - CloseTime: 49.198us - GetBlockTime: 266.413us - OpenTime: 77.921us - PrepareTime: 302.381us - SinkTime: 48.658ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.430ms - WaitBfTime: 577.298ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.98ms DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.548us - CompressTime: 0ns - ExecTime: 48.743ms - InputRows: 78.985K (78985) - LocalBytesSent: 5.06 MB - LocalSendTime: 176.255us - LocalSentRows: 78.985K (78985) - MemoryUsage: - PeakMemoryUsage: 7.98 MB - MergeBlockTime: 0ns - OpenTime: 77.724us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 78.985K (78985) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.743ms - SplitBlockHashComputeTime: 23.74ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=381. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 114, type = minmax), RuntimeFilter: (id = 115, type = bloomfilter), RuntimeFilter: (id = 116, type = minmax), RuntimeFilter: (id = 117, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15201] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.225us - BlocksProduced: 20 - CloseTime: 30.585us - ExecTime: 9.489ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 199.493us - ProcessConjunctTime: 13.191us - ProjectionTime: 0ns - RowsProduced: 78.985K (78985) - RowsRead: 78.985K (78985) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.544ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.3ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [4.498ms, ] - PerScannerRowsRead: [78.98K, ] - PerScannerWaitTime: [3.544ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.386ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 668.245us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.8us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.435ms - ScannerCtxSchedTime: 3.541ms - ScannerFilterTime: 15.627us - ScannerGetBlockTime: 4.472ms - ScannerInitTime: 37.50us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 250ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.386us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 54.172us - BlockInitTime: 74.276us - BlockLoadTime: 4.972ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 244.46us - FirstReadTime: 4.804ms - IOTimer: 0ns - InvertedIndexFilterTime: 313ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.424us - OutputIndexResultColumnTimer: 3.469us - RawRowsRead: 78.985K (78985) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 31 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 4: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 76.595ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 75.849ms - CloseTime: 84.744us - GetBlockTime: 64.470ms - OpenTime: 271.997us - PrepareTime: 375.696us - SinkTime: 10.930ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.380ms - WaitBfTime: 603.112ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.256ms DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.398us - CompressTime: 0ns - ExecTime: 11.3ms - InputRows: 63.423K (63423) - LocalBytesSent: 5.13 MB - LocalSendTime: 163.86us - LocalSentRows: 63.423K (63423) - MemoryUsage: - PeakMemoryUsage: 7.96 MB - MergeBlockTime: 0ns - OpenTime: 73.188us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 63.423K (63423) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.400ms - SplitBlockHashComputeTime: 1.756ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 6.994us - ExecTime: 63.947ms - InitProbeSideTime: 30.906ms - JoinFilterTimer: 5.940us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 27.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.235us - ProbeFindNextTime: 0ns - ProbeRows: 173.151K (173151) - ProbeTime: 36.873ms - ProbeWhenBuildSideOutputTime: 1.113ms - ProbeWhenProbeSideOutputTime: 2.813ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.493ms - ProjectionTime: 26.952ms - RowsProduced: 63.423K (63423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 419.903ms OLAP_SCAN_OPERATOR (id=378. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 112, type = minmax), RuntimeFilter: (id = 113, type = in_or_bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15206] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 7.996us - BlocksProduced: 46 - CloseTime: 55.165us - ExecTime: 54.148ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 413.8us - ProcessConjunctTime: 94.976us - ProjectionTime: 4.537ms - RowsProduced: 173.151K (173151) - RowsRead: 355.894K (355894) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 4.493ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 48.621ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 112, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 113, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 160 - always_true: 0 - expr_filtered_rows: 182.743K (182743) - expr_input_rows: 217.719K (217719) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [37.860ms, ] - PerScannerRowsRead: [355.89K, ] - PerScannerWaitTime: [4.493ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 27.544ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.136ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.216us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 34.850ms - ScannerCtxSchedTime: 4.485ms - ScannerFilterTime: 9.997ms - ScannerGetBlockTime: 27.808ms - ScannerInitTime: 117.528us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 668ns - BlockConditionsFilteredBloomFilterTime: 2.42us - BlockConditionsFilteredDictTime: 378ns - BlockConditionsFilteredTime: 66.567us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 53.917us - BlockInitSeekCount: 9 - BlockInitSeekTime: 72.452us - BlockInitTime: 172.978us - BlockLoadTime: 28.490ms - BlocksLoad: 94 - CachedPagesNum: 212 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 186 - FirstReadSeekTime: 327.164us - FirstReadTime: 6.941ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.586us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 15.732ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.262ms - OutputIndexResultColumnTimer: 20.226us - RawRowsRead: 377.618K (377618) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 667 - RowsShortCircuitPredInput: 356.561K (356561) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.057K (21057) - RowsVectorPredInput: 377.618K (377618) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 400.124us - TotalPagesNum: 212 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 533.905us PipelineXTask (index=2):(Active: 61.560ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 60.862ms - CloseTime: 54.99us - GetBlockTime: 11.935ms - OpenTime: 314.277us - PrepareTime: 318.958us - SinkTime: 48.420ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.145ms - WaitBfTime: 765.597ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 885.783ms DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.277us - CompressTime: 0ns - ExecTime: 48.462ms - InputRows: 59.09K (59090) - LocalBytesSent: 4.77 MB - LocalSendTime: 130.900us - LocalSentRows: 59.09K (59090) - MemoryUsage: - PeakMemoryUsage: 7.39 MB - MergeBlockTime: 0ns - OpenTime: 51.362us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 59.09K (59090) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 45.938ms - SplitBlockHashComputeTime: 1.735ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 7.530us - ExecTime: 11.424ms - InitProbeSideTime: 3.810ms - JoinFilterTimer: 9.89us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 27.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.843us - ProbeFindNextTime: 0ns - ProbeRows: 173.412K (173412) - ProbeTime: 10.353ms - ProbeWhenBuildSideOutputTime: 859.825us - ProbeWhenProbeSideOutputTime: 3.590ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.483ms - ProjectionTime: 933.950us - RowsProduced: 59.09K (59090) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=378. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 112, type = minmax), RuntimeFilter: (id = 113, type = in_or_bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.629us - BlocksProduced: 46 - CloseTime: 33.191us - ExecTime: 386.353ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 441.393us - ProcessConjunctTime: 120.831us - ProjectionTime: 53.584ms - RowsProduced: 173.412K (173412) - RowsRead: 345.71K (345710) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 193.133ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 331.804ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 112, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 113, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 148 - always_true: 0 - expr_filtered_rows: 172.298K (172298) - expr_input_rows: 207.941K (207941) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [83.553ms, ] - PerScannerRowsRead: [345.71K, ] - PerScannerWaitTime: [193.133ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 74.882ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.542ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.329us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.399ms - ScannerCtxSchedTime: 193.128ms - ScannerFilterTime: 8.378ms - ScannerGetBlockTime: 75.129ms - ScannerInitTime: 146.644us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 414ns - BlockConditionsFilteredBloomFilterTime: 1.351us - BlockConditionsFilteredDictTime: 292ns - BlockConditionsFilteredTime: 52.125us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.135us - BlockInitSeekCount: 9 - BlockInitSeekTime: 38.27us - BlockInitTime: 114.345us - BlockLoadTime: 76.297ms - BlocksLoad: 92 - CachedPagesNum: 205 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 182 - FirstReadSeekTime: 644.178us - FirstReadTime: 6.611ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.474us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 37.549ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 30.938ms - OutputIndexResultColumnTimer: 13.666us - RawRowsRead: 367.424K (367424) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 633 - RowsShortCircuitPredInput: 346.343K (346343) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.081K (21081) - RowsVectorPredInput: 367.424K (367424) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 282.470us - TotalPagesNum: 205 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 416.811us PipelineXTask (index=4):(Active: 54.28ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 53.373ms - CloseTime: 76.613us - GetBlockTime: 11.943ms - OpenTime: 191.725us - PrepareTime: 375.983us - SinkTime: 41.30ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.694ms - WaitBfTime: 765.933ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 918.456ms DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.343us - CompressTime: 0ns - ExecTime: 41.70ms - InputRows: 58.318K (58318) - LocalBytesSent: 4.71 MB - LocalSendTime: 162.742us - LocalSentRows: 58.318K (58318) - MemoryUsage: - PeakMemoryUsage: 6.70 MB - MergeBlockTime: 0ns - OpenTime: 48.366us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 58.318K (58318) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 38.553ms - SplitBlockHashComputeTime: 1.679ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 11.908us - ExecTime: 11.502ms - InitProbeSideTime: 3.719ms - JoinFilterTimer: 13.298us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 32.688us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.930us - ProbeFindNextTime: 0ns - ProbeRows: 172.143K (172143) - ProbeTime: 10.59ms - ProbeWhenBuildSideOutputTime: 906.336us - ProbeWhenProbeSideOutputTime: 3.380ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.421ms - ProjectionTime: 1.299ms - RowsProduced: 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 383.813us OLAP_SCAN_OPERATOR (id=378. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 112, type = minmax), RuntimeFilter: (id = 113, type = in_or_bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.853us - BlocksProduced: 47 - CloseTime: 47.614us - ExecTime: 345.572ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 334.152us - ProcessConjunctTime: 38.647us - ProjectionTime: 41.659ms - RowsProduced: 172.143K (172143) - RowsRead: 344.73K (344730) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 224.146ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 303.91ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 112, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 113, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 139 - always_true: 0 - expr_filtered_rows: 172.587K (172587) - expr_input_rows: 207.322K (207322) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [34.386ms, ] - PerScannerRowsRead: [344.73K, ] - PerScannerWaitTime: [224.146ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.282ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.950ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.466us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.466ms - ScannerCtxSchedTime: 224.143ms - ScannerFilterTime: 8.368ms - ScannerGetBlockTime: 25.968ms - ScannerInitTime: 117.866us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.764us - BlockConditionsFilteredBloomFilterTime: 6.541us - BlockConditionsFilteredDictTime: 1.69us - BlockConditionsFilteredTime: 116.218us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 86.711us - BlockInitSeekCount: 25 - BlockInitSeekTime: 271.299us - BlockInitTime: 487.789us - BlockLoadTime: 27.272ms - BlocksLoad: 95 - CachedPagesNum: 189 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 184 - FirstReadSeekTime: 1.959ms - FirstReadTime: 15.953ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.281us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.332ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.269ms - OutputIndexResultColumnTimer: 16.635us - RawRowsRead: 366.32K (366320) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 503 - RowsShortCircuitPredInput: 345.233K (345233) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.087K (21087) - RowsVectorPredInput: 366.32K (366320) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 317.133us - TotalPagesNum: 189 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 460.349us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 265.267us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 152.681us - CloseTime: 12.686us - GetBlockTime: 13.63us - OpenTime: 4.234us - PrepareTime: 90.46us - SinkTime: 102.863us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.733us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.19ms HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.678us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.816us - BuildTableInsertTime: 12.222us - BuildTableTime: 15.842us - CloseTime: 0ns - ExecTime: 128.197us - InputRows: 160 - MemoryUsage: - BuildBlocks: 8.10 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 17.73 KB - OpenTime: 26.5us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.794us - RuntimeFilterComputeTime: 46.374us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.820us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.975us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 31.63us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 971.415ms PipelineXTask (index=3):(Active: 256.474us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 151.612us - CloseTime: 13.3us - GetBlockTime: 5.0us - OpenTime: 4.142us - PrepareTime: 83.37us - SinkTime: 124.509us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 370.307us HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.98us - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.253us - BuildTableInsertTime: 48.630us - BuildTableTime: 51.891us - CloseTime: 0ns - ExecTime: 142.435us - InputRows: 148 - MemoryUsage: - BuildBlocks: 7.48 KB - BuildKeyArena: 12.00 KB - HashTable: 1.59 KB - PeakMemoryUsage: 17.06 KB - OpenTime: 18.274us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.872us - RuntimeFilterComputeTime: 46.382us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.625us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.292us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 24.368us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 971.554ms PipelineXTask (index=5):(Active: 201.750us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 106.306us - CloseTime: 4.938us - GetBlockTime: 4.644us - OpenTime: 1.786us - PrepareTime: 83.298us - SinkTime: 76.688us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 184.611us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 534.510us HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 464ns - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.577us - BuildTableInsertTime: 9.880us - BuildTableTime: 11.279us - CloseTime: 0ns - ExecTime: 103.435us - InputRows: 139 - MemoryUsage: - BuildBlocks: 7.03 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 16.57 KB - OpenTime: 26.931us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.84us - RuntimeFilterComputeTime: 37.648us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.277us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.273us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 21.874us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 971.549ms Fragment 5: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 768.177us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 293.771us - CloseTime: 55.914us - GetBlockTime: 49.313us - OpenTime: 130.526us - PrepareTime: 275.628us - SinkTime: 89.430us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 699.913us - WaitBfTime: 766.114ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 327.173ms DATA_STREAM_SINK_OPERATOR (id=377,dst_id=377): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.790us - CompressTime: 0ns - ExecTime: 151.374us - InputRows: 447 - LocalBytesSent: 22.62 KB - LocalSendTime: 17.666us - LocalSentRows: 447 - MemoryUsage: - PeakMemoryUsage: 36.75 KB - MergeBlockTime: 0ns - OpenTime: 49.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 447 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.425us - SplitBlockHashComputeTime: 20.315us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=376. table name = QYWX_GROUPCHAT_INFO): - RuntimeFilters: : RuntimeFilter: (id = 118, type = minmax), RuntimeFilter: (id = 119, type = bloomfilter), - PushDownPredicates: [{IS_DELETED IN [0]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 10.892us - BlocksProduced: 1 - CloseTime: 41.476us - ExecTime: 104.81ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 261.680us - ProcessConjunctTime: 50.80us - ProjectionTime: 14.823us - RowsProduced: 447 - RowsRead: 447 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 101.424ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 103.714ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 118, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 119, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [OWNER, NAME, CHAT_ID, IS_DELETED] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false - PerScannerRunningTime: [862.151us, ] - PerScannerRowsRead: [447, ] - PerScannerWaitTime: [101.424ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 823.771us - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.258ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 128ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.287ms - ScannerCtxSchedTime: 101.422ms - ScannerFilterTime: 2.950us - ScannerGetBlockTime: 851.499us - ScannerInitTime: 50.176us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 290ns - BlockConditionsFilteredBloomFilterTime: 2.43us - BlockConditionsFilteredDictTime: 222ns - BlockConditionsFilteredTime: 14.994us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.544us - BlockInitSeekCount: 8 - BlockInitSeekTime: 109.285us - BlockInitTime: 147.641us - BlockLoadTime: 1.961ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 187.573us - FirstReadSeekCount: 6 - FirstReadSeekTime: 7.327us - FirstReadTime: 43.343us - IOTimer: 0ns - InvertedIndexFilterTime: 1.297us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.431ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 50.674us - OutputIndexResultColumnTimer: 690ns - RawRowsRead: 22.996K (22996) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 11.553K (11553) - RowsVectorPredInput: 22.996K (22996) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 961.235us - ShortPredEvalTime: 289ns - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 27.264us Fragment 6: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.791ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.624ms - CloseTime: 12.692us - GetBlockTime: 977.781us - OpenTime: 5.308us - PrepareTime: 133.839us - SinkTime: 611.259us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.769ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.628us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.210us - CompressTime: 0ns - ExecTime: 687.329us - InputRows: 759 - LocalBytesSent: 257.24 KB - LocalSendTime: 100.186us - LocalSentRows: 759 - MemoryUsage: - PeakMemoryUsage: 382.25 KB - MergeBlockTime: 0ns - OpenTime: 65.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 759 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 350.935us - SplitBlockHashComputeTime: 15.32us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 342ns - DeserializeAndMergeTime: 0ns - ExecTime: 989.414us - GetResultsTime: 761.125us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.655us - HashTableSize: 759 - InsertKeysToColumnTime: 38.694us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.806us - ProjectionTime: 186.224us - RowsProduced: 759 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=2):(Active: 1.602ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.442ms - CloseTime: 13.105us - GetBlockTime: 869.49us - OpenTime: 2.598us - PrepareTime: 137.632us - SinkTime: 549.147us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.564ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.470us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.389us - CompressTime: 0ns - ExecTime: 637.408us - InputRows: 795 - LocalBytesSent: 269.10 KB - LocalSendTime: 87.109us - LocalSentRows: 795 - MemoryUsage: - PeakMemoryUsage: 393.75 KB - MergeBlockTime: 0ns - OpenTime: 77.494us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 795 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 333.47us - SplitBlockHashComputeTime: 14.802us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 583ns - DeserializeAndMergeTime: 0ns - ExecTime: 885.335us - GetResultsTime: 664.57us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.701us - HashTableSize: 795 - InsertKeysToColumnTime: 40.745us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 16.912us - ProjectionTime: 164.124us - RowsProduced: 795 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=4):(Active: 1.562ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.385ms - CloseTime: 12.147us - GetBlockTime: 784.389us - OpenTime: 3.308us - PrepareTime: 105.568us - SinkTime: 529.961us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.493ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.632us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.478us - CompressTime: 0ns - ExecTime: 599.460us - InputRows: 786 - LocalBytesSent: 266.18 KB - LocalSendTime: 103.390us - LocalSentRows: 786 - MemoryUsage: - PeakMemoryUsage: 357.25 KB - MergeBlockTime: 0ns - OpenTime: 59.708us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 786 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 285.276us - SplitBlockHashComputeTime: 18.233us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 459ns - DeserializeAndMergeTime: 0ns - ExecTime: 793.600us - GetResultsTime: 595.600us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.652us - HashTableSize: 786 - InsertKeysToColumnTime: 61.87us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.630us - ProjectionTime: 162.513us - RowsProduced: 786 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=6):(Active: 1.540ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.416ms - CloseTime: 11.636us - GetBlockTime: 755.483us - OpenTime: 5.190us - PrepareTime: 100.939us - SinkTime: 638.697us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.520ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.50us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.883us - CompressTime: 0ns - ExecTime: 701.535us - InputRows: 752 - LocalBytesSent: 254.84 KB - LocalSendTime: 100.367us - LocalSentRows: 752 - MemoryUsage: - PeakMemoryUsage: 357.75 KB - MergeBlockTime: 0ns - OpenTime: 53.509us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 752 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 377.875us - SplitBlockHashComputeTime: 14.454us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 532ns - DeserializeAndMergeTime: 0ns - ExecTime: 767.853us - GetResultsTime: 546.156us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.686us - HashTableSize: 752 - InsertKeysToColumnTime: 79.807us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.417us - ProjectionTime: 179.82us - RowsProduced: 752 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=8):(Active: 1.535ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.381ms - CloseTime: 13.882us - GetBlockTime: 750.728us - OpenTime: 4.772us - PrepareTime: 128.714us - SinkTime: 611.150us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.513ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.599us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.38us - CompressTime: 0ns - ExecTime: 699.547us - InputRows: 781 - LocalBytesSent: 264.57 KB - LocalSendTime: 103.184us - LocalSentRows: 781 - MemoryUsage: - PeakMemoryUsage: 391.75 KB - MergeBlockTime: 0ns - OpenTime: 77.310us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 781 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 349.254us - SplitBlockHashComputeTime: 16.15us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 509ns - DeserializeAndMergeTime: 0ns - ExecTime: 763.225us - GetResultsTime: 534.107us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.468us - HashTableSize: 781 - InsertKeysToColumnTime: 45.262us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.853us - ProjectionTime: 191.55us - RowsProduced: 781 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=10):(Active: 2.262ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.103ms - CloseTime: 30.541us - GetBlockTime: 1.90ms - OpenTime: 1.400us - PrepareTime: 121.310us - SinkTime: 990.909us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 189.848us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.91us - CompressTime: 0ns - ExecTime: 1.84ms - InputRows: 722 - LocalBytesSent: 244.54 KB - LocalSendTime: 226.835us - LocalSentRows: 722 - MemoryUsage: - PeakMemoryUsage: 357.50 KB - MergeBlockTime: 0ns - OpenTime: 67.533us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 722 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 519.737us - SplitBlockHashComputeTime: 28.376us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 1.214us - DeserializeAndMergeTime: 0ns - ExecTime: 1.98ms - GetResultsTime: 817.620us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.800us - HashTableSize: 722 - InsertKeysToColumnTime: 77.216us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.286us - ProjectionTime: 229.226us - RowsProduced: 722 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s875ms PipelineXTask (index=12):(Active: 2.11ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.882ms - CloseTime: 13.342us - GetBlockTime: 1.72ms - OpenTime: 2.356us - PrepareTime: 106.865us - SinkTime: 789.405us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.989ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.829us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.189us - CompressTime: 0ns - ExecTime: 859.704us - InputRows: 755 - LocalBytesSent: 255.76 KB - LocalSendTime: 196.336us - LocalSentRows: 755 - MemoryUsage: - PeakMemoryUsage: 355.00 KB - MergeBlockTime: 0ns - OpenTime: 60.195us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 755 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 381.339us - SplitBlockHashComputeTime: 23.340us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 554ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.86ms - GetResultsTime: 795.810us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.86us - HashTableSize: 755 - InsertKeysToColumnTime: 69.252us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.427us - ProjectionTime: 244.744us - RowsProduced: 755 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s875ms PipelineXTask (index=14):(Active: 2.269ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.128ms - CloseTime: 15.333us - GetBlockTime: 1.234ms - OpenTime: 2.997us - PrepareTime: 115.636us - SinkTime: 853.796us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.244ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.883us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.67us - CompressTime: 0ns - ExecTime: 922.810us - InputRows: 773 - LocalBytesSent: 262.03 KB - LocalSendTime: 148.873us - LocalSentRows: 773 - MemoryUsage: - PeakMemoryUsage: 394.25 KB - MergeBlockTime: 0ns - OpenTime: 57.253us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 773 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 481.384us - SplitBlockHashComputeTime: 24.660us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 623ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.246ms - GetResultsTime: 973.444us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.695us - HashTableSize: 773 - InsertKeysToColumnTime: 106.384us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.59us - ProjectionTime: 220.259us - RowsProduced: 773 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=16):(Active: 2.127ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.991ms - CloseTime: 12.772us - GetBlockTime: 1.231ms - OpenTime: 2.926us - PrepareTime: 113.240us - SinkTime: 737.632us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.466us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.174us - CompressTime: 0ns - ExecTime: 810.302us - InputRows: 761 - LocalBytesSent: 257.63 KB - LocalSendTime: 143.205us - LocalSentRows: 761 - MemoryUsage: - PeakMemoryUsage: 379.50 KB - MergeBlockTime: 0ns - OpenTime: 62.196us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 761 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 420.332us - SplitBlockHashComputeTime: 20.744us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 516ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.243ms - GetResultsTime: 945.578us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.796us - HashTableSize: 761 - InsertKeysToColumnTime: 73.676us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.794us - ProjectionTime: 240.359us - RowsProduced: 761 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=18):(Active: 2.92ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.941ms - CloseTime: 12.55us - GetBlockTime: 1.116ms - OpenTime: 5.188us - PrepareTime: 127.974us - SinkTime: 796.943us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.71ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 346.570us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.349us - CompressTime: 0ns - ExecTime: 865.853us - InputRows: 808 - LocalBytesSent: 273.66 KB - LocalSendTime: 127.423us - LocalSentRows: 808 - MemoryUsage: - PeakMemoryUsage: 384.25 KB - MergeBlockTime: 0ns - OpenTime: 59.46us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 808 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 477.777us - SplitBlockHashComputeTime: 30.473us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 468ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.128ms - GetResultsTime: 822.395us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.594us - HashTableSize: 808 - InsertKeysToColumnTime: 82.738us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.943us - ProjectionTime: 263.308us - RowsProduced: 808 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s875ms PipelineXTask (index=20):(Active: 1.505ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.370ms - CloseTime: 12.59us - GetBlockTime: 800.464us - OpenTime: 4.794us - PrepareTime: 110.934us - SinkTime: 545.215us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.484ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.123us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.140us - CompressTime: 0ns - ExecTime: 620.576us - InputRows: 752 - LocalBytesSent: 254.54 KB - LocalSendTime: 127.654us - LocalSentRows: 752 - MemoryUsage: - PeakMemoryUsage: 379.75 KB - MergeBlockTime: 0ns - OpenTime: 66.158us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 752 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 281.969us - SplitBlockHashComputeTime: 14.988us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 738ns - DeserializeAndMergeTime: 0ns - ExecTime: 808.582us - GetResultsTime: 592.424us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.691us - HashTableSize: 752 - InsertKeysToColumnTime: 41.837us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.609us - ProjectionTime: 173.418us - RowsProduced: 752 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms PipelineXTask (index=22):(Active: 1.437ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.293ms - CloseTime: 10.569us - GetBlockTime: 684.325us - OpenTime: 1.900us - PrepareTime: 125.13us - SinkTime: 587.794us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.418ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 490.812us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.16us - CompressTime: 0ns - ExecTime: 651.811us - InputRows: 756 - LocalBytesSent: 256.15 KB - LocalSendTime: 91.786us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 391.50 KB - MergeBlockTime: 0ns - OpenTime: 55.636us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 354.374us - SplitBlockHashComputeTime: 14.373us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 449ns - DeserializeAndMergeTime: 0ns - ExecTime: 698.543us - GetResultsTime: 475.574us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.710us - HashTableSize: 756 - InsertKeysToColumnTime: 47.196us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.666us - ProjectionTime: 168.428us - RowsProduced: 756 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s874ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.811ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.584ms - CloseTime: 8.346us - GetBlockTime: 207.588us - OpenTime: 5.517us - PrepareTime: 205.545us - SinkTime: 1.299ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.785ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.189ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 2.165us - DeserializeAndMergeTime: 205.327us - ExecTime: 1.440ms - ExprTime: 0ns - HashTableComputeTime: 953.365us - HashTableEmplaceTime: 875.504us - HashTableInputCount: 759 - InputRows: 759 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.285ms - OpenTime: 141.960us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.118us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 239.711us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 345.13 KB - MemoryUsage: - Blocks: 77.00 KB - PeakMemoryUsage: 77.00 KB - OpenTime: 32.904us - ProjectionTime: 0ns - RowsProduced: 759 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=3):(Active: 1.688ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.474ms - CloseTime: 5.381us - GetBlockTime: 194.862us - OpenTime: 5.287us - PrepareTime: 196.267us - SinkTime: 1.230ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.742ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 788ns - DeserializeAndMergeTime: 192.266us - ExecTime: 1.357ms - ExprTime: 0ns - HashTableComputeTime: 934.947us - HashTableEmplaceTime: 868.5us - HashTableInputCount: 795 - InputRows: 795 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.218ms - OpenTime: 128.463us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.707us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 226.335us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 335.25 KB - MemoryUsage: - Blocks: 159.50 KB - PeakMemoryUsage: 159.50 KB - OpenTime: 31.447us - ProjectionTime: 0ns - RowsProduced: 795 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=5):(Active: 1.713ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.511ms - CloseTime: 6.540us - GetBlockTime: 216.571us - OpenTime: 9.377us - PrepareTime: 179.31us - SinkTime: 1.240ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.693ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.928ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.894us - DeserializeAndMergeTime: 196.664us - ExecTime: 1.362ms - ExprTime: 0ns - HashTableComputeTime: 940.434us - HashTableEmplaceTime: 874.376us - HashTableInputCount: 786 - InputRows: 786 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.229ms - OpenTime: 123.390us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.443us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 240.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 350.50 KB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 23.736us - ProjectionTime: 0ns - RowsProduced: 786 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=7):(Active: 1.662ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.452ms - CloseTime: 6.57us - GetBlockTime: 201.330us - OpenTime: 3.157us - PrepareTime: 195.167us - SinkTime: 1.208ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.647ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.512ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 840ns - DeserializeAndMergeTime: 156.346us - ExecTime: 1.353ms - ExprTime: 0ns - HashTableComputeTime: 949.930us - HashTableEmplaceTime: 896.446us - HashTableInputCount: 752 - InputRows: 752 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.197ms - OpenTime: 146.57us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 223.897us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 324.75 KB - MemoryUsage: - Blocks: 274.75 KB - PeakMemoryUsage: 274.75 KB - OpenTime: 20.940us - ProjectionTime: 0ns - RowsProduced: 752 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s870ms PipelineXTask (index=9):(Active: 1.689ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.502ms - CloseTime: 7.680us - GetBlockTime: 234.503us - OpenTime: 2.909us - PrepareTime: 170.524us - SinkTime: 1.232ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.674ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.531ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 2.848us - DeserializeAndMergeTime: 219.247us - ExecTime: 1.348ms - ExprTime: 0ns - HashTableComputeTime: 902.798us - HashTableEmplaceTime: 845.892us - HashTableInputCount: 781 - InputRows: 781 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.212ms - OpenTime: 115.770us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.61us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 261.766us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 355.25 KB - MemoryUsage: - Blocks: 297.63 KB - PeakMemoryUsage: 297.63 KB - OpenTime: 26.134us - ProjectionTime: 0ns - RowsProduced: 781 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s870ms PipelineXTask (index=11):(Active: 2.370ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.188ms - CloseTime: 9.350us - GetBlockTime: 337.787us - OpenTime: 2.670us - PrepareTime: 164.80us - SinkTime: 1.796ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.351ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.521ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.158us - DeserializeAndMergeTime: 276.42us - ExecTime: 1.904ms - ExprTime: 0ns - HashTableComputeTime: 1.347ms - HashTableEmplaceTime: 1.250ms - HashTableInputCount: 722 - InputRows: 722 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.779ms - OpenTime: 110.734us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.917us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 361.749us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 330.13 KB - MemoryUsage: - Blocks: 272.38 KB - PeakMemoryUsage: 272.38 KB - OpenTime: 22.929us - ProjectionTime: 0ns - RowsProduced: 722 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s870ms PipelineXTask (index=13):(Active: 2.69ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.839ms - CloseTime: 8.647us - GetBlockTime: 246.944us - OpenTime: 2.750us - PrepareTime: 200.27us - SinkTime: 1.541ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.40ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.569ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 3.447us - DeserializeAndMergeTime: 215.115us - ExecTime: 1.640ms - ExprTime: 0ns - HashTableComputeTime: 1.147ms - HashTableEmplaceTime: 1.82ms - HashTableInputCount: 755 - InputRows: 755 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.512ms - OpenTime: 114.20us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.168us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 283.367us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 346.88 KB - MemoryUsage: - Blocks: 295.75 KB - PeakMemoryUsage: 295.75 KB - OpenTime: 37.787us - ProjectionTime: 0ns - RowsProduced: 755 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s870ms PipelineXTask (index=15):(Active: 1.757ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.550ms - CloseTime: 6.194us - GetBlockTime: 211.691us - OpenTime: 3.423us - PrepareTime: 192.37us - SinkTime: 1.256ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.202ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.52us - DeserializeAndMergeTime: 182.675us - ExecTime: 1.371ms - ExprTime: 0ns - HashTableComputeTime: 931.131us - HashTableEmplaceTime: 870.521us - HashTableInputCount: 773 - InputRows: 773 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.238ms - OpenTime: 116.773us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.290us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 243.473us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 355.63 KB - MemoryUsage: - Blocks: 149.50 KB - PeakMemoryUsage: 149.50 KB - OpenTime: 32.825us - ProjectionTime: 0ns - RowsProduced: 773 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=17):(Active: 1.587ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.390ms - CloseTime: 3.304us - GetBlockTime: 174.35us - OpenTime: 4.637us - PrepareTime: 183.62us - SinkTime: 1.130ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.554ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.118ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 615ns - DeserializeAndMergeTime: 152.703us - ExecTime: 1.262ms - ExprTime: 0ns - HashTableComputeTime: 870.311us - HashTableEmplaceTime: 799.231us - HashTableInputCount: 761 - InputRows: 761 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.121ms - OpenTime: 133.25us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 196.608us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 351.50 KB - MemoryUsage: - Blocks: 136.38 KB - PeakMemoryUsage: 136.38 KB - OpenTime: 24.283us - ProjectionTime: 0ns - RowsProduced: 761 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s872ms PipelineXTask (index=19):(Active: 2.44ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.840ms - CloseTime: 4.582us - GetBlockTime: 217.502us - OpenTime: 4.637us - PrepareTime: 188.930us - SinkTime: 1.569ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.401ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.168us - DeserializeAndMergeTime: 220.487us - ExecTime: 1.679ms - ExprTime: 0ns - HashTableComputeTime: 1.217ms - HashTableEmplaceTime: 1.148ms - HashTableInputCount: 808 - InputRows: 808 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.554ms - OpenTime: 112.480us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.874us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 253.53us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 352.38 KB - MemoryUsage: - Blocks: 294.38 KB - PeakMemoryUsage: 294.38 KB - OpenTime: 38.104us - ProjectionTime: 0ns - RowsProduced: 808 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=21):(Active: 2.54ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.867ms - CloseTime: 11.863us - GetBlockTime: 273.229us - OpenTime: 3.46us - PrepareTime: 166.74us - SinkTime: 1.519ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.24ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 997.155us AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.287us - DeserializeAndMergeTime: 154.245us - ExecTime: 1.634ms - ExprTime: 0ns - HashTableComputeTime: 1.180ms - HashTableEmplaceTime: 1.103ms - HashTableInputCount: 752 - InputRows: 752 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.491ms - OpenTime: 117.857us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.545us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 302.862us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 340.25 KB - MemoryUsage: - Blocks: 140.13 KB - PeakMemoryUsage: 140.13 KB - OpenTime: 26.576us - ProjectionTime: 0ns - RowsProduced: 752 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms PipelineXTask (index=23):(Active: 1.532ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.330ms - CloseTime: 5.610us - GetBlockTime: 195.942us - OpenTime: 3.226us - PrepareTime: 187.147us - SinkTime: 1.96ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.518ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.585ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 665ns - DeserializeAndMergeTime: 139.580us - ExecTime: 1.213ms - ExprTime: 0ns - HashTableComputeTime: 857.928us - HashTableEmplaceTime: 793.209us - HashTableInputCount: 756 - InputRows: 756 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 1.86ms - OpenTime: 118.470us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.239us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 218.562us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 348.00 KB - MemoryUsage: - Blocks: 316.50 KB - PeakMemoryUsage: 316.50 KB - OpenTime: 21.263us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s871ms Fragment 7: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.39ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.278ms - CloseTime: 218.951us - GetBlockTime: 3.715ms - OpenTime: 16.899us - PrepareTime: 514.671us - SinkTime: 1.496ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.787ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 201.953us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.424us - CompressTime: 0ns - ExecTime: 1.654ms - InputRows: 770 - LocalBytesSent: 202.32 KB - LocalSendTime: 314.188us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 351.88 KB - MergeBlockTime: 0ns - OpenTime: 134.157us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 758.224us - SplitBlockHashComputeTime: 59.429us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.641ms - CloseTime: 116.847us - DeserializeAndMergeTime: 0ns - ExecTime: 3.163ms - ExprTime: 43.76us - GetResultsTime: 1.211ms - HashTableComputeTime: 1.438ms - HashTableEmplaceTime: 1.326ms - HashTableInputCount: 770 - HashTableIterateTime: 7.664us - HashTableSize: 770 - InsertKeysToColumnTime: 95.452us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 173.941us - ProjectionTime: 0ns - RowsProduced: 770 - SerializeDataTime: 1.86ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.216ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 58.491us - ExecTime: 941.216us - InitProbeSideTime: 99.471us - JoinFilterTimer: 311ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 63.876us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 960ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 533.882us - ProbeWhenBuildSideOutputTime: 17.343us - ProbeWhenProbeSideOutputTime: 227.591us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.511us - ProjectionTime: 267.417us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.974us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 59.441us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 34.699us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=2):(Active: 3.917ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.355ms - CloseTime: 104.917us - GetBlockTime: 2.298ms - OpenTime: 26.512us - PrepareTime: 423.106us - SinkTime: 992.472us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 151.47us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.162us - CompressTime: 0ns - ExecTime: 1.112ms - InputRows: 756 - LocalBytesSent: 197.82 KB - LocalSendTime: 220.65us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 336.00 KB - MergeBlockTime: 0ns - OpenTime: 110.220us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 508.821us - SplitBlockHashComputeTime: 31.257us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.80ms - CloseTime: 55.528us - DeserializeAndMergeTime: 0ns - ExecTime: 1.964ms - ExprTime: 22.53us - GetResultsTime: 680.850us - HashTableComputeTime: 991.31us - HashTableEmplaceTime: 915.657us - HashTableInputCount: 756 - HashTableIterateTime: 4.5us - HashTableSize: 756 - InsertKeysToColumnTime: 52.632us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 135.324us - ProjectionTime: 0ns - RowsProduced: 756 - SerializeDataTime: 576.442us - SerializeKeyTime: 0ns - SerializeResultTime: 684.820us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 30.223us - ExecTime: 610.259us - InitProbeSideTime: 44.506us - JoinFilterTimer: 103ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 66.801us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.559us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 311.597us - ProbeWhenBuildSideOutputTime: 11.343us - ProbeWhenProbeSideOutputTime: 159.278us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.255us - ProjectionTime: 183.304us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.705us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 22.578us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=4):(Active: 5.106ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.525ms - CloseTime: 158.784us - GetBlockTime: 3.65ms - OpenTime: 11.770us - PrepareTime: 401.654us - SinkTime: 1.401ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.936ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.321us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.64us - CompressTime: 0ns - ExecTime: 1.522ms - InputRows: 770 - LocalBytesSent: 200.82 KB - LocalSendTime: 215.237us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 350.38 KB - MergeBlockTime: 0ns - OpenTime: 110.74us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 822.488us - SplitBlockHashComputeTime: 66.430us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.398ms - CloseTime: 88.555us - DeserializeAndMergeTime: 0ns - ExecTime: 2.656ms - ExprTime: 44.420us - GetResultsTime: 1.31ms - HashTableComputeTime: 1.228ms - HashTableEmplaceTime: 1.154ms - HashTableInputCount: 770 - HashTableIterateTime: 5.38us - HashTableSize: 770 - InsertKeysToColumnTime: 93.218us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 124.920us - ProjectionTime: 0ns - RowsProduced: 770 - SerializeDataTime: 908.679us - SerializeKeyTime: 0ns - SerializeResultTime: 1.35ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 47.732us - ExecTime: 701.166us - InitProbeSideTime: 47.735us - JoinFilterTimer: 137ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 46.15us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 519ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 390.52us - ProbeWhenBuildSideOutputTime: 17.748us - ProbeWhenProbeSideOutputTime: 166.786us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 40.305us - ProjectionTime: 206.627us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.699us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 40.75us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=6):(Active: 5.399ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.483ms - CloseTime: 185.678us - GetBlockTime: 3.66ms - OpenTime: 8.450us - PrepareTime: 709.696us - SinkTime: 1.382ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.200ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 505.142us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.263us - CompressTime: 0ns - ExecTime: 1.679ms - InputRows: 785 - LocalBytesSent: 205.54 KB - LocalSendTime: 200.630us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 354.13 KB - MergeBlockTime: 0ns - OpenTime: 283.587us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 788.618us - SplitBlockHashComputeTime: 60.213us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.419ms - CloseTime: 123.45us - DeserializeAndMergeTime: 0ns - ExecTime: 2.754ms - ExprTime: 32.662us - GetResultsTime: 1.12ms - HashTableComputeTime: 1.290ms - HashTableEmplaceTime: 1.211ms - HashTableInputCount: 785 - HashTableIterateTime: 5.580us - HashTableSize: 785 - InsertKeysToColumnTime: 98.366us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 185.187us - ProjectionTime: 0ns - RowsProduced: 785 - SerializeDataTime: 888.217us - SerializeKeyTime: 0ns - SerializeResultTime: 1.17ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.847us - ExecTime: 696.185us - InitProbeSideTime: 90.591us - JoinFilterTimer: 207ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 50.492us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 766ns - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 400.477us - ProbeWhenBuildSideOutputTime: 13.609us - ProbeWhenProbeSideOutputTime: 164.939us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.223us - ProjectionTime: 196.996us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.860us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.320us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 345.00 KB - MemoryUsage: - Blocks: 345.00 KB - PeakMemoryUsage: 365.98 KB - OpenTime: 22.545us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=8):(Active: 3.825ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.282ms - CloseTime: 119.705us - GetBlockTime: 2.263ms - OpenTime: 30.711us - PrepareTime: 385.817us - SinkTime: 964.43us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.687ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 131.56us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.372us - CompressTime: 0ns - ExecTime: 1.81ms - InputRows: 738 - LocalBytesSent: 193.39 KB - LocalSendTime: 219.156us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 336.00 KB - MergeBlockTime: 0ns - OpenTime: 105.818us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 494.284us - SplitBlockHashComputeTime: 32.209us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.71ms - CloseTime: 55.423us - DeserializeAndMergeTime: 0ns - ExecTime: 1.995ms - ExprTime: 25.160us - GetResultsTime: 724.99us - HashTableComputeTime: 968.758us - HashTableEmplaceTime: 905.877us - HashTableInputCount: 738 - HashTableIterateTime: 4.320us - HashTableSize: 738 - InsertKeysToColumnTime: 57.548us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 131.170us - ProjectionTime: 0ns - RowsProduced: 738 - SerializeDataTime: 636.422us - SerializeKeyTime: 0ns - SerializeResultTime: 728.831us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 41.354us - ExecTime: 551.904us - InitProbeSideTime: 42.90us - JoinFilterTimer: 45ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 68.614us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 974ns - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 277.529us - ProbeWhenBuildSideOutputTime: 9.14us - ProbeWhenProbeSideOutputTime: 148.861us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.426us - ProjectionTime: 155.454us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.904us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 22.285us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=10):(Active: 3.487ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.995ms - CloseTime: 102.802us - GetBlockTime: 2.103ms - OpenTime: 7.526us - PrepareTime: 374.408us - SinkTime: 859.538us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.375ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.808ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.836us - CompressTime: 0ns - ExecTime: 987.194us - InputRows: 784 - LocalBytesSent: 205.08 KB - LocalSendTime: 172.782us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 359.88 KB - MergeBlockTime: 0ns - OpenTime: 116.638us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 480.154us - SplitBlockHashComputeTime: 33.643us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 993.113us - CloseTime: 57.858us - DeserializeAndMergeTime: 0ns - ExecTime: 1.882ms - ExprTime: 16.577us - GetResultsTime: 703.374us - HashTableComputeTime: 905.762us - HashTableEmplaceTime: 833.717us - HashTableInputCount: 784 - HashTableIterateTime: 5.290us - HashTableSize: 784 - InsertKeysToColumnTime: 48.446us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 116.943us - ProjectionTime: 0ns - RowsProduced: 784 - SerializeDataTime: 637.703us - SerializeKeyTime: 0ns - SerializeResultTime: 706.885us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.976us - ExecTime: 445.57us - InitProbeSideTime: 29.840us - JoinFilterTimer: 59ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 36.806us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.78us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 231.686us - ProbeWhenBuildSideOutputTime: 15.774us - ProbeWhenProbeSideOutputTime: 104.60us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.745us - ProjectionTime: 144.540us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.179us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 345.00 KB - MemoryUsage: - Blocks: 345.00 KB - PeakMemoryUsage: 365.98 KB - OpenTime: 21.757us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=12):(Active: 3.688ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.143ms - CloseTime: 111.744us - GetBlockTime: 2.184ms - OpenTime: 19.320us - PrepareTime: 405.800us - SinkTime: 913.817us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 525.713us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.71us - CompressTime: 0ns - ExecTime: 1.20ms - InputRows: 765 - LocalBytesSent: 198.46 KB - LocalSendTime: 216.166us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 338.38 KB - MergeBlockTime: 0ns - OpenTime: 95.46us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 453.691us - SplitBlockHashComputeTime: 33.129us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 990.997us - CloseTime: 56.661us - DeserializeAndMergeTime: 0ns - ExecTime: 1.807ms - ExprTime: 16.602us - GetResultsTime: 610.691us - HashTableComputeTime: 908.41us - HashTableEmplaceTime: 838.303us - HashTableInputCount: 765 - HashTableIterateTime: 8.530us - HashTableSize: 765 - InsertKeysToColumnTime: 52.683us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 138.664us - ProjectionTime: 0ns - RowsProduced: 765 - SerializeDataTime: 532.600us - SerializeKeyTime: 0ns - SerializeResultTime: 614.262us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 30.419us - ExecTime: 648.666us - InitProbeSideTime: 43.180us - JoinFilterTimer: 111ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 59.20us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 744ns - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 349.533us - ProbeWhenBuildSideOutputTime: 25.340us - ProbeWhenProbeSideOutputTime: 143.286us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 17.317us - ProjectionTime: 198.754us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.462us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.188us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 23.173us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=14):(Active: 6.23ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.415ms - CloseTime: 201.647us - GetBlockTime: 3.723ms - OpenTime: 9.418us - PrepareTime: 389.603us - SinkTime: 1.646ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.809ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 601.293us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.237us - CompressTime: 0ns - ExecTime: 1.765ms - InputRows: 758 - LocalBytesSent: 200.71 KB - LocalSendTime: 287.947us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 338.88 KB - MergeBlockTime: 0ns - OpenTime: 102.452us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 883.270us - SplitBlockHashComputeTime: 72.672us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.631ms - CloseTime: 119.557us - DeserializeAndMergeTime: 0ns - ExecTime: 3.203ms - ExprTime: 33.39us - GetResultsTime: 1.286ms - HashTableComputeTime: 1.459ms - HashTableEmplaceTime: 1.343ms - HashTableInputCount: 758 - HashTableIterateTime: 7.928us - HashTableSize: 758 - InsertKeysToColumnTime: 92.923us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 146.784us - ProjectionTime: 0ns - RowsProduced: 758 - SerializeDataTime: 1.149ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.294ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 50.810us - ExecTime: 857.953us - InitProbeSideTime: 63.527us - JoinFilterTimer: 151ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 44.643us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.201us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 458.890us - ProbeWhenBuildSideOutputTime: 26.183us - ProbeWhenProbeSideOutputTime: 204.765us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.524us - ProjectionTime: 283.911us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.645us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.970us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 31.350us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=16):(Active: 3.860ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.340ms - CloseTime: 113.329us - GetBlockTime: 2.373ms - OpenTime: 14.6us - PrepareTime: 385.934us - SinkTime: 915.289us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 371.378us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.288us - CompressTime: 0ns - ExecTime: 1.32ms - InputRows: 776 - LocalBytesSent: 201.20 KB - LocalSendTime: 156.258us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 344.75 KB - MergeBlockTime: 0ns - OpenTime: 105.22us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 508.335us - SplitBlockHashComputeTime: 31.702us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.35ms - CloseTime: 61.631us - DeserializeAndMergeTime: 0ns - ExecTime: 2.41ms - ExprTime: 20.336us - GetResultsTime: 797.174us - HashTableComputeTime: 946.19us - HashTableEmplaceTime: 872.128us - HashTableInputCount: 776 - HashTableIterateTime: 4.467us - HashTableSize: 776 - InsertKeysToColumnTime: 58.449us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 136.517us - ProjectionTime: 0ns - RowsProduced: 776 - SerializeDataTime: 720.158us - SerializeKeyTime: 0ns - SerializeResultTime: 800.916us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 30.141us - ExecTime: 596.241us - InitProbeSideTime: 55.632us - JoinFilterTimer: 226ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 51.285us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 745ns - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 342.404us - ProbeWhenBuildSideOutputTime: 21.530us - ProbeWhenProbeSideOutputTime: 150.59us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.802us - ProjectionTime: 155.34us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.948us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 345.00 KB - MemoryUsage: - Blocks: 345.00 KB - PeakMemoryUsage: 365.98 KB - OpenTime: 20.88us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s867ms PipelineXTask (index=18):(Active: 4.848ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.295ms - CloseTime: 164.396us - GetBlockTime: 2.787ms - OpenTime: 13.990us - PrepareTime: 367.974us - SinkTime: 1.442ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.26ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.727us - CompressTime: 0ns - ExecTime: 1.558ms - InputRows: 777 - LocalBytesSent: 203.24 KB - LocalSendTime: 257.178us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 340.25 KB - MergeBlockTime: 0ns - OpenTime: 98.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 825.959us - SplitBlockHashComputeTime: 58.706us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.251ms - CloseTime: 90.30us - DeserializeAndMergeTime: 0ns - ExecTime: 2.416ms - ExprTime: 21.559us - GetResultsTime: 937.855us - HashTableComputeTime: 1.126ms - HashTableEmplaceTime: 1.50ms - HashTableInputCount: 777 - HashTableIterateTime: 5.854us - HashTableSize: 777 - InsertKeysToColumnTime: 67.697us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 123.480us - ProjectionTime: 0ns - RowsProduced: 777 - SerializeDataTime: 845.679us - SerializeKeyTime: 0ns - SerializeResultTime: 942.424us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 44.380us - ExecTime: 676.680us - InitProbeSideTime: 40.132us - JoinFilterTimer: 146ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 58.839us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 848ns - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 352.972us - ProbeWhenBuildSideOutputTime: 23.818us - ProbeWhenProbeSideOutputTime: 162.187us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 28.87us - ProjectionTime: 210.54us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.423us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.384us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 345.00 KB - MemoryUsage: - Blocks: 345.00 KB - PeakMemoryUsage: 365.98 KB - OpenTime: 21.679us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s868ms PipelineXTask (index=20):(Active: 3.871ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.318ms - CloseTime: 109.42us - GetBlockTime: 2.374ms - OpenTime: 35.136us - PrepareTime: 401.560us - SinkTime: 879.770us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.334us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.519us - CompressTime: 0ns - ExecTime: 1.6ms - InputRows: 754 - LocalBytesSent: 194.99 KB - LocalSendTime: 167.885us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 334.63 KB - MergeBlockTime: 0ns - OpenTime: 116.163us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 452.369us - SplitBlockHashComputeTime: 35.846us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.40ms - CloseTime: 56.127us - DeserializeAndMergeTime: 0ns - ExecTime: 2.25ms - ExprTime: 17.724us - GetResultsTime: 790.264us - HashTableComputeTime: 945.977us - HashTableEmplaceTime: 889.265us - HashTableInputCount: 754 - HashTableIterateTime: 4.172us - HashTableSize: 754 - InsertKeysToColumnTime: 65.611us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 126.17us - ProjectionTime: 0ns - RowsProduced: 754 - SerializeDataTime: 700.270us - SerializeKeyTime: 0ns - SerializeResultTime: 795.179us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 33.205us - ExecTime: 603.555us - InitProbeSideTime: 49.304us - JoinFilterTimer: 103ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 52.644us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 710ns - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 330.560us - ProbeWhenBuildSideOutputTime: 25.703us - ProbeWhenProbeSideOutputTime: 144.943us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.909us - ProjectionTime: 175.126us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.416us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.323us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 29.49us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s868ms PipelineXTask (index=22):(Active: 4.902ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.334ms - CloseTime: 185.494us - GetBlockTime: 2.798ms - OpenTime: 17.778us - PrepareTime: 356.611us - SinkTime: 1.489ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.670ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.214ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.716us - CompressTime: 0ns - ExecTime: 1.596ms - InputRows: 767 - LocalBytesSent: 200.55 KB - LocalSendTime: 234.843us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 350.50 KB - MergeBlockTime: 0ns - OpenTime: 93.832us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 842.32us - SplitBlockHashComputeTime: 48.207us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.115ms - CloseTime: 97.9us - DeserializeAndMergeTime: 0ns - ExecTime: 2.403ms - ExprTime: 23.129us - GetResultsTime: 1.58ms - HashTableComputeTime: 990.582us - HashTableEmplaceTime: 894.546us - HashTableInputCount: 767 - HashTableIterateTime: 5.192us - HashTableSize: 767 - InsertKeysToColumnTime: 73.27us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 6.59 MB - SerializeKeyArena: 6.57 MB - MergeTime: 0ns - OpenTime: 120.424us - ProjectionTime: 0ns - RowsProduced: 767 - SerializeDataTime: 954.706us - SerializeKeyTime: 0ns - SerializeResultTime: 1.63ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 63.516us - ExecTime: 717.971us - InitProbeSideTime: 48.706us - JoinFilterTimer: 370ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 55.511us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 884ns - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 364.692us - ProbeWhenBuildSideOutputTime: 15.860us - ProbeWhenProbeSideOutputTime: 154.307us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.330us - ProjectionTime: 224.126us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.603us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.667us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 337.00 KB - MemoryUsage: - Blocks: 337.00 KB - PeakMemoryUsage: 357.98 KB - OpenTime: 19.241us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s868ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 226.20us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 130.919us - CloseTime: 7.350us - GetBlockTime: 37.106us - OpenTime: 4.178us - PrepareTime: 77.404us - SinkTime: 59.859us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 208.320us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.300ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.12us - BuildRows: 42 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.844us - BuildTableInsertTime: 12.581us - BuildTableTime: 16.123us - CloseTime: 0ns - ExecTime: 70.961us - InputRows: 41 - MemoryUsage: - BuildBlocks: 1.28 KB - BuildKeyArena: 4.00 KB - HashTable: 428.00 B - PeakMemoryUsage: 1.69 KB - OpenTime: 12.168us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.692us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.611us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.34 KB - MemoryUsage: - Blocks: 3.09 KB - PeakMemoryUsage: 3.09 KB - OpenTime: 14.885us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s614ms PipelineXTask (index=3):(Active: 186.608us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 111.684us - CloseTime: 2.186us - GetBlockTime: 27.813us - OpenTime: 2.571us - PrepareTime: 63.992us - SinkTime: 41.130us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 160.381us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.347ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.516us - BuildRows: 36 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.897us - BuildTableInsertTime: 10.323us - BuildTableTime: 12.607us - CloseTime: 0ns - ExecTime: 53.583us - InputRows: 35 - MemoryUsage: - BuildBlocks: 1.09 KB - BuildKeyArena: 4.00 KB - HashTable: 404.00 B - PeakMemoryUsage: 1.48 KB - OpenTime: 13.111us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 1.826us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.33us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.91 KB - MemoryUsage: - Blocks: 3.28 KB - PeakMemoryUsage: 3.28 KB - OpenTime: 21.393us - ProjectionTime: 0ns - RowsProduced: 35 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s614ms PipelineXTask (index=5):(Active: 301.336us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 163.503us - CloseTime: 6.769us - GetBlockTime: 49.905us - OpenTime: 3.480us - PrepareTime: 118.833us - SinkTime: 78.411us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.344us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.421ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.392us - BuildRows: 54 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.159us - BuildTableInsertTime: 21.273us - BuildTableTime: 24.451us - CloseTime: 0ns - ExecTime: 141.694us - InputRows: 53 - MemoryUsage: - BuildBlocks: 1.66 KB - BuildKeyArena: 4.00 KB - HashTable: 476.00 B - PeakMemoryUsage: 2.11 KB - OpenTime: 60.177us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.235us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 KB - MemoryUsage: - Blocks: 2.41 KB - PeakMemoryUsage: 2.41 KB - OpenTime: 20.538us - ProjectionTime: 0ns - RowsProduced: 53 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s617ms PipelineXTask (index=7):(Active: 315.837us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 195.526us - CloseTime: 6.920us - GetBlockTime: 53.634us - OpenTime: 22.904us - PrepareTime: 84.113us - SinkTime: 76.610us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 296.660us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.371ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.265us - BuildRows: 47 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 36.930us - BuildTableInsertTime: 13.735us - BuildTableTime: 17.519us - CloseTime: 0ns - ExecTime: 101.842us - InputRows: 46 - MemoryUsage: - BuildBlocks: 1.44 KB - BuildKeyArena: 4.00 KB - HashTable: 448.00 B - PeakMemoryUsage: 1.87 KB - OpenTime: 26.879us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.983us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.207us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.56 KB - MemoryUsage: - Blocks: 1.31 KB - PeakMemoryUsage: 1.31 KB - OpenTime: 29.61us - ProjectionTime: 0ns - RowsProduced: 46 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s622ms PipelineXTask (index=9):(Active: 205.485us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 120.600us - CloseTime: 4.890us - GetBlockTime: 29.572us - OpenTime: 2.772us - PrepareTime: 70.598us - SinkTime: 55.689us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.942us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.92ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.925us - BuildRows: 52 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.725us - BuildTableInsertTime: 11.556us - BuildTableTime: 14.457us - CloseTime: 0ns - ExecTime: 69.577us - InputRows: 51 - MemoryUsage: - BuildBlocks: 1.59 KB - BuildKeyArena: 4.00 KB - HashTable: 468.00 B - PeakMemoryUsage: 2.04 KB - OpenTime: 15.327us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.429us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.386us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.00 KB - MemoryUsage: - Blocks: 1.50 KB - PeakMemoryUsage: 1.50 KB - OpenTime: 17.570us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s621ms PipelineXTask (index=11):(Active: 192.739us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 112.912us - CloseTime: 8.361us - GetBlockTime: 32.825us - OpenTime: 3.56us - PrepareTime: 61.802us - SinkTime: 44.309us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 172.915us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.562ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.503us - BuildRows: 38 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.574us - BuildTableInsertTime: 7.573us - BuildTableTime: 9.893us - CloseTime: 0ns - ExecTime: 52.212us - InputRows: 37 - MemoryUsage: - BuildBlocks: 1.16 KB - BuildKeyArena: 4.00 KB - HashTable: 412.00 B - PeakMemoryUsage: 1.55 KB - OpenTime: 9.425us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 7.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.581us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.03 KB - MemoryUsage: - Blocks: 1.44 KB - PeakMemoryUsage: 1.44 KB - OpenTime: 17.694us - ProjectionTime: 0ns - RowsProduced: 37 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s622ms PipelineXTask (index=13):(Active: 201.347us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 125.942us - CloseTime: 6.544us - GetBlockTime: 37.79us - OpenTime: 3.306us - PrepareTime: 60.729us - SinkTime: 60.609us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 188.936us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.27ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.74us - BuildRows: 49 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.919us - BuildTableInsertTime: 10.133us - BuildTableTime: 14.204us - CloseTime: 0ns - ExecTime: 72.319us - InputRows: 48 - MemoryUsage: - BuildBlocks: 1.50 KB - BuildKeyArena: 4.00 KB - HashTable: 456.00 B - PeakMemoryUsage: 1.94 KB - OpenTime: 13.61us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.527us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.532us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.84 KB - MemoryUsage: - Blocks: 3.09 KB - PeakMemoryUsage: 3.09 KB - OpenTime: 17.767us - ProjectionTime: 0ns - RowsProduced: 48 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s616ms PipelineXTask (index=15):(Active: 192.305us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 119.643us - CloseTime: 3.510us - GetBlockTime: 30.872us - OpenTime: 3.625us - PrepareTime: 59.462us - SinkTime: 53.753us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 178.382us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.7ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.256us - BuildRows: 43 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.906us - BuildTableInsertTime: 9.832us - BuildTableTime: 12.151us - CloseTime: 0ns - ExecTime: 70.80us - InputRows: 42 - MemoryUsage: - BuildBlocks: 1.31 KB - BuildKeyArena: 4.00 KB - HashTable: 432.00 B - PeakMemoryUsage: 1.73 KB - OpenTime: 17.592us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.129us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.618us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 KB - MemoryUsage: - Blocks: 1.31 KB - PeakMemoryUsage: 1.31 KB - OpenTime: 15.500us - ProjectionTime: 0ns - RowsProduced: 42 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s622ms PipelineXTask (index=17):(Active: 284.117us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 198.150us - CloseTime: 7.649us - GetBlockTime: 61.971us - OpenTime: 2.46us - PrepareTime: 69.898us - SinkTime: 86.64us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 263.409us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.584ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.834us - BuildRows: 52 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.610us - BuildTableInsertTime: 11.754us - BuildTableTime: 17.108us - CloseTime: 0ns - ExecTime: 96.468us - InputRows: 51 - MemoryUsage: - BuildBlocks: 1.59 KB - BuildKeyArena: 4.00 KB - HashTable: 468.00 B - PeakMemoryUsage: 2.04 KB - OpenTime: 12.382us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.413us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.94 KB - MemoryUsage: - Blocks: 1.38 KB - PeakMemoryUsage: 1.38 KB - OpenTime: 24.622us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s630ms PipelineXTask (index=19):(Active: 212.10us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 138.598us - CloseTime: 3.210us - GetBlockTime: 31.626us - OpenTime: 1.989us - PrepareTime: 62.165us - SinkTime: 72.582us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 197.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.380ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.15us - BuildRows: 53 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.520us - BuildTableInsertTime: 21.249us - BuildTableTime: 24.404us - CloseTime: 0ns - ExecTime: 84.674us - InputRows: 52 - MemoryUsage: - BuildBlocks: 1.63 KB - BuildKeyArena: 4.00 KB - HashTable: 472.00 B - PeakMemoryUsage: 2.08 KB - OpenTime: 13.713us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.56us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.94 KB - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 15.348us - ProjectionTime: 0ns - RowsProduced: 52 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s622ms PipelineXTask (index=21):(Active: 183.717us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 105.500us - CloseTime: 4.29us - GetBlockTime: 22.296us - OpenTime: 2.918us - PrepareTime: 65.342us - SinkTime: 50.492us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 169.235us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.449ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.409us - BuildRows: 45 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.538us - BuildTableInsertTime: 7.654us - BuildTableTime: 9.676us - CloseTime: 0ns - ExecTime: 59.419us - InputRows: 44 - MemoryUsage: - BuildBlocks: 1.38 KB - BuildKeyArena: 4.00 KB - HashTable: 440.00 B - PeakMemoryUsage: 1.80 KB - OpenTime: 10.616us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.726us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.41 KB - MemoryUsage: - Blocks: 1.44 KB - PeakMemoryUsage: 1.44 KB - OpenTime: 20.158us - ProjectionTime: 0ns - RowsProduced: 44 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s622ms PipelineXTask (index=23):(Active: 246.155us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 168.151us - CloseTime: 6.455us - GetBlockTime: 39.96us - OpenTime: 2.562us - PrepareTime: 63.353us - SinkTime: 79.886us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 226.698us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.761ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.942us - BuildRows: 43 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 35.319us - BuildTableInsertTime: 9.600us - BuildTableTime: 11.811us - CloseTime: 0ns - ExecTime: 86.968us - InputRows: 42 - MemoryUsage: - BuildBlocks: 1.31 KB - BuildKeyArena: 4.00 KB - HashTable: 432.00 B - PeakMemoryUsage: 1.73 KB - OpenTime: 9.235us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.261us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.53 KB - MemoryUsage: - Blocks: 1.41 KB - PeakMemoryUsage: 1.41 KB - OpenTime: 22.106us - ProjectionTime: 0ns - RowsProduced: 42 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s616ms Fragment 8: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.987ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.620ms - CloseTime: 69.110us - GetBlockTime: 3.999ms - OpenTime: 14.549us - PrepareTime: 272.122us - SinkTime: 2.508ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.905ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.252us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.71us - CompressTime: 0ns - ExecTime: 2.664ms - InputRows: 9.2K (9200) - LocalBytesSent: 2.94 MB - LocalSendTime: 434.464us - LocalSentRows: 9.2K (9200) - MemoryUsage: - PeakMemoryUsage: 3.98 MB - MergeBlockTime: 0ns - OpenTime: 142.302us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.2K (9200) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.420ms - SplitBlockHashComputeTime: 277.47us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 46.582us - ExecTime: 3.961ms - InitProbeSideTime: 255.425us - JoinFilterTimer: 2.276us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 60.66us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.881us - ProbeFindNextTime: 0ns - ProbeRows: 9.2K (9200) - ProbeTime: 2.990ms - ProbeWhenBuildSideOutputTime: 170.167us - ProbeWhenProbeSideOutputTime: 1.683ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 330.663us - ProjectionTime: 789.764us - RowsProduced: 9.2K (9200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 83.292us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.98 MB - OpenTime: 1.730us - ProjectionTime: 0ns - RowsProduced: 9.2K (9200) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s861ms PipelineXTask (index=4):(Active: 886.590us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 632.796us - CloseTime: 25.535us - GetBlockTime: 210.999us - OpenTime: 5.766us - PrepareTime: 214.348us - SinkTime: 328.358us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 846.508us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 357.92us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.525us - CompressTime: 0ns - ExecTime: 435.447us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 161.873us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 96.984us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 540ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 12.697us - ExecTime: 203.986us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 59.698us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 10.762us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 116.750us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 54.413us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 7.38 KB - OpenTime: 894ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms PipelineXTask (index=8):(Active: 876.7us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 622.490us - CloseTime: 26.609us - GetBlockTime: 61.203us - OpenTime: 6.927us - PrepareTime: 214.273us - SinkTime: 520.626us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 840.291us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 446.721us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.753us - CompressTime: 0ns - ExecTime: 641.853us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 244.37us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 109.985us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 619ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 12.313us - ExecTime: 122.20us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 50.480us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 15.641us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 41.867us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.163us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.20us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms PipelineXTask (index=12):(Active: 643.507us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 382.766us - CloseTime: 21.404us - GetBlockTime: 35.412us - OpenTime: 7.815us - PrepareTime: 224.323us - SinkTime: 316.38us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 612.814us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.963us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.459us - CompressTime: 0ns - ExecTime: 440.531us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 167.761us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 114.534us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 452ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.99us - ExecTime: 88.701us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 46.241us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 9.90us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 22.649us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 4.684us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.852us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s863ms PipelineXTask (index=16):(Active: 652.684us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 406.619us - CloseTime: 19.846us - GetBlockTime: 30.264us - OpenTime: 6.323us - PrepareTime: 213.430us - SinkTime: 349.33us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 623.600us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 728.473us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.764us - CompressTime: 0ns - ExecTime: 460.433us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 184.665us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 102.950us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 210ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.795us - ExecTime: 88.362us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 49.953us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.584us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 19.383us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 4.638us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.920us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms PipelineXTask (index=20):(Active: 837.739us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 554.525us - CloseTime: 43.989us - GetBlockTime: 56.124us - OpenTime: 6.835us - PrepareTime: 225.640us - SinkTime: 463.263us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 782.890us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 142.108us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.711us - CompressTime: 0ns - ExecTime: 590.835us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 234.488us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 100.496us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 617ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 13.803us - ExecTime: 123.360us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 55.489us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 14.612us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 37.394us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.987us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.31us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s863ms PipelineXTask (index=24):(Active: 659.534us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 412.827us - CloseTime: 20.878us - GetBlockTime: 52.0us - OpenTime: 9.616us - PrepareTime: 210.830us - SinkTime: 333.399us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 632.211us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.871us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.769us - CompressTime: 0ns - ExecTime: 439.562us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 175.463us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 96.816us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 626ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.543us - ExecTime: 101.201us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 41.495us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 13.704us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 34.304us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.872us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 919ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s863ms PipelineXTask (index=28):(Active: 876.469us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 622.388us - CloseTime: 21.870us - GetBlockTime: 65.534us - OpenTime: 9.49us - PrepareTime: 216.575us - SinkTime: 528.99us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 846.65us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 625.647us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.12us - CompressTime: 0ns - ExecTime: 638.96us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 283.283us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 99.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 447ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.339us - ExecTime: 120.287us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 48.511us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 12.612us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 49.137us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 4.564us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.587us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s863ms PipelineXTask (index=32):(Active: 649.487us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 383.738us - CloseTime: 16.239us - GetBlockTime: 26.933us - OpenTime: 8.426us - PrepareTime: 234.262us - SinkTime: 333.297us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 625.798us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 826.323us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.21us - CompressTime: 0ns - ExecTime: 461.513us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 168.424us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 120.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 338ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.29us - ExecTime: 96.694us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 64.263us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.399us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.663us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.791us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.48us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms PipelineXTask (index=36):(Active: 996.516us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 732.216us - CloseTime: 42.76us - GetBlockTime: 67.742us - OpenTime: 11.25us - PrepareTime: 204.438us - SinkTime: 627.450us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 942.956us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 302.991us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.400us - CompressTime: 0ns - ExecTime: 757.240us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 342.892us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 102.941us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 946ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 11.960us - ExecTime: 137.361us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 59.822us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 16.311us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 47.376us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.97us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 955ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms PipelineXTask (index=40):(Active: 690.30us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 430.733us - CloseTime: 22.532us - GetBlockTime: 52.989us - OpenTime: 7.450us - PrepareTime: 222.117us - SinkTime: 350.511us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 659.460us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 292.56us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.625us - CompressTime: 0ns - ExecTime: 457.295us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 188.12us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 97.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 600ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 11.295us - ExecTime: 108.872us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 46.411us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 9.762us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 39.796us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.2us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 945ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s863ms PipelineXTask (index=44):(Active: 598.615us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 387.960us - CloseTime: 18.581us - GetBlockTime: 30.669us - OpenTime: 4.803us - PrepareTime: 180.702us - SinkTime: 336.979us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 572.769us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 741.579us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.677us - CompressTime: 0ns - ExecTime: 438.79us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 161.278us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 0ns - OpenTime: 92.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 302ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.506us - ExecTime: 81.413us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 43.630us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.473us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 19.562us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.466us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 960ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s862ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 805.14us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 602.864us - CloseTime: 73.653us - GetBlockTime: 481.21us - OpenTime: 10.143us - PrepareTime: 113.92us - SinkTime: 79.502us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 721.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.975us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 79.289us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.134us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 45.930us - ExecTime: 547.737us - InitProbeSideTime: 32.962us - JoinFilterTimer: 177ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 40.880us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.646us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 259.44us - ProbeWhenBuildSideOutputTime: 32.110us - ProbeWhenProbeSideOutputTime: 110.751us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.3us - ProjectionTime: 191.229us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 24.557us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.270us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 302.66 KB - OpenTime: 28.877us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=5):(Active: 625.563us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 426.148us - CloseTime: 37.991us - GetBlockTime: 364.445us - OpenTime: 14.290us - PrepareTime: 140.372us - SinkTime: 21.76us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 578.803us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 603.23us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 22.152us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.804us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 19.747us - ExecTime: 427.526us - InitProbeSideTime: 32.239us - JoinFilterTimer: 58ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 53.810us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 718ns - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 185.83us - ProbeWhenBuildSideOutputTime: 21.611us - ProbeWhenProbeSideOutputTime: 60.596us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.865us - ProjectionTime: 160.986us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 16.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.95us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 310.97 KB - OpenTime: 23.725us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=9):(Active: 956.649us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 791.14us - CloseTime: 31.874us - GetBlockTime: 682.888us - OpenTime: 12.686us - PrepareTime: 114.114us - SinkTime: 61.913us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 914.218us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 494.335us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 61.986us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.814us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.607us - ExecTime: 733.461us - InitProbeSideTime: 52.898us - JoinFilterTimer: 261ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 39.533us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 938ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 404.862us - ProbeWhenBuildSideOutputTime: 51.730us - ProbeWhenProbeSideOutputTime: 149.162us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.531us - ProjectionTime: 254.145us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.135us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.190us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 307.64 KB - OpenTime: 31.918us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=13):(Active: 812.557us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 647.265us - CloseTime: 30.836us - GetBlockTime: 526.739us - OpenTime: 14.357us - PrepareTime: 112.724us - SinkTime: 33.899us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 734.388us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 234.698us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 34.480us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.780us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.849us - ExecTime: 589.774us - InitProbeSideTime: 25.301us - JoinFilterTimer: 131ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 53.300us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 773ns - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 216.988us - ProbeWhenBuildSideOutputTime: 34.152us - ProbeWhenProbeSideOutputTime: 82.619us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.901us - ProjectionTime: 286.520us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.61us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.831us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 309.00 KB - MemoryUsage: - Blocks: 309.00 KB - PeakMemoryUsage: 315.64 KB - OpenTime: 19.772us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=17):(Active: 708.524us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 538.419us - CloseTime: 32.66us - GetBlockTime: 450.29us - OpenTime: 8.303us - PrepareTime: 123.974us - SinkTime: 36.455us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 666.801us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.800us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 37.353us - InputRows: 738 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.806us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 26.432us - ExecTime: 507.316us - InitProbeSideTime: 44.45us - JoinFilterTimer: 191ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 42.864us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 854ns - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 249.853us - ProbeWhenBuildSideOutputTime: 25.487us - ProbeWhenProbeSideOutputTime: 97.300us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.695us - ProjectionTime: 180.699us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.484us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 310.97 KB - OpenTime: 18.841us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s862ms PipelineXTask (index=21):(Active: 668.776us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 490.119us - CloseTime: 40.682us - GetBlockTime: 422.278us - OpenTime: 11.59us - PrepareTime: 119.967us - SinkTime: 25.255us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 617.502us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 275.919us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.886us - InputRows: 784 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.44us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 36.839us - ExecTime: 485.910us - InitProbeSideTime: 36.441us - JoinFilterTimer: 45ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 40.692us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.37us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 232.163us - ProbeWhenBuildSideOutputTime: 29.597us - ProbeWhenProbeSideOutputTime: 83.743us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.37us - ProjectionTime: 167.635us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.716us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.800us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 309.00 KB - MemoryUsage: - Blocks: 309.00 KB - PeakMemoryUsage: 315.64 KB - OpenTime: 23.359us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=25):(Active: 839.864us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 663.874us - CloseTime: 39.512us - GetBlockTime: 555.619us - OpenTime: 8.945us - PrepareTime: 120.579us - SinkTime: 59.106us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 788.764us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.566us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 59.401us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.830us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 31.741us - ExecTime: 614.637us - InitProbeSideTime: 49.850us - JoinFilterTimer: 202ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 43.97us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.127us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 308.941us - ProbeWhenBuildSideOutputTime: 30.227us - ProbeWhenProbeSideOutputTime: 125.687us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.49us - ProjectionTime: 218.87us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.744us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 314.29 KB - OpenTime: 21.632us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=29):(Active: 618.173us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 466.319us - CloseTime: 25.267us - GetBlockTime: 406.311us - OpenTime: 19.337us - PrepareTime: 100.682us - SinkTime: 19.519us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 585.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.879us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.391us - InputRows: 758 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.717us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 19.933us - ExecTime: 472.443us - InitProbeSideTime: 31.729us - JoinFilterTimer: 177ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 53.417us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.7us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 238.922us - ProbeWhenBuildSideOutputTime: 25.313us - ProbeWhenProbeSideOutputTime: 106.648us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.249us - ProjectionTime: 152.254us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.831us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.282us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 317.61 KB - OpenTime: 19.193us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s862ms PipelineXTask (index=33):(Active: 654.444us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 471.71us - CloseTime: 54.815us - GetBlockTime: 402.808us - OpenTime: 7.400us - PrepareTime: 115.367us - SinkTime: 32.0us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 591.294us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 395.659us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 32.541us - InputRows: 776 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.620us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 49.405us - ExecTime: 483.421us - InitProbeSideTime: 22.4us - JoinFilterTimer: 191ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 51.975us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 803ns - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 202.597us - ProbeWhenBuildSideOutputTime: 22.3us - ProbeWhenProbeSideOutputTime: 85.30us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.388us - ProjectionTime: 170.657us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.933us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 309.00 KB - MemoryUsage: - Blocks: 309.00 KB - PeakMemoryUsage: 317.31 KB - OpenTime: 29.517us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=37):(Active: 682.372us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 518.635us - CloseTime: 28.664us - GetBlockTime: 438.764us - OpenTime: 9.240us - PrepareTime: 119.725us - SinkTime: 51.502us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 646.698us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 323.571us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 52.592us - InputRows: 777 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.698us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.930us - ExecTime: 489.354us - InitProbeSideTime: 31.593us - JoinFilterTimer: 179ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 36.654us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 618ns - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 280.934us - ProbeWhenBuildSideOutputTime: 68.762us - ProbeWhenProbeSideOutputTime: 111.630us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.558us - ProjectionTime: 144.846us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.175us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.421us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 309.00 KB - MemoryUsage: - Blocks: 309.00 KB - PeakMemoryUsage: 327.27 KB - OpenTime: 16.457us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s862ms PipelineXTask (index=41):(Active: 718.615us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 510.138us - CloseTime: 95.614us - GetBlockTime: 463.344us - OpenTime: 5.67us - PrepareTime: 102.0us - SinkTime: 19.1us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 614.602us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 534.438us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 22.458us - InputRows: 754 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.611us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 87.845us - ExecTime: 544.511us - InitProbeSideTime: 41.639us - JoinFilterTimer: 36ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 32.223us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 486ns - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 267.556us - ProbeWhenBuildSideOutputTime: 37.105us - ProbeWhenProbeSideOutputTime: 116.438us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.469us - ProjectionTime: 138.111us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.328us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.836us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 312.63 KB - OpenTime: 23.732us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s861ms PipelineXTask (index=45):(Active: 726.926us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 565.392us - CloseTime: 29.873us - GetBlockTime: 507.898us - OpenTime: 10.530us - PrepareTime: 114.438us - SinkTime: 21.541us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 688.628us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.603us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.939us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.701us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.626us - ExecTime: 553.785us - InitProbeSideTime: 43.890us - JoinFilterTimer: 64ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 33.578us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 810ns - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 307.413us - ProbeWhenBuildSideOutputTime: 41.420us - ProbeWhenProbeSideOutputTime: 139.367us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.51us - ProjectionTime: 182.215us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.298us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.333us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 301.00 KB - MemoryUsage: - Blocks: 301.00 KB - PeakMemoryUsage: 315.95 KB - OpenTime: 16.186us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s862ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 408.910us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 298.165us - CloseTime: 14.565us - GetBlockTime: 78.180us - OpenTime: 3.827us - PrepareTime: 85.912us - SinkTime: 172.742us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 384.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.652ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 5.426us - BuildRows: 965 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 55.961us - BuildTableInsertTime: 45.418us - BuildTableTime: 53.662us - CloseTime: 0ns - ExecTime: 202.580us - InputRows: 964 - MemoryUsage: - BuildBlocks: 30.11 KB - BuildKeyArena: 28.00 KB - HashTable: 11.77 KB - PeakMemoryUsage: 65.88 KB - OpenTime: 31.405us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=60): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.239us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 29.25 KB - PeakMemoryUsage: 23.25 KB - OpenTime: 18.395us - ProjectionTime: 0ns - RowsProduced: 964 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s512ms PipelineXTask (index=6):(Active: 114.383us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.902us - CloseTime: 4.244us - GetBlockTime: 0ns - OpenTime: 3.15us - PrepareTime: 81.332us - SinkTime: 4.716us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.104us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.255us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.352us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.845us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.134us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.207us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 37.362us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 96.429us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.358us - CloseTime: 3.568us - GetBlockTime: 0ns - OpenTime: 2.142us - PrepareTime: 71.212us - SinkTime: 4.996us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.568us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 524.791us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.355us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.703us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.608us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.841us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.542us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 135.673us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 58.964us - CloseTime: 8.874us - GetBlockTime: 0ns - OpenTime: 4.419us - PrepareTime: 57.717us - SinkTime: 16.500us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.268us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.306ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.208us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.299us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.794us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.166us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.331us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 128.7us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.404us - CloseTime: 12.524us - GetBlockTime: 0ns - OpenTime: 2.140us - PrepareTime: 58.450us - SinkTime: 25.574us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.236us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.837ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.722us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.624us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.654us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.956us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 157.94us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 56.298us - CloseTime: 4.517us - GetBlockTime: 0ns - OpenTime: 2.175us - PrepareTime: 88.672us - SinkTime: 6.118us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.671us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.888ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.76us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.340us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.576us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.165us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.740us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 115.405us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.74us - CloseTime: 6.38us - GetBlockTime: 0ns - OpenTime: 2.193us - PrepareTime: 69.363us - SinkTime: 20.241us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.983us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.833us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.607us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.580us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.979us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.999us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 81.455us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.638us - CloseTime: 3.736us - GetBlockTime: 0ns - OpenTime: 2.104us - PrepareTime: 55.989us - SinkTime: 4.240us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 73.277us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.168us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.218us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.652us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.771us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.367us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 111.720us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.794us - CloseTime: 2.941us - GetBlockTime: 0ns - OpenTime: 3.155us - PrepareTime: 62.931us - SinkTime: 14.324us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.998us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 502.659us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.406us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.87us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.235us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.372us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 87.819us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.209us - CloseTime: 5.198us - GetBlockTime: 0ns - OpenTime: 2.308us - PrepareTime: 56.605us - SinkTime: 6.238us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.24us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 186.583us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.274us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.275us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.267us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.804us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.689us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=42):(Active: 117.981us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.728us - CloseTime: 6.228us - GetBlockTime: 0ns - OpenTime: 2.871us - PrepareTime: 67.685us - SinkTime: 7.307us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.200us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.357ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.993us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.790us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.941us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.171us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.232us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 91.535us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.669us - CloseTime: 4.720us - GetBlockTime: 0ns - OpenTime: 2.308us - PrepareTime: 59.560us - SinkTime: 5.7us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.84us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 525.379us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689633c6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.646us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.715us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s574ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.774us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.159us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.567us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 330.850us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 242.954us - CloseTime: 13.814us - GetBlockTime: 81.211us - OpenTime: 1.966us - PrepareTime: 66.270us - SinkTime: 132.774us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.355us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.280ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.252us - BuildRows: 209 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.279us - BuildTableInsertTime: 16.587us - BuildTableTime: 24.275us - CloseTime: 0ns - ExecTime: 139.991us - InputRows: 208 - MemoryUsage: - BuildBlocks: 9.73 KB - BuildKeyArena: 12.00 KB - HashTable: 1.82 KB - PeakMemoryUsage: 19.54 KB - OpenTime: 9.323us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.75 KB - MemoryUsage: - Blocks: 11.50 KB - PeakMemoryUsage: 11.50 KB - OpenTime: 20.4us - ProjectionTime: 0ns - RowsProduced: 208 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=7):(Active: 311.371us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 211.400us - CloseTime: 11.427us - GetBlockTime: 63.831us - OpenTime: 2.528us - PrepareTime: 80.481us - SinkTime: 123.258us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 293.529us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.240ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.249us - BuildRows: 185 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.781us - BuildTableInsertTime: 16.142us - BuildTableTime: 22.532us - CloseTime: 0ns - ExecTime: 148.785us - InputRows: 184 - MemoryUsage: - BuildBlocks: 8.62 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 18.34 KB - OpenTime: 26.853us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.412us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.122us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.75 KB - MemoryUsage: - Blocks: 16.75 KB - PeakMemoryUsage: 16.75 KB - OpenTime: 28.433us - ProjectionTime: 0ns - RowsProduced: 184 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s692ms PipelineXTask (index=11):(Active: 340.611us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 260.582us - CloseTime: 6.132us - GetBlockTime: 78.654us - OpenTime: 2.406us - PrepareTime: 64.230us - SinkTime: 126.908us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 320.63us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.766ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.970us - BuildRows: 186 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.23us - BuildTableInsertTime: 21.742us - BuildTableTime: 29.691us - CloseTime: 0ns - ExecTime: 131.686us - InputRows: 185 - MemoryUsage: - BuildBlocks: 8.65 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 18.37 KB - OpenTime: 7.686us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.843us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.56 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.75 KB - OpenTime: 24.620us - ProjectionTime: 0ns - RowsProduced: 185 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=15):(Active: 304.86us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 224.19us - CloseTime: 5.201us - GetBlockTime: 65.510us - OpenTime: 2.330us - PrepareTime: 65.763us - SinkTime: 123.893us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 288.536us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.890ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.451us - BuildRows: 202 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 57.663us - BuildTableInsertTime: 17.626us - BuildTableTime: 23.480us - CloseTime: 0ns - ExecTime: 131.947us - InputRows: 201 - MemoryUsage: - BuildBlocks: 9.40 KB - BuildKeyArena: 12.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 19.18 KB - OpenTime: 10.234us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.384us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.986us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.50 KB - MemoryUsage: - Blocks: 6.69 KB - PeakMemoryUsage: 6.69 KB - OpenTime: 24.534us - ProjectionTime: 0ns - RowsProduced: 201 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=19):(Active: 267.271us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 186.688us - CloseTime: 4.844us - GetBlockTime: 50.654us - OpenTime: 2.162us - PrepareTime: 56.414us - SinkTime: 83.929us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 240.768us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.244ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.553us - BuildRows: 191 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 43.423us - BuildTableInsertTime: 15.393us - BuildTableTime: 20.376us - CloseTime: 0ns - ExecTime: 96.176us - InputRows: 190 - MemoryUsage: - BuildBlocks: 8.89 KB - BuildKeyArena: 12.00 KB - HashTable: 1.75 KB - PeakMemoryUsage: 18.63 KB - OpenTime: 14.327us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.327us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 67.923us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.75 KB - MemoryUsage: - Blocks: 7.19 KB - PeakMemoryUsage: 7.19 KB - OpenTime: 17.882us - ProjectionTime: 0ns - RowsProduced: 190 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=23):(Active: 407.714us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 324.987us - CloseTime: 12.317us - GetBlockTime: 86.740us - OpenTime: 2.550us - PrepareTime: 62.848us - SinkTime: 184.361us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 382.509us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.603ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.893us - BuildRows: 199 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 90.494us - BuildTableInsertTime: 34.776us - BuildTableTime: 44.317us - CloseTime: 0ns - ExecTime: 194.236us - InputRows: 198 - MemoryUsage: - BuildBlocks: 9.27 KB - BuildKeyArena: 12.00 KB - HashTable: 1.78 KB - PeakMemoryUsage: 19.04 KB - OpenTime: 14.269us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.520us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.519us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.25 KB - MemoryUsage: - Blocks: 5.50 KB - PeakMemoryUsage: 5.50 KB - OpenTime: 23.582us - ProjectionTime: 0ns - RowsProduced: 198 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s706ms PipelineXTask (index=27):(Active: 285.550us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 195.638us - CloseTime: 2.698us - GetBlockTime: 51.142us - OpenTime: 1.570us - PrepareTime: 81.5us - SinkTime: 106.368us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.948us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.599ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.633us - BuildRows: 188 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 59.132us - BuildTableInsertTime: 14.667us - BuildTableTime: 19.250us - CloseTime: 0ns - ExecTime: 129.909us - InputRows: 187 - MemoryUsage: - BuildBlocks: 8.75 KB - BuildKeyArena: 12.00 KB - HashTable: 1.74 KB - PeakMemoryUsage: 18.48 KB - OpenTime: 26.216us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.367us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.38 KB - MemoryUsage: - Blocks: 5.06 KB - PeakMemoryUsage: 5.06 KB - OpenTime: 24.629us - ProjectionTime: 0ns - RowsProduced: 187 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s705ms PipelineXTask (index=31):(Active: 274.189us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 201.161us - CloseTime: 2.406us - GetBlockTime: 53.402us - OpenTime: 2.303us - PrepareTime: 62.158us - SinkTime: 111.549us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 261.140us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.124ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.728us - BuildRows: 206 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 62.937us - BuildTableInsertTime: 12.223us - BuildTableTime: 16.222us - CloseTime: 0ns - ExecTime: 115.825us - InputRows: 205 - MemoryUsage: - BuildBlocks: 9.56 KB - BuildKeyArena: 12.00 KB - HashTable: 1.81 KB - PeakMemoryUsage: 19.36 KB - OpenTime: 7.886us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.103us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.700us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 21.936us - ProjectionTime: 0ns - RowsProduced: 205 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s703ms PipelineXTask (index=35):(Active: 278.624us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 204.746us - CloseTime: 5.324us - GetBlockTime: 67.73us - OpenTime: 3.303us - PrepareTime: 59.413us - SinkTime: 100.227us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 263.386us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.76ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.296us - BuildRows: 182 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 48.241us - BuildTableInsertTime: 26.457us - BuildTableTime: 32.447us - CloseTime: 0ns - ExecTime: 118.490us - InputRows: 181 - MemoryUsage: - BuildBlocks: 8.47 KB - BuildKeyArena: 12.00 KB - HashTable: 1.71 KB - PeakMemoryUsage: 18.18 KB - OpenTime: 19.803us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.809us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.50 KB - MemoryUsage: - Blocks: 7.44 KB - PeakMemoryUsage: 7.44 KB - OpenTime: 15.501us - ProjectionTime: 0ns - RowsProduced: 181 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=39):(Active: 304.306us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 218.253us - CloseTime: 3.913us - GetBlockTime: 55.198us - OpenTime: 2.668us - PrepareTime: 57.211us - SinkTime: 100.753us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 273.164us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.263ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.451us - BuildRows: 200 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 56.11us - BuildTableInsertTime: 15.973us - BuildTableTime: 20.822us - CloseTime: 0ns - ExecTime: 108.730us - InputRows: 199 - MemoryUsage: - BuildBlocks: 9.30 KB - BuildKeyArena: 12.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 19.08 KB - OpenTime: 11.225us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 74.934us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.75 KB - MemoryUsage: - Blocks: 6.94 KB - PeakMemoryUsage: 6.94 KB - OpenTime: 21.628us - ProjectionTime: 0ns - RowsProduced: 199 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=43):(Active: 227.973us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 164.338us - CloseTime: 3.551us - GetBlockTime: 49.840us - OpenTime: 1.924us - PrepareTime: 52.491us - SinkTime: 83.379us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.31us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.445ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.927us - BuildRows: 176 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.196us - BuildTableInsertTime: 16.105us - BuildTableTime: 19.753us - CloseTime: 0ns - ExecTime: 91.852us - InputRows: 175 - MemoryUsage: - BuildBlocks: 8.19 KB - BuildKeyArena: 4.00 KB - HashTable: 1.69 KB - PeakMemoryUsage: 9.87 KB - OpenTime: 10.867us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.50us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.485us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 16.489us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s699ms PipelineXTask (index=47):(Active: 328.359us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 215.777us - CloseTime: 5.485us - GetBlockTime: 55.809us - OpenTime: 2.480us - PrepareTime: 99.437us - SinkTime: 105.319us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 299.843us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.343ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.477us - BuildRows: 203 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 62.455us - BuildTableInsertTime: 11.929us - BuildTableTime: 17.223us - CloseTime: 0ns - ExecTime: 127.507us - InputRows: 202 - MemoryUsage: - BuildBlocks: 9.42 KB - BuildKeyArena: 12.00 KB - HashTable: 1.80 KB - PeakMemoryUsage: 19.21 KB - OpenTime: 25.321us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.633us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.13 KB - MemoryUsage: - Blocks: 6.13 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 30.810us - ProjectionTime: 0ns - RowsProduced: 202 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s705ms Fragment 9: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.476ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.147ms - CloseTime: 64.74us - GetBlockTime: 346.584us - OpenTime: 9.333us - PrepareTime: 247.205us - SinkTime: 749.291us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.399ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 249.256us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.615us - CompressTime: 0ns - ExecTime: 889.919us - InputRows: 770 - LocalBytesSent: 224.84 KB - LocalSendTime: 318.129us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 123.913us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 170.369us - SplitBlockHashComputeTime: 24.123us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 39.74us - ExecTime: 412.428us - InitProbeSideTime: 25.406us - JoinFilterTimer: 43ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 35.27us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.430us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 184.28us - ProbeWhenBuildSideOutputTime: 20.977us - ProbeWhenProbeSideOutputTime: 81.329us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.796us - ProjectionTime: 146.3us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.434us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.669us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 283.00 KB - OpenTime: 19.739us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=2):(Active: 1.279ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 990.939us - CloseTime: 55.240us - GetBlockTime: 328.318us - OpenTime: 8.282us - PrepareTime: 218.338us - SinkTime: 626.347us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.214ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 445.177us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.990us - CompressTime: 0ns - ExecTime: 732.345us - InputRows: 756 - LocalBytesSent: 220.54 KB - LocalSendTime: 216.626us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 94.911us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 171.836us - SplitBlockHashComputeTime: 19.411us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 35.405us - ExecTime: 401.177us - InitProbeSideTime: 17.876us - JoinFilterTimer: 189ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 42.177us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 535ns - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 148.762us - ProbeWhenBuildSideOutputTime: 16.733us - ProbeWhenProbeSideOutputTime: 59.157us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.727us - ProjectionTime: 168.568us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.251us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.762us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 293.77 KB - OpenTime: 25.435us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=4):(Active: 1.245ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 982.900us - CloseTime: 38.231us - GetBlockTime: 402.831us - OpenTime: 8.620us - PrepareTime: 208.769us - SinkTime: 544.892us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.197ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 419.86us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.324us - CompressTime: 0ns - ExecTime: 656.173us - InputRows: 770 - LocalBytesSent: 224.71 KB - LocalSendTime: 143.265us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 102.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 196.812us - SplitBlockHashComputeTime: 21.60us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.328us - ExecTime: 452.55us - InitProbeSideTime: 37.877us - JoinFilterTimer: 202ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 33.158us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 781ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 205.422us - ProbeWhenBuildSideOutputTime: 19.487us - ProbeWhenProbeSideOutputTime: 89.7us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.949us - ProjectionTime: 183.507us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.440us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.270us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 296.84 KB - OpenTime: 26.313us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=6):(Active: 1.254ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 978.223us - CloseTime: 53.912us - GetBlockTime: 365.881us - OpenTime: 9.900us - PrepareTime: 205.938us - SinkTime: 580.235us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.903us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.16us - CompressTime: 0ns - ExecTime: 670.859us - InputRows: 785 - LocalBytesSent: 229.23 KB - LocalSendTime: 170.372us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 311.41 KB - MergeBlockTime: 0ns - OpenTime: 81.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 180.965us - SplitBlockHashComputeTime: 20.827us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.588us - ExecTime: 439.850us - InitProbeSideTime: 22.777us - JoinFilterTimer: 133ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 43.605us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 691ns - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 198.258us - ProbeWhenBuildSideOutputTime: 17.138us - ProbeWhenProbeSideOutputTime: 105.196us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.821us - ProjectionTime: 154.674us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.652us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.967us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 291.00 KB - MemoryUsage: - Blocks: 291.00 KB - PeakMemoryUsage: 301.77 KB - OpenTime: 23.366us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=8):(Active: 1.488ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.171ms - CloseTime: 92.378us - GetBlockTime: 398.496us - OpenTime: 7.911us - PrepareTime: 208.859us - SinkTime: 726.283us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.382ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 406.505us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.908us - CompressTime: 0ns - ExecTime: 845.892us - InputRows: 738 - LocalBytesSent: 215.20 KB - LocalSendTime: 231.990us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 94.671us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 239.747us - SplitBlockHashComputeTime: 18.106us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 58.214us - ExecTime: 479.96us - InitProbeSideTime: 34.147us - JoinFilterTimer: 50ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 34.230us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 734ns - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 224.79us - ProbeWhenBuildSideOutputTime: 29.619us - ProbeWhenProbeSideOutputTime: 100.873us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.565us - ProjectionTime: 153.674us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.225us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.788us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 284.54 KB - OpenTime: 26.729us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=10):(Active: 1.251ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 980.885us - CloseTime: 50.7us - GetBlockTime: 344.199us - OpenTime: 8.676us - PrepareTime: 205.220us - SinkTime: 598.489us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.192ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 345.274us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.920us - CompressTime: 0ns - ExecTime: 703.124us - InputRows: 784 - LocalBytesSent: 228.86 KB - LocalSendTime: 172.450us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 311.41 KB - MergeBlockTime: 0ns - OpenTime: 94.442us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 201.718us - SplitBlockHashComputeTime: 19.883us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 32.304us - ExecTime: 406.436us - InitProbeSideTime: 22.486us - JoinFilterTimer: 141ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 36.665us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 949ns - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 161.926us - ProbeWhenBuildSideOutputTime: 18.186us - ProbeWhenProbeSideOutputTime: 63.345us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.190us - ProjectionTime: 167.758us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.424us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 291.00 KB - MemoryUsage: - Blocks: 291.00 KB - PeakMemoryUsage: 303.30 KB - OpenTime: 22.305us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=12):(Active: 1.694ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.406ms - CloseTime: 52.177us - GetBlockTime: 571.345us - OpenTime: 14.557us - PrepareTime: 214.304us - SinkTime: 788.329us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.631ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 777.476us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.228us - CompressTime: 0ns - ExecTime: 899.794us - InputRows: 765 - LocalBytesSent: 223.39 KB - LocalSendTime: 228.570us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 101.588us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 246.221us - SplitBlockHashComputeTime: 39.331us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 32.701us - ExecTime: 621.349us - InitProbeSideTime: 39.686us - JoinFilterTimer: 266ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 32.545us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 966ns - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 317.490us - ProbeWhenBuildSideOutputTime: 40.528us - ProbeWhenProbeSideOutputTime: 111.26us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.586us - ProjectionTime: 227.224us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.745us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 296.84 KB - OpenTime: 24.124us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=14):(Active: 1.303ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.38ms - CloseTime: 38.624us - GetBlockTime: 414.885us - OpenTime: 8.46us - PrepareTime: 213.801us - SinkTime: 594.834us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.258ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 379.209us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.634us - CompressTime: 0ns - ExecTime: 706.377us - InputRows: 758 - LocalBytesSent: 220.95 KB - LocalSendTime: 204.417us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 100.642us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 170.178us - SplitBlockHashComputeTime: 20.672us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.555us - ExecTime: 474.976us - InitProbeSideTime: 42.432us - JoinFilterTimer: 80ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 48.289us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.20us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 237.237us - ProbeWhenBuildSideOutputTime: 24.217us - ProbeWhenProbeSideOutputTime: 98.48us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.643us - ProjectionTime: 159.763us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.857us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.789us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 299.92 KB - OpenTime: 25.225us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=16):(Active: 1.303ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.19ms - CloseTime: 54.22us - GetBlockTime: 394.52us - OpenTime: 9.800us - PrepareTime: 213.628us - SinkTime: 583.189us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.238ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 448.107us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.220us - CompressTime: 0ns - ExecTime: 694.584us - InputRows: 776 - LocalBytesSent: 226.60 KB - LocalSendTime: 178.804us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 311.41 KB - MergeBlockTime: 0ns - OpenTime: 103.10us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.291us - SplitBlockHashComputeTime: 20.293us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 38.550us - ExecTime: 459.867us - InitProbeSideTime: 27.472us - JoinFilterTimer: 128ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 35.438us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 628ns - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 234.442us - ProbeWhenBuildSideOutputTime: 19.652us - ProbeWhenProbeSideOutputTime: 133.750us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.763us - ProjectionTime: 144.241us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.685us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.211us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 291.00 KB - MemoryUsage: - Blocks: 291.00 KB - PeakMemoryUsage: 300.23 KB - OpenTime: 16.395us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=18):(Active: 1.754ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.404ms - CloseTime: 97.390us - GetBlockTime: 471.868us - OpenTime: 19.500us - PrepareTime: 224.961us - SinkTime: 881.346us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.631ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 776.668us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 33.774us - CompressTime: 0ns - ExecTime: 1.13ms - InputRows: 777 - LocalBytesSent: 226.82 KB - LocalSendTime: 323.380us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 311.41 KB - MergeBlockTime: 0ns - OpenTime: 99.458us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 297.652us - SplitBlockHashComputeTime: 30.970us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 44.205us - ExecTime: 550.100us - InitProbeSideTime: 43.677us - JoinFilterTimer: 175ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 44.386us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.43us - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 249.34us - ProbeWhenBuildSideOutputTime: 24.710us - ProbeWhenProbeSideOutputTime: 117.596us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.362us - ProjectionTime: 203.373us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 16.946us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.481us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 291.00 KB - MemoryUsage: - Blocks: 291.00 KB - PeakMemoryUsage: 307.92 KB - OpenTime: 42.42us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=20):(Active: 1.510ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.238ms - CloseTime: 44.815us - GetBlockTime: 573.500us - OpenTime: 13.849us - PrepareTime: 206.939us - SinkTime: 625.800us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.457ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 343.372us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.960us - CompressTime: 0ns - ExecTime: 729.346us - InputRows: 754 - LocalBytesSent: 220.10 KB - LocalSendTime: 204.506us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 93.328us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 178.777us - SplitBlockHashComputeTime: 25.192us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 28.74us - ExecTime: 639.226us - InitProbeSideTime: 54.834us - JoinFilterTimer: 67ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 46.555us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 825ns - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 328.874us - ProbeWhenBuildSideOutputTime: 21.311us - ProbeWhenProbeSideOutputTime: 176.143us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.665us - ProjectionTime: 225.793us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.786us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 296.84 KB - OpenTime: 16.749us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms PipelineXTask (index=22):(Active: 1.855ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.606ms - CloseTime: 48.527us - GetBlockTime: 620.374us - OpenTime: 6.510us - PrepareTime: 187.605us - SinkTime: 943.222us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 382.470us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.398us - CompressTime: 0ns - ExecTime: 1.46ms - InputRows: 767 - LocalBytesSent: 223.75 KB - LocalSendTime: 336.378us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 303.41 KB - MergeBlockTime: 0ns - OpenTime: 87.993us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 263.768us - SplitBlockHashComputeTime: 36.271us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.570us - ExecTime: 664.243us - InitProbeSideTime: 36.903us - JoinFilterTimer: 131ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 31.287us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.401us - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 342.705us - ProbeWhenBuildSideOutputTime: 47.927us - ProbeWhenProbeSideOutputTime: 162.605us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.131us - ProjectionTime: 255.254us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.59us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.493us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.00 KB - MemoryUsage: - Blocks: 283.00 KB - PeakMemoryUsage: 295.30 KB - OpenTime: 19.336us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s860ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 115.549us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 39.393us - CloseTime: 5.850us - GetBlockTime: 2.161us - OpenTime: 1.929us - PrepareTime: 62.625us - SinkTime: 24.263us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.608us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 517.427us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 613ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 8.975us - BuildTableTime: 12.893us - CloseTime: 0ns - ExecTime: 41.741us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 17.719us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.365us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.105us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 18.668us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=3):(Active: 113.221us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.516us - CloseTime: 2.98us - GetBlockTime: 1.700us - OpenTime: 2.999us - PrepareTime: 59.74us - SinkTime: 23.664us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.886us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 607.207us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 465ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.624us - BuildTableTime: 15.788us - CloseTime: 0ns - ExecTime: 35.516us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 11.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.764us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.47us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 17.273us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=5):(Active: 100.913us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.708us - CloseTime: 3.525us - GetBlockTime: 1.532us - OpenTime: 2.6us - PrepareTime: 58.500us - SinkTime: 19.483us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.312us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 524.997us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 550ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 6.851us - BuildTableTime: 10.299us - CloseTime: 0ns - ExecTime: 39.866us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 20.405us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.985us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 13.677us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=7):(Active: 172.20us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 71.151us - CloseTime: 12.189us - GetBlockTime: 3.164us - OpenTime: 3.426us - PrepareTime: 76.730us - SinkTime: 39.627us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 148.440us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.831ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.414us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 10.674us - BuildTableTime: 18.577us - CloseTime: 0ns - ExecTime: 67.794us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 28.164us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.306us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.301us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 25.562us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=9):(Active: 132.94us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 49.357us - CloseTime: 2.296us - GetBlockTime: 1.835us - OpenTime: 2.613us - PrepareTime: 73.961us - SinkTime: 34.988us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 606.21us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 483ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 11.117us - BuildTableTime: 15.123us - CloseTime: 0ns - ExecTime: 58.940us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 24.208us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.905us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.190us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 24.830us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=11):(Active: 111.380us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 43.256us - CloseTime: 3.861us - GetBlockTime: 1.541us - OpenTime: 2.495us - PrepareTime: 56.143us - SinkTime: 21.344us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.874us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 796.400us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 432ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.210us - BuildTableTime: 12.573us - CloseTime: 0ns - ExecTime: 30.535us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 9.336us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.406us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.850us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 22.83us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s355ms PipelineXTask (index=13):(Active: 112.2us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.214us - CloseTime: 4.416us - GetBlockTime: 1.742us - OpenTime: 2.375us - PrepareTime: 60.837us - SinkTime: 25.37us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.745us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 760.900us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 705ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 11.960us - BuildTableTime: 16.17us - CloseTime: 0ns - ExecTime: 36.911us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 12.113us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.33us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.629us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 20.355us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s355ms PipelineXTask (index=15):(Active: 137.337us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 63.373us - CloseTime: 10.202us - GetBlockTime: 2.514us - OpenTime: 2.973us - PrepareTime: 55.222us - SinkTime: 32.906us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.771us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 61.871ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.286us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.27us - BuildTableTime: 15.242us - CloseTime: 0ns - ExecTime: 41.358us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.521us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.572us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 14.943us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=17):(Active: 149.375us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 65.911us - CloseTime: 10.856us - GetBlockTime: 2.690us - OpenTime: 2.551us - PrepareTime: 64.375us - SinkTime: 44.400us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.235us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.729ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.442us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 11.244us - BuildTableTime: 19.408us - CloseTime: 0ns - ExecTime: 55.334us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 11.367us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.276us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 23.909us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s355ms PipelineXTask (index=19):(Active: 162.784us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 54.860us - CloseTime: 12.528us - GetBlockTime: 2.866us - OpenTime: 2.973us - PrepareTime: 87.139us - SinkTime: 34.547us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.38us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.279ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.122us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 10.246us - BuildTableTime: 16.548us - CloseTime: 0ns - ExecTime: 62.300us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 27.854us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.699us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 21.405us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s355ms PipelineXTask (index=21):(Active: 112.569us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 40.470us - CloseTime: 2.463us - GetBlockTime: 1.488us - OpenTime: 3.514us - PrepareTime: 60.317us - SinkTime: 21.254us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.768us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 553.801us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 559ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.351us - BuildTableTime: 13.287us - CloseTime: 0ns - ExecTime: 33.66us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 11.760us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.622us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 17.108us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms PipelineXTask (index=23):(Active: 131.674us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.492us - CloseTime: 10.689us - GetBlockTime: 1.795us - OpenTime: 3.43us - PrepareTime: 56.892us - SinkTime: 32.453us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.796us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 292.230us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.257us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.559us - BuildTableTime: 18.346us - CloseTime: 0ns - ExecTime: 42.906us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 10.561us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.162us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.650us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.23 KB - OpenTime: 15.857us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s356ms Fragment 10: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.140ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 867.605us - CloseTime: 40.73us - GetBlockTime: 316.591us - OpenTime: 7.488us - PrepareTime: 218.648us - SinkTime: 511.375us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.90ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 579.316us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.678us - CompressTime: 0ns - ExecTime: 620.146us - InputRows: 770 - LocalBytesSent: 211.31 KB - LocalSendTime: 189.453us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 99.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 121.358us - SplitBlockHashComputeTime: 19.89us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.491us - ExecTime: 367.187us - InitProbeSideTime: 23.454us - JoinFilterTimer: 55ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 35.748us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 681ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 163.480us - ProbeWhenBuildSideOutputTime: 19.296us - ProbeWhenProbeSideOutputTime: 53.27us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.941us - ProjectionTime: 136.168us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.477us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 274.91 KB - OpenTime: 24.263us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=2):(Active: 1.183ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 938.241us - CloseTime: 37.109us - GetBlockTime: 422.84us - OpenTime: 9.203us - PrepareTime: 191.326us - SinkTime: 475.241us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.136ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 664.82us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.635us - CompressTime: 0ns - ExecTime: 575.385us - InputRows: 756 - LocalBytesSent: 207.25 KB - LocalSendTime: 150.408us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 91.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 148.471us - SplitBlockHashComputeTime: 18.866us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.469us - ExecTime: 472.604us - InitProbeSideTime: 34.942us - JoinFilterTimer: 203ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 38.29us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.139us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 231.622us - ProbeWhenBuildSideOutputTime: 24.104us - ProbeWhenProbeSideOutputTime: 77.144us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.792us - ProjectionTime: 173.782us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 276.32 KB - OpenTime: 27.591us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=4):(Active: 1.211ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 914.910us - CloseTime: 34.416us - GetBlockTime: 368.914us - OpenTime: 7.793us - PrepareTime: 246.836us - SinkTime: 517.982us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.168ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 508.392us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.519us - CompressTime: 0ns - ExecTime: 636.828us - InputRows: 770 - LocalBytesSent: 211.18 KB - LocalSendTime: 164.652us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 108.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 163.510us - SplitBlockHashComputeTime: 18.850us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 18.46us - ExecTime: 417.8us - InitProbeSideTime: 30.278us - JoinFilterTimer: 36ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 38.0us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 756ns - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 221.254us - ProbeWhenBuildSideOutputTime: 23.10us - ProbeWhenProbeSideOutputTime: 104.695us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.845us - ProjectionTime: 133.216us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.54us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 276.32 KB - OpenTime: 34.717us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=6):(Active: 1.145ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 892.827us - CloseTime: 38.972us - GetBlockTime: 377.192us - OpenTime: 12.207us - PrepareTime: 196.567us - SinkTime: 482.819us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.100ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.916us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.551us - CompressTime: 0ns - ExecTime: 582.154us - InputRows: 785 - LocalBytesSent: 215.43 KB - LocalSendTime: 150.462us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 293.41 KB - MergeBlockTime: 0ns - OpenTime: 90.392us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 146.181us - SplitBlockHashComputeTime: 19.376us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.115us - ExecTime: 426.804us - InitProbeSideTime: 31.331us - JoinFilterTimer: 69ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 34.40us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 507ns - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 230.926us - ProbeWhenBuildSideOutputTime: 21.652us - ProbeWhenProbeSideOutputTime: 99.837us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.721us - ProjectionTime: 133.194us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.573us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.121us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 273.00 KB - MemoryUsage: - Blocks: 273.00 KB - PeakMemoryUsage: 287.15 KB - OpenTime: 22.101us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=8):(Active: 1.408ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.164ms - CloseTime: 44.183us - GetBlockTime: 533.25us - OpenTime: 5.422us - PrepareTime: 188.348us - SinkTime: 581.223us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.353ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.354us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.49us - CompressTime: 0ns - ExecTime: 675.643us - InputRows: 738 - LocalBytesSent: 202.23 KB - LocalSendTime: 160.191us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 84.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 187.151us - SplitBlockHashComputeTime: 29.901us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 27.408us - ExecTime: 582.750us - InitProbeSideTime: 37.30us - JoinFilterTimer: 205ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 32.81us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.30us - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 289.888us - ProbeWhenBuildSideOutputTime: 20.859us - ProbeWhenProbeSideOutputTime: 113.795us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.736us - ProjectionTime: 220.826us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.726us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.9us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 270.66 KB - OpenTime: 22.677us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=10):(Active: 2.2ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.707ms - CloseTime: 62.904us - GetBlockTime: 718.362us - OpenTime: 19.585us - PrepareTime: 204.722us - SinkTime: 912.3us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.920ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 301.7us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.692us - CompressTime: 0ns - ExecTime: 1.40ms - InputRows: 784 - LocalBytesSent: 215.07 KB - LocalSendTime: 328.294us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 293.41 KB - MergeBlockTime: 0ns - OpenTime: 114.406us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 231.297us - SplitBlockHashComputeTime: 37.580us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 36.941us - ExecTime: 774.451us - InitProbeSideTime: 93.886us - JoinFilterTimer: 130ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 40.182us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.740us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 481.823us - ProbeWhenBuildSideOutputTime: 28.306us - ProbeWhenProbeSideOutputTime: 183.348us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 60.266us - ProjectionTime: 199.683us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.761us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 273.00 KB - MemoryUsage: - Blocks: 273.00 KB - PeakMemoryUsage: 278.66 KB - OpenTime: 13.778us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=12):(Active: 1.136ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 875.590us - CloseTime: 48.690us - GetBlockTime: 343.345us - OpenTime: 7.542us - PrepareTime: 198.197us - SinkTime: 491.767us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.77ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.624us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.20us - CompressTime: 0ns - ExecTime: 592.871us - InputRows: 765 - LocalBytesSent: 209.94 KB - LocalSendTime: 161.383us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 91.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 136.299us - SplitBlockHashComputeTime: 20.103us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 32.820us - ExecTime: 400.502us - InitProbeSideTime: 25.160us - JoinFilterTimer: 74ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 34.890us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 864ns - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 199.292us - ProbeWhenBuildSideOutputTime: 20.876us - ProbeWhenProbeSideOutputTime: 84.74us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.250us - ProjectionTime: 126.626us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.507us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 272.08 KB - OpenTime: 20.821us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=14):(Active: 1.438ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.132ms - CloseTime: 62.759us - GetBlockTime: 492.460us - OpenTime: 13.563us - PrepareTime: 222.814us - SinkTime: 602.688us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 455.584us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.131us - CompressTime: 0ns - ExecTime: 694.138us - InputRows: 758 - LocalBytesSent: 207.63 KB - LocalSendTime: 221.356us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 81.517us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 132.293us - SplitBlockHashComputeTime: 20.402us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 45.65us - ExecTime: 573.729us - InitProbeSideTime: 49.453us - JoinFilterTimer: 113ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 46.953us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 816ns - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 296.280us - ProbeWhenBuildSideOutputTime: 28.855us - ProbeWhenProbeSideOutputTime: 109.87us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.665us - ProjectionTime: 175.864us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.637us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.196us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 280.57 KB - OpenTime: 34.518us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=16):(Active: 1.158ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 880.269us - CloseTime: 80.38us - GetBlockTime: 380.63us - OpenTime: 6.954us - PrepareTime: 184.50us - SinkTime: 454.592us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.66ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 574.192us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.589us - CompressTime: 0ns - ExecTime: 547.791us - InputRows: 776 - LocalBytesSent: 212.96 KB - LocalSendTime: 145.501us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 293.41 KB - MergeBlockTime: 0ns - OpenTime: 85.613us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 129.302us - SplitBlockHashComputeTime: 19.429us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 65.322us - ExecTime: 471.337us - InitProbeSideTime: 33.403us - JoinFilterTimer: 45ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 36.840us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 809ns - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 218.143us - ProbeWhenBuildSideOutputTime: 21.287us - ProbeWhenProbeSideOutputTime: 83.203us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.89us - ProjectionTime: 141.758us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.398us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.534us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 273.00 KB - MemoryUsage: - Blocks: 273.00 KB - PeakMemoryUsage: 280.08 KB - OpenTime: 16.771us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s858ms PipelineXTask (index=18):(Active: 1.862ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.596ms - CloseTime: 61.518us - GetBlockTime: 538.911us - OpenTime: 9.340us - PrepareTime: 190.243us - SinkTime: 1.13ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.791ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 418.366us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.868us - CompressTime: 0ns - ExecTime: 1.120ms - InputRows: 777 - LocalBytesSent: 213.16 KB - LocalSendTime: 360.3us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 293.41 KB - MergeBlockTime: 0ns - OpenTime: 93.792us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 259.276us - SplitBlockHashComputeTime: 38.447us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.91us - ExecTime: 606.312us - InitProbeSideTime: 41.820us - JoinFilterTimer: 139ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 42.875us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 895ns - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 298.394us - ProbeWhenBuildSideOutputTime: 40.849us - ProbeWhenProbeSideOutputTime: 98.351us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.261us - ProjectionTime: 217.25us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.6us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 273.00 KB - MemoryUsage: - Blocks: 273.00 KB - PeakMemoryUsage: 284.32 KB - OpenTime: 17.680us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=20):(Active: 1.622ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.371ms - CloseTime: 41.969us - GetBlockTime: 507.583us - OpenTime: 11.434us - PrepareTime: 191.602us - SinkTime: 813.22us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.762us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.450us - CompressTime: 0ns - ExecTime: 919.957us - InputRows: 754 - LocalBytesSent: 206.85 KB - LocalSendTime: 303.374us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 96.512us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 201.94us - SplitBlockHashComputeTime: 31.454us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.646us - ExecTime: 553.570us - InitProbeSideTime: 50.460us - JoinFilterTimer: 295ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 34.812us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 933ns - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 309.370us - ProbeWhenBuildSideOutputTime: 30.651us - ProbeWhenProbeSideOutputTime: 103.745us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.842us - ProjectionTime: 177.336us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.484us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.669us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 269.25 KB - OpenTime: 17.793us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms PipelineXTask (index=22):(Active: 1.123ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 864.794us - CloseTime: 39.818us - GetBlockTime: 321.503us - OpenTime: 5.102us - PrepareTime: 207.355us - SinkTime: 504.853us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.72ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 532.582us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.264us - CompressTime: 0ns - ExecTime: 609.439us - InputRows: 767 - LocalBytesSent: 210.26 KB - LocalSendTime: 161.623us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 285.41 KB - MergeBlockTime: 0ns - OpenTime: 95.59us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 148.358us - SplitBlockHashComputeTime: 18.597us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.245us - ExecTime: 374.440us - InitProbeSideTime: 26.872us - JoinFilterTimer: 193ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 37.590us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 738ns - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 168.252us - ProbeWhenBuildSideOutputTime: 19.653us - ProbeWhenProbeSideOutputTime: 55.795us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.796us - ProjectionTime: 137.230us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.650us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.201us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 265.00 KB - MemoryUsage: - Blocks: 265.00 KB - PeakMemoryUsage: 272.08 KB - OpenTime: 17.569us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s859ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 225.192us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 141.509us - CloseTime: 9.507us - GetBlockTime: 38.322us - OpenTime: 3.18us - PrepareTime: 64.589us - SinkTime: 71.437us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 205.822us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.886ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.111us - BuildRows: 209 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 39.13us - BuildTableInsertTime: 10.247us - BuildTableTime: 15.960us - CloseTime: 0ns - ExecTime: 79.642us - InputRows: 208 - MemoryUsage: - BuildBlocks: 8.10 KB - BuildKeyArena: 12.00 KB - HashTable: 1.82 KB - PeakMemoryUsage: 17.91 KB - OpenTime: 9.227us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.253us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.88 KB - MemoryUsage: - Blocks: 11.31 KB - PeakMemoryUsage: 11.31 KB - OpenTime: 27.770us - ProjectionTime: 0ns - RowsProduced: 208 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s614ms PipelineXTask (index=3):(Active: 293.732us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 197.240us - CloseTime: 7.961us - GetBlockTime: 60.831us - OpenTime: 3.242us - PrepareTime: 79.332us - SinkTime: 88.761us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.710us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.356ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.557us - BuildRows: 185 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 41.722us - BuildTableInsertTime: 15.131us - BuildTableTime: 20.733us - CloseTime: 0ns - ExecTime: 109.758us - InputRows: 184 - MemoryUsage: - BuildBlocks: 7.18 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 16.90 KB - OpenTime: 23.329us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.960us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.462us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.88 KB - MemoryUsage: - Blocks: 4.38 KB - PeakMemoryUsage: 4.38 KB - OpenTime: 22.15us - ProjectionTime: 0ns - RowsProduced: 184 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=5):(Active: 255.782us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 177.980us - CloseTime: 3.727us - GetBlockTime: 51.448us - OpenTime: 2.190us - PrepareTime: 66.611us - SinkTime: 87.56us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.72us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.133ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.529us - BuildRows: 186 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 51.466us - BuildTableInsertTime: 10.396us - BuildTableTime: 13.308us - CloseTime: 0ns - ExecTime: 100.709us - InputRows: 185 - MemoryUsage: - BuildBlocks: 7.20 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 16.93 KB - OpenTime: 14.905us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.212us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 67.264us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.81 KB - MemoryUsage: - Blocks: 9.44 KB - PeakMemoryUsage: 9.44 KB - OpenTime: 17.268us - ProjectionTime: 0ns - RowsProduced: 185 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s615ms PipelineXTask (index=7):(Active: 201.97us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 125.703us - CloseTime: 3.440us - GetBlockTime: 34.905us - OpenTime: 2.571us - PrepareTime: 63.988us - SinkTime: 57.524us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 187.299us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.495ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.608us - BuildRows: 202 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.246us - BuildTableInsertTime: 9.672us - BuildTableTime: 12.970us - CloseTime: 0ns - ExecTime: 65.162us - InputRows: 201 - MemoryUsage: - BuildBlocks: 7.83 KB - BuildKeyArena: 12.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 17.61 KB - OpenTime: 8.921us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.16us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.341us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.75 KB - MemoryUsage: - Blocks: 5.00 KB - PeakMemoryUsage: 5.00 KB - OpenTime: 21.735us - ProjectionTime: 0ns - RowsProduced: 201 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=9):(Active: 225.241us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 139.616us - CloseTime: 6.341us - GetBlockTime: 30.660us - OpenTime: 2.806us - PrepareTime: 70.440us - SinkTime: 74.58us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 208.242us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.596ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.204us - BuildRows: 191 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 42.418us - BuildTableInsertTime: 11.350us - BuildTableTime: 14.488us - CloseTime: 0ns - ExecTime: 97.449us - InputRows: 190 - MemoryUsage: - BuildBlocks: 7.40 KB - BuildKeyArena: 12.00 KB - HashTable: 1.75 KB - PeakMemoryUsage: 17.15 KB - OpenTime: 24.499us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.10us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.438us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.25 KB - MemoryUsage: - Blocks: 4.25 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 19.741us - ProjectionTime: 0ns - RowsProduced: 190 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=11):(Active: 191.943us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 122.404us - CloseTime: 2.58us - GetBlockTime: 31.635us - OpenTime: 2.740us - PrepareTime: 59.124us - SinkTime: 58.612us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.180us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.667ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.325us - BuildRows: 199 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 29.102us - BuildTableInsertTime: 9.407us - BuildTableTime: 12.609us - CloseTime: 0ns - ExecTime: 70.44us - InputRows: 198 - MemoryUsage: - BuildBlocks: 7.72 KB - BuildKeyArena: 12.00 KB - HashTable: 1.78 KB - PeakMemoryUsage: 17.50 KB - OpenTime: 13.146us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.665us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.874us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.63 KB - MemoryUsage: - Blocks: 4.00 KB - PeakMemoryUsage: 4.00 KB - OpenTime: 19.713us - ProjectionTime: 0ns - RowsProduced: 198 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=13):(Active: 294.872us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 212.539us - CloseTime: 6.159us - GetBlockTime: 59.114us - OpenTime: 2.886us - PrepareTime: 67.482us - SinkTime: 117.140us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 278.952us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.272ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.522us - BuildRows: 188 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 55.445us - BuildTableInsertTime: 28.270us - BuildTableTime: 33.964us - CloseTime: 0ns - ExecTime: 127.7us - InputRows: 187 - MemoryUsage: - BuildBlocks: 7.29 KB - BuildKeyArena: 12.00 KB - HashTable: 1.74 KB - PeakMemoryUsage: 17.02 KB - OpenTime: 10.877us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.377us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.678us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.63 KB - MemoryUsage: - Blocks: 12.44 KB - PeakMemoryUsage: 12.44 KB - OpenTime: 25.541us - ProjectionTime: 0ns - RowsProduced: 187 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s619ms PipelineXTask (index=15):(Active: 196.45us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 123.373us - CloseTime: 2.399us - GetBlockTime: 30.902us - OpenTime: 2.890us - PrepareTime: 61.569us - SinkTime: 57.575us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 182.628us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.132ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.596us - BuildRows: 206 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.574us - BuildTableInsertTime: 13.135us - BuildTableTime: 15.933us - CloseTime: 0ns - ExecTime: 67.696us - InputRows: 205 - MemoryUsage: - BuildBlocks: 7.96 KB - BuildKeyArena: 12.00 KB - HashTable: 1.81 KB - PeakMemoryUsage: 17.76 KB - OpenTime: 11.279us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.953us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.883us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.13 KB - MemoryUsage: - Blocks: 4.75 KB - PeakMemoryUsage: 4.75 KB - OpenTime: 23.357us - ProjectionTime: 0ns - RowsProduced: 205 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=17):(Active: 269.745us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 192.913us - CloseTime: 9.889us - GetBlockTime: 55.413us - OpenTime: 2.622us - PrepareTime: 60.31us - SinkTime: 96.888us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 251.995us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.268ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.745us - BuildRows: 182 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 48.433us - BuildTableInsertTime: 11.265us - BuildTableTime: 18.411us - CloseTime: 0ns - ExecTime: 102.772us - InputRows: 181 - MemoryUsage: - BuildBlocks: 7.06 KB - BuildKeyArena: 12.00 KB - HashTable: 1.71 KB - PeakMemoryUsage: 16.77 KB - OpenTime: 8.103us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.278us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.39us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.75 KB - MemoryUsage: - Blocks: 7.00 KB - PeakMemoryUsage: 7.00 KB - OpenTime: 22.387us - ProjectionTime: 0ns - RowsProduced: 181 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s624ms PipelineXTask (index=19):(Active: 208.207us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 131.729us - CloseTime: 3.177us - GetBlockTime: 29.703us - OpenTime: 3.603us - PrepareTime: 63.153us - SinkTime: 61.306us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.290us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.788ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.178us - BuildRows: 200 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 29.342us - BuildTableInsertTime: 11.921us - BuildTableTime: 15.444us - CloseTime: 0ns - ExecTime: 85.688us - InputRows: 199 - MemoryUsage: - BuildBlocks: 7.74 KB - BuildKeyArena: 12.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 17.52 KB - OpenTime: 26.305us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.772us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.25 KB - MemoryUsage: - Blocks: 5.00 KB - PeakMemoryUsage: 5.00 KB - OpenTime: 14.848us - ProjectionTime: 0ns - RowsProduced: 199 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms PipelineXTask (index=21):(Active: 250.966us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 158.937us - CloseTime: 8.815us - GetBlockTime: 46.286us - OpenTime: 3.902us - PrepareTime: 63.497us - SinkTime: 84.408us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 224.34us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.647ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.303us - BuildRows: 176 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 39.775us - BuildTableInsertTime: 15.582us - BuildTableTime: 21.47us - CloseTime: 0ns - ExecTime: 91.314us - InputRows: 175 - MemoryUsage: - BuildBlocks: 6.82 KB - BuildKeyArena: 4.00 KB - HashTable: 1.69 KB - PeakMemoryUsage: 8.50 KB - OpenTime: 8.41us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.666us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.00 KB - MemoryUsage: - Blocks: 13.00 KB - PeakMemoryUsage: 13.00 KB - OpenTime: 21.999us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s613ms PipelineXTask (index=23):(Active: 190.629us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 117.526us - CloseTime: 3.253us - GetBlockTime: 24.464us - OpenTime: 2.875us - PrepareTime: 60.214us - SinkTime: 58.839us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 175.782us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.918ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.787us - BuildRows: 203 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.532us - BuildTableInsertTime: 11.959us - BuildTableTime: 14.383us - CloseTime: 0ns - ExecTime: 68.902us - InputRows: 202 - MemoryUsage: - BuildBlocks: 7.84 KB - BuildKeyArena: 12.00 KB - HashTable: 1.80 KB - PeakMemoryUsage: 17.63 KB - OpenTime: 10.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.443us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.25 KB - MemoryUsage: - Blocks: 4.38 KB - PeakMemoryUsage: 4.38 KB - OpenTime: 13.492us - ProjectionTime: 0ns - RowsProduced: 202 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s623ms Fragment 11: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.988ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.707ms - CloseTime: 25.295us - GetBlockTime: 1.821ms - OpenTime: 10.628us - PrepareTime: 235.318us - SinkTime: 1.772ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.124ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.731us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.239us - CompressTime: 0ns - ExecTime: 1.877ms - InputRows: 770 - LocalBytesSent: 197.77 KB - LocalSendTime: 1.61ms - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 101.550us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 400.489us - SplitBlockHashComputeTime: 59.277us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.362us - ExecTime: 1.743ms - InitProbeSideTime: 72.356us - JoinFilterTimer: 1.83us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 41.89us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.992us - ProbeFindNextTime: 0ns - ProbeRows: 349 - ProbeTime: 1.115ms - ProbeWhenBuildSideOutputTime: 366.944us - ProbeWhenProbeSideOutputTime: 33.781us - ProbeWhenProcessHashTableTime: 90.728us - ProbeWhenSearchHashTableTime: 64.734us - ProjectionTime: 501.392us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.884us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 115.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.63 KB - MemoryUsage: - Blocks: 6.63 KB - PeakMemoryUsage: 6.63 KB - OpenTime: 27.429us - ProjectionTime: 0ns - RowsProduced: 349 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s855ms PipelineXTask (index=2):(Active: 2.604ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.360ms - CloseTime: 33.429us - GetBlockTime: 1.340ms - OpenTime: 7.411us - PrepareTime: 196.60us - SinkTime: 934.33us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.555ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 641.89us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.23us - CompressTime: 0ns - ExecTime: 1.27ms - InputRows: 756 - LocalBytesSent: 193.96 KB - LocalSendTime: 271.380us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 85.218us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 344.299us - SplitBlockHashComputeTime: 49.664us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.623us - ExecTime: 1.312ms - InitProbeSideTime: 51.469us - JoinFilterTimer: 802ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 33.366us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.844us - ProbeFindNextTime: 0ns - ProbeRows: 371 - ProbeTime: 903.443us - ProbeWhenBuildSideOutputTime: 276.753us - ProbeWhenProbeSideOutputTime: 26.716us - ProbeWhenProcessHashTableTime: 177.60us - ProbeWhenSearchHashTableTime: 44.501us - ProjectionTime: 319.177us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.861us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.38 KB - MemoryUsage: - Blocks: 8.63 KB - PeakMemoryUsage: 8.63 KB - OpenTime: 31.123us - ProjectionTime: 0ns - RowsProduced: 371 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=4):(Active: 2.943ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.695ms - CloseTime: 43.989us - GetBlockTime: 1.451ms - OpenTime: 7.170us - PrepareTime: 190.619us - SinkTime: 1.151ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.883ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 757.243us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.52us - CompressTime: 0ns - ExecTime: 1.247ms - InputRows: 770 - LocalBytesSent: 197.64 KB - LocalSendTime: 325.884us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 85.950us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 451.729us - SplitBlockHashComputeTime: 65.400us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 17.674us - ExecTime: 1.421ms - InitProbeSideTime: 46.418us - JoinFilterTimer: 936ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 35.24us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.285us - ProbeFindNextTime: 0ns - ProbeRows: 348 - ProbeTime: 952.522us - ProbeWhenBuildSideOutputTime: 299.990us - ProbeWhenProbeSideOutputTime: 28.139us - ProbeWhenProcessHashTableTime: 179.56us - ProbeWhenSearchHashTableTime: 51.542us - ProjectionTime: 363.192us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.556us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.38 KB - MemoryUsage: - Blocks: 8.63 KB - PeakMemoryUsage: 8.63 KB - OpenTime: 16.16us - ProjectionTime: 0ns - RowsProduced: 348 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=6):(Active: 1.921ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.664ms - CloseTime: 31.614us - GetBlockTime: 983.531us - OpenTime: 8.890us - PrepareTime: 210.815us - SinkTime: 610.334us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.879ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.906ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.603us - CompressTime: 0ns - ExecTime: 718.59us - InputRows: 785 - LocalBytesSent: 201.63 KB - LocalSendTime: 144.266us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 275.41 KB - MergeBlockTime: 0ns - OpenTime: 101.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 247.659us - SplitBlockHashComputeTime: 34.670us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 16.868us - ExecTime: 965.787us - InitProbeSideTime: 60.911us - JoinFilterTimer: 468ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.167us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.129us - ProbeFindNextTime: 0ns - ProbeRows: 360 - ProbeTime: 641.99us - ProbeWhenBuildSideOutputTime: 224.135us - ProbeWhenProbeSideOutputTime: 19.778us - ProbeWhenProcessHashTableTime: 66.874us - ProbeWhenSearchHashTableTime: 44.65us - ProjectionTime: 230.481us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.707us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.50 KB - MemoryUsage: - Blocks: 11.38 KB - PeakMemoryUsage: 11.38 KB - OpenTime: 30.225us - ProjectionTime: 0ns - RowsProduced: 360 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=8):(Active: 2.8ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.755ms - CloseTime: 46.365us - GetBlockTime: 1.10ms - OpenTime: 8.348us - PrepareTime: 191.228us - SinkTime: 682.100us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.951ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 960.17us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.550us - CompressTime: 0ns - ExecTime: 787.605us - InputRows: 738 - LocalBytesSent: 189.25 KB - LocalSendTime: 162.416us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 82.17us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 282.962us - SplitBlockHashComputeTime: 35.823us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.883us - ExecTime: 982.636us - InitProbeSideTime: 33.441us - JoinFilterTimer: 524ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 34.556us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.590us - ProbeFindNextTime: 0ns - ProbeRows: 343 - ProbeTime: 641.751us - ProbeWhenBuildSideOutputTime: 214.810us - ProbeWhenProbeSideOutputTime: 15.535us - ProbeWhenProcessHashTableTime: 99.915us - ProbeWhenSearchHashTableTime: 47.373us - ProjectionTime: 250.679us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.821us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 77.316us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.38 KB - MemoryUsage: - Blocks: 10.13 KB - PeakMemoryUsage: 11.38 KB - OpenTime: 21.372us - ProjectionTime: 0ns - RowsProduced: 343 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=10):(Active: 2.175ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.909ms - CloseTime: 54.717us - GetBlockTime: 1.108ms - OpenTime: 13.315us - PrepareTime: 191.442us - SinkTime: 727.718us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.107ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.147ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.363us - CompressTime: 0ns - ExecTime: 820.186us - InputRows: 784 - LocalBytesSent: 201.29 KB - LocalSendTime: 203.573us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 275.41 KB - MergeBlockTime: 0ns - OpenTime: 86.434us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 276.888us - SplitBlockHashComputeTime: 42.273us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.489us - ExecTime: 1.89ms - InitProbeSideTime: 33.497us - JoinFilterTimer: 535ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 38.743us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.855us - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 697.721us - ProbeWhenBuildSideOutputTime: 229.766us - ProbeWhenProbeSideOutputTime: 17.203us - ProbeWhenProcessHashTableTime: 99.742us - ProbeWhenSearchHashTableTime: 36.442us - ProjectionTime: 299.913us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 32.936us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 96.687us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.75 KB - MemoryUsage: - Blocks: 12.38 KB - PeakMemoryUsage: 12.38 KB - OpenTime: 18.133us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s855ms PipelineXTask (index=12):(Active: 2.181ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.909ms - CloseTime: 26.925us - GetBlockTime: 1.139ms - OpenTime: 10.570us - PrepareTime: 228.163us - SinkTime: 679.156us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 563.170us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.765us - CompressTime: 0ns - ExecTime: 772.592us - InputRows: 765 - LocalBytesSent: 196.49 KB - LocalSendTime: 159.480us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 87.276us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 289.813us - SplitBlockHashComputeTime: 38.718us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.115us - ExecTime: 1.117ms - InitProbeSideTime: 35.212us - JoinFilterTimer: 592ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 38.911us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.568us - ProbeFindNextTime: 0ns - ProbeRows: 342 - ProbeTime: 748.760us - ProbeWhenBuildSideOutputTime: 238.697us - ProbeWhenProbeSideOutputTime: 19.463us - ProbeWhenProcessHashTableTime: 125.955us - ProbeWhenSearchHashTableTime: 39.92us - ProjectionTime: 274.286us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.200us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.25 KB - MemoryUsage: - Blocks: 6.13 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 28.496us - ProjectionTime: 0ns - RowsProduced: 342 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=14):(Active: 3.358ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.85ms - CloseTime: 47.878us - GetBlockTime: 1.771ms - OpenTime: 7.689us - PrepareTime: 209.117us - SinkTime: 1.196ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.292ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.132ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.334us - CompressTime: 0ns - ExecTime: 1.305ms - InputRows: 758 - LocalBytesSent: 194.30 KB - LocalSendTime: 406.201us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 101.863us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 385.391us - SplitBlockHashComputeTime: 67.169us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 26.39us - ExecTime: 1.736ms - InitProbeSideTime: 46.411us - JoinFilterTimer: 1.161us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 41.176us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.667us - ProbeFindNextTime: 0ns - ProbeRows: 366 - ProbeTime: 1.172ms - ProbeWhenBuildSideOutputTime: 380.175us - ProbeWhenProbeSideOutputTime: 33.451us - ProbeWhenProcessHashTableTime: 158.959us - ProbeWhenSearchHashTableTime: 62.646us - ProjectionTime: 420.904us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.778us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.443us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.00 KB - MemoryUsage: - Blocks: 7.63 KB - PeakMemoryUsage: 7.63 KB - OpenTime: 15.175us - ProjectionTime: 0ns - RowsProduced: 366 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=16):(Active: 2.437ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.187ms - CloseTime: 39.732us - GetBlockTime: 1.330ms - OpenTime: 7.522us - PrepareTime: 195.712us - SinkTime: 759.740us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 677.39us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.461us - CompressTime: 0ns - ExecTime: 866.61us - InputRows: 776 - LocalBytesSent: 199.32 KB - LocalSendTime: 205.223us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 275.41 KB - MergeBlockTime: 0ns - OpenTime: 100.401us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 292.962us - SplitBlockHashComputeTime: 48.615us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.731us - ExecTime: 1.290ms - InitProbeSideTime: 39.664us - JoinFilterTimer: 954ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 33.600us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.448us - ProbeFindNextTime: 0ns - ProbeRows: 356 - ProbeTime: 863.581us - ProbeWhenBuildSideOutputTime: 303.87us - ProbeWhenProbeSideOutputTime: 23.617us - ProbeWhenProcessHashTableTime: 102.854us - ProbeWhenSearchHashTableTime: 43.688us - ProjectionTime: 326.961us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 18.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.210us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.00 KB - MemoryUsage: - Blocks: 7.13 KB - PeakMemoryUsage: 7.13 KB - OpenTime: 18.461us - ProjectionTime: 0ns - RowsProduced: 356 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=18):(Active: 2.340ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.78ms - CloseTime: 22.792us - GetBlockTime: 1.314ms - OpenTime: 9.991us - PrepareTime: 222.209us - SinkTime: 655.350us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.300ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.409ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.900us - CompressTime: 0ns - ExecTime: 758.809us - InputRows: 777 - LocalBytesSent: 199.50 KB - LocalSendTime: 150.40us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 275.41 KB - MergeBlockTime: 0ns - OpenTime: 98.191us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 267.868us - SplitBlockHashComputeTime: 46.707us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.23us - ExecTime: 1.296ms - InitProbeSideTime: 38.828us - JoinFilterTimer: 942ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 52.192us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.856us - ProbeFindNextTime: 0ns - ProbeRows: 358 - ProbeTime: 862.312us - ProbeWhenBuildSideOutputTime: 305.695us - ProbeWhenProbeSideOutputTime: 27.561us - ProbeWhenProcessHashTableTime: 71.468us - ProbeWhenSearchHashTableTime: 48.873us - ProjectionTime: 313.202us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.999us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.75 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 21.282us - ProjectionTime: 0ns - RowsProduced: 358 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=20):(Active: 2.78ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.822ms - CloseTime: 45.781us - GetBlockTime: 1.77ms - OpenTime: 8.223us - PrepareTime: 194.766us - SinkTime: 674.481us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 635.506us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.494us - CompressTime: 0ns - ExecTime: 758.228us - InputRows: 754 - LocalBytesSent: 193.59 KB - LocalSendTime: 166.325us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 78.251us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 263.77us - SplitBlockHashComputeTime: 36.380us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.139us - ExecTime: 1.59ms - InitProbeSideTime: 32.115us - JoinFilterTimer: 691ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 37.382us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.8us - ProbeFindNextTime: 0ns - ProbeRows: 354 - ProbeTime: 715.395us - ProbeWhenBuildSideOutputTime: 246.475us - ProbeWhenProbeSideOutputTime: 18.249us - ProbeWhenProcessHashTableTime: 109.469us - ProbeWhenSearchHashTableTime: 48.583us - ProjectionTime: 254.417us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 22.37us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.13 KB - MemoryUsage: - Blocks: 7.75 KB - PeakMemoryUsage: 7.75 KB - OpenTime: 21.319us - ProjectionTime: 0ns - RowsProduced: 354 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms PipelineXTask (index=22):(Active: 2.395ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.158ms - CloseTime: 30.261us - GetBlockTime: 1.305ms - OpenTime: 14.387us - PrepareTime: 184.782us - SinkTime: 747.452us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.350ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 580.92us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.15us - CompressTime: 0ns - ExecTime: 830.409us - InputRows: 767 - LocalBytesSent: 196.78 KB - LocalSendTime: 169.71us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 267.41 KB - MergeBlockTime: 0ns - OpenTime: 76.512us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 311.107us - SplitBlockHashComputeTime: 45.647us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.140us - ExecTime: 1.277ms - InitProbeSideTime: 40.747us - JoinFilterTimer: 824ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 37.770us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.961us - ProbeFindNextTime: 0ns - ProbeRows: 357 - ProbeTime: 877.454us - ProbeWhenBuildSideOutputTime: 305.602us - ProbeWhenProbeSideOutputTime: 19.35us - ProbeWhenProcessHashTableTime: 130.500us - ProbeWhenSearchHashTableTime: 58.363us - ProjectionTime: 300.421us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=361): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.908us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.993us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.25 KB - MemoryUsage: - Blocks: 8.63 KB - PeakMemoryUsage: 8.63 KB - OpenTime: 20.367us - ProjectionTime: 0ns - RowsProduced: 357 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s856ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 508.630us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 391.273us - CloseTime: 5.349us - GetBlockTime: 30.900us - OpenTime: 2.454us - PrepareTime: 104.555us - SinkTime: 325.624us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 493.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.561ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.455us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 121.191us - BuildTableInsertTime: 50.558us - BuildTableTime: 53.218us - CloseTime: 0ns - ExecTime: 371.547us - InputRows: 770 - MemoryUsage: - BuildBlocks: 191.00 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 218.76 KB - OpenTime: 46.572us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.883us - RuntimeFilterComputeTime: 35.394us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 63.114us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 266.83 KB - OpenTime: 29.124us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s780ms PipelineXTask (index=3):(Active: 440.602us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 328.180us - CloseTime: 30.400us - GetBlockTime: 42.441us - OpenTime: 2.657us - PrepareTime: 73.814us - SinkTime: 249.54us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 399.306us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 502.662us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 801ns - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.572us - BuildTableInsertTime: 71.151us - BuildTableTime: 75.477us - CloseTime: 0ns - ExecTime: 275.973us - InputRows: 756 - MemoryUsage: - BuildBlocks: 187.32 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 215.01 KB - OpenTime: 27.700us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.788us - RuntimeFilterComputeTime: 28.516us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 28.383us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.348us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 268.18 KB - OpenTime: 18.758us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=5):(Active: 498.592us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 390.404us - CloseTime: 8.515us - GetBlockTime: 31.561us - OpenTime: 3.86us - PrepareTime: 90.139us - SinkTime: 327.654us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 478.821us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.164ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.344us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 138.27us - BuildTableInsertTime: 51.688us - BuildTableTime: 55.531us - CloseTime: 0ns - ExecTime: 354.937us - InputRows: 770 - MemoryUsage: - BuildBlocks: 190.88 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 218.64 KB - OpenTime: 27.882us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.767us - RuntimeFilterComputeTime: 21.299us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.630us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 59.181us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 265.47 KB - OpenTime: 22.573us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s781ms PipelineXTask (index=7):(Active: 587.780us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 488.585us - CloseTime: 8.616us - GetBlockTime: 59.206us - OpenTime: 3.111us - PrepareTime: 81.595us - SinkTime: 389.789us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 564.875us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.987ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 899ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 163.394us - BuildTableInsertTime: 63.882us - BuildTableTime: 68.220us - CloseTime: 0ns - ExecTime: 409.852us - InputRows: 785 - MemoryUsage: - BuildBlocks: 194.73 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 222.56 KB - OpenTime: 21.915us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.926us - RuntimeFilterComputeTime: 27.429us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.704us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.515us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 276.18 KB - OpenTime: 25.918us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s780ms PipelineXTask (index=9):(Active: 393.140us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 307.485us - CloseTime: 11.73us - GetBlockTime: 31.197us - OpenTime: 2.870us - PrepareTime: 65.968us - SinkTime: 241.40us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 372.248us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 909.315us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.66us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 85.666us - BuildTableInsertTime: 51.37us - BuildTableTime: 54.203us - CloseTime: 0ns - ExecTime: 259.712us - InputRows: 738 - MemoryUsage: - BuildBlocks: 182.77 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 210.37 KB - OpenTime: 19.218us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.753us - RuntimeFilterComputeTime: 40.11us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.526us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.892us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 268.18 KB - OpenTime: 19.170us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=11):(Active: 608.584us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 522.223us - CloseTime: 5.501us - GetBlockTime: 102.75us - OpenTime: 3.381us - PrepareTime: 71.251us - SinkTime: 382.27us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 590.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 775.994us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.558us - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.559us - BuildTableInsertTime: 55.118us - BuildTableTime: 58.673us - CloseTime: 0ns - ExecTime: 398.672us - InputRows: 784 - MemoryUsage: - BuildBlocks: 194.40 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 222.23 KB - OpenTime: 17.245us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 165.469us - RuntimeFilterComputeTime: 34.497us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 125.637us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 265.35 KB - OpenTime: 20.769us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=13):(Active: 420.625us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 340.222us - CloseTime: 4.920us - GetBlockTime: 40.435us - OpenTime: 2.568us - PrepareTime: 67.676us - SinkTime: 260.891us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.170us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.502ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.444us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 114.631us - BuildTableInsertTime: 47.173us - BuildTableTime: 49.911us - CloseTime: 0ns - ExecTime: 286.390us - InputRows: 765 - MemoryUsage: - BuildBlocks: 189.77 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 217.51 KB - OpenTime: 26.29us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.508us - RuntimeFilterComputeTime: 21.521us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.874us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.515us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 261.41 KB - OpenTime: 16.940us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=15):(Active: 408.687us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 315.741us - CloseTime: 5.273us - GetBlockTime: 24.831us - OpenTime: 2.687us - PrepareTime: 80.562us - SinkTime: 254.550us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 395.690us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 574.566us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.192us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 112.770us - BuildTableInsertTime: 45.97us - BuildTableTime: 47.827us - CloseTime: 0ns - ExecTime: 289.583us - InputRows: 758 - MemoryUsage: - BuildBlocks: 187.64 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 215.34 KB - OpenTime: 35.463us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.864us - RuntimeFilterComputeTime: 20.174us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.397us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 270.89 KB - OpenTime: 16.311us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=17):(Active: 550.399us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 462.439us - CloseTime: 13.263us - GetBlockTime: 45.790us - OpenTime: 8.526us - PrepareTime: 61.799us - SinkTime: 375.308us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 525.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 566.753us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 987ns - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 185.645us - BuildTableInsertTime: 61.12us - BuildTableTime: 64.71us - CloseTime: 0ns - ExecTime: 398.266us - InputRows: 776 - MemoryUsage: - BuildBlocks: 192.50 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 220.29 KB - OpenTime: 23.942us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.0us - RuntimeFilterComputeTime: 37.6us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.751us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.782us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 274.83 KB - OpenTime: 17.465us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=19):(Active: 399.245us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 320.734us - CloseTime: 5.357us - GetBlockTime: 22.24us - OpenTime: 2.402us - PrepareTime: 65.50us - SinkTime: 275.607us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 385.625us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.312us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 817ns - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.122us - BuildTableInsertTime: 54.804us - BuildTableTime: 56.841us - CloseTime: 0ns - ExecTime: 298.82us - InputRows: 777 - MemoryUsage: - BuildBlocks: 192.67 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 220.47 KB - OpenTime: 22.811us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.522us - RuntimeFilterComputeTime: 18.334us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.73us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.740us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 278.89 KB - OpenTime: 13.562us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s783ms PipelineXTask (index=21):(Active: 419.896us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 330.42us - CloseTime: 9.57us - GetBlockTime: 33.527us - OpenTime: 2.478us - PrepareTime: 72.957us - SinkTime: 265.338us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 401.349us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 626.977us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.152us - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 104.563us - BuildTableInsertTime: 56.387us - BuildTableTime: 59.624us - CloseTime: 0ns - ExecTime: 286.672us - InputRows: 754 - MemoryUsage: - BuildBlocks: 186.97 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 214.65 KB - OpenTime: 24.466us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.361us - RuntimeFilterComputeTime: 26.447us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.410us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.347us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 262.77 KB - OpenTime: 18.189us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms PipelineXTask (index=23):(Active: 521.993us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 441.989us - CloseTime: 6.967us - GetBlockTime: 108.990us - OpenTime: 2.637us - PrepareTime: 64.463us - SinkTime: 299.273us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 484.3us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 663.351us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.582us - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 119.975us - BuildTableInsertTime: 52.16us - BuildTableTime: 55.841us - CloseTime: 0ns - ExecTime: 317.94us - InputRows: 767 - MemoryUsage: - BuildBlocks: 190.04 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 217.79 KB - OpenTime: 18.839us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.787us - RuntimeFilterComputeTime: 39.564us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.458us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 131.1us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 256.00 KB - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 268.18 KB - OpenTime: 18.359us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s782ms Fragment 12: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 445.3us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 265.791us - CloseTime: 9.900us - GetBlockTime: 91.367us - OpenTime: 2.821us - PrepareTime: 159.731us - SinkTime: 154.167us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 427.531us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 380.254us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.838us - CompressTime: 0ns - ExecTime: 280.368us - InputRows: 326 - LocalBytesSent: 10.44 KB - LocalSendTime: 49.144us - LocalSentRows: 326 - MemoryUsage: - PeakMemoryUsage: 18.50 KB - MergeBlockTime: 0ns - OpenTime: 117.569us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 326 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 26.771us - SplitBlockHashComputeTime: 10.911us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 380ns - DeserializeAndMergeTime: 0ns - ExecTime: 100.711us - GetResultsTime: 50.597us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.31us - HashTableSize: 326 - InsertKeysToColumnTime: 27.701us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.243us - ProjectionTime: 35.823us - RowsProduced: 326 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=2):(Active: 491.243us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 339.965us - CloseTime: 13.429us - GetBlockTime: 81.385us - OpenTime: 1.969us - PrepareTime: 131.83us - SinkTime: 240.254us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 471.641us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 200.862us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.307us - CompressTime: 0ns - ExecTime: 344.1us - InputRows: 363 - LocalBytesSent: 11.64 KB - LocalSendTime: 99.543us - LocalSentRows: 363 - MemoryUsage: - PeakMemoryUsage: 20.63 KB - MergeBlockTime: 0ns - OpenTime: 93.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 363 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 50.544us - SplitBlockHashComputeTime: 12.545us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 582ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.431us - GetResultsTime: 26.93us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.435us - HashTableSize: 363 - InsertKeysToColumnTime: 17.84us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.414us - ProjectionTime: 43.826us - RowsProduced: 363 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=4):(Active: 577.433us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 389.589us - CloseTime: 14.805us - GetBlockTime: 106.429us - OpenTime: 2.862us - PrepareTime: 162.637us - SinkTime: 260.863us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 553.855us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 711.105us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.901us - CompressTime: 0ns - ExecTime: 396.327us - InputRows: 373 - LocalBytesSent: 11.96 KB - LocalSendTime: 85.282us - LocalSentRows: 373 - MemoryUsage: - PeakMemoryUsage: 20.75 KB - MergeBlockTime: 0ns - OpenTime: 123.100us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 373 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 58.72us - SplitBlockHashComputeTime: 19.20us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 455ns - DeserializeAndMergeTime: 0ns - ExecTime: 118.160us - GetResultsTime: 53.41us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.907us - HashTableSize: 373 - InsertKeysToColumnTime: 34.821us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.158us - ProjectionTime: 45.53us - RowsProduced: 373 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=6):(Active: 432.165us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 282.267us - CloseTime: 11.362us - GetBlockTime: 84.179us - OpenTime: 2.334us - PrepareTime: 129.776us - SinkTime: 176.522us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 412.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 190.486us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.801us - CompressTime: 0ns - ExecTime: 268.161us - InputRows: 381 - LocalBytesSent: 12.22 KB - LocalSendTime: 56.267us - LocalSentRows: 381 - MemoryUsage: - PeakMemoryUsage: 20.63 KB - MergeBlockTime: 0ns - OpenTime: 89.703us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 381 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.35us - SplitBlockHashComputeTime: 11.984us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 521ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.862us - GetResultsTime: 34.618us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.567us - HashTableSize: 381 - InsertKeysToColumnTime: 22.813us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.900us - ProjectionTime: 42.113us - RowsProduced: 381 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=8):(Active: 510.282us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 344.307us - CloseTime: 25.56us - GetBlockTime: 79.488us - OpenTime: 2.885us - PrepareTime: 132.310us - SinkTime: 241.923us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 452.98us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.931us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.265us - CompressTime: 0ns - ExecTime: 335.730us - InputRows: 350 - LocalBytesSent: 11.20 KB - LocalSendTime: 111.965us - LocalSentRows: 350 - MemoryUsage: - PeakMemoryUsage: 20.38 KB - MergeBlockTime: 0ns - OpenTime: 80.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 350 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.676us - SplitBlockHashComputeTime: 13.909us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 599ns - DeserializeAndMergeTime: 0ns - ExecTime: 99.367us - GetResultsTime: 33.711us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.391us - HashTableSize: 350 - InsertKeysToColumnTime: 21.408us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.503us - ProjectionTime: 35.217us - RowsProduced: 350 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s857ms PipelineXTask (index=10):(Active: 521.602us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 378.380us - CloseTime: 12.263us - GetBlockTime: 121.195us - OpenTime: 2.426us - PrepareTime: 122.64us - SinkTime: 236.196us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 501.844us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.310us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.966us - CompressTime: 0ns - ExecTime: 329.854us - InputRows: 340 - LocalBytesSent: 10.90 KB - LocalSendTime: 66.869us - LocalSentRows: 340 - MemoryUsage: - PeakMemoryUsage: 19.00 KB - MergeBlockTime: 0ns - OpenTime: 83.122us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 340 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.181us - SplitBlockHashComputeTime: 22.883us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 367ns - DeserializeAndMergeTime: 0ns - ExecTime: 128.862us - GetResultsTime: 53.628us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.663us - HashTableSize: 340 - InsertKeysToColumnTime: 24.648us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.774us - ProjectionTime: 40.257us - RowsProduced: 340 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=12):(Active: 387.844us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 217.368us - CloseTime: 12.84us - GetBlockTime: 76.457us - OpenTime: 3.440us - PrepareTime: 148.518us - SinkTime: 117.804us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 367.623us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.86us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.356us - CompressTime: 0ns - ExecTime: 238.731us - InputRows: 366 - LocalBytesSent: 11.73 KB - LocalSendTime: 45.926us - LocalSentRows: 366 - MemoryUsage: - PeakMemoryUsage: 20.25 KB - MergeBlockTime: 0ns - OpenTime: 110.846us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 366 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 15.99us - SplitBlockHashComputeTime: 11.13us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 440ns - DeserializeAndMergeTime: 0ns - ExecTime: 86.995us - GetResultsTime: 31.860us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.418us - HashTableSize: 366 - InsertKeysToColumnTime: 14.256us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.932us - ProjectionTime: 38.870us - RowsProduced: 366 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s856ms PipelineXTask (index=14):(Active: 806.184us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 660.785us - CloseTime: 12.401us - GetBlockTime: 71.339us - OpenTime: 2.922us - PrepareTime: 124.424us - SinkTime: 571.398us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 388.449us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.36ms DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.800us - CompressTime: 0ns - ExecTime: 669.604us - InputRows: 344 - LocalBytesSent: 11.02 KB - LocalSendTime: 486.760us - LocalSentRows: 344 - MemoryUsage: - PeakMemoryUsage: 18.88 KB - MergeBlockTime: 0ns - OpenTime: 87.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 344 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.976us - SplitBlockHashComputeTime: 8.894us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 499ns - DeserializeAndMergeTime: 0ns - ExecTime: 82.397us - GetResultsTime: 38.586us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.744us - HashTableSize: 344 - InsertKeysToColumnTime: 25.880us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.837us - ProjectionTime: 28.696us - RowsProduced: 344 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=16):(Active: 464.170us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 319.179us - CloseTime: 11.948us - GetBlockTime: 69.830us - OpenTime: 2.937us - PrepareTime: 123.925us - SinkTime: 222.653us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 431.148us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.520us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.315us - CompressTime: 0ns - ExecTime: 311.829us - InputRows: 361 - LocalBytesSent: 11.58 KB - LocalSendTime: 121.624us - LocalSentRows: 361 - MemoryUsage: - PeakMemoryUsage: 21.00 KB - MergeBlockTime: 0ns - OpenTime: 79.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 361 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.989us - SplitBlockHashComputeTime: 8.630us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 397ns - DeserializeAndMergeTime: 0ns - ExecTime: 80.57us - GetResultsTime: 32.435us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.686us - HashTableSize: 361 - InsertKeysToColumnTime: 18.12us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.526us - ProjectionTime: 31.845us - RowsProduced: 361 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s857ms PipelineXTask (index=18):(Active: 407.124us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 238.292us - CloseTime: 10.780us - GetBlockTime: 80.146us - OpenTime: 2.499us - PrepareTime: 149.246us - SinkTime: 134.320us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 387.461us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.20us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.484us - CompressTime: 0ns - ExecTime: 240.225us - InputRows: 357 - LocalBytesSent: 11.46 KB - LocalSendTime: 61.597us - LocalSentRows: 357 - MemoryUsage: - PeakMemoryUsage: 19.75 KB - MergeBlockTime: 0ns - OpenTime: 96.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 357 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.303us - SplitBlockHashComputeTime: 9.76us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 318ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.90us - GetResultsTime: 45.365us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.210us - HashTableSize: 357 - InsertKeysToColumnTime: 18.443us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.303us - ProjectionTime: 29.827us - RowsProduced: 357 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s856ms PipelineXTask (index=20):(Active: 454.663us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 297.746us - CloseTime: 15.768us - GetBlockTime: 99.997us - OpenTime: 2.380us - PrepareTime: 132.923us - SinkTime: 179.555us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 431.505us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 979.438us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.952us - CompressTime: 0ns - ExecTime: 280.391us - InputRows: 363 - LocalBytesSent: 11.61 KB - LocalSendTime: 71.659us - LocalSentRows: 363 - MemoryUsage: - PeakMemoryUsage: 20.75 KB - MergeBlockTime: 0ns - OpenTime: 87.194us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 363 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.88us - SplitBlockHashComputeTime: 14.540us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 476ns - DeserializeAndMergeTime: 0ns - ExecTime: 109.979us - GetResultsTime: 34.960us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.544us - HashTableSize: 363 - InsertKeysToColumnTime: 21.887us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.171us - ProjectionTime: 58.477us - RowsProduced: 363 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms PipelineXTask (index=22):(Active: 447.711us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 307.878us - CloseTime: 13.400us - GetBlockTime: 127.55us - OpenTime: 3.149us - PrepareTime: 117.860us - SinkTime: 160.128us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 427.279us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.308us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.509us - CompressTime: 0ns - ExecTime: 250.722us - InputRows: 350 - LocalBytesSent: 11.22 KB - LocalSendTime: 68.497us - LocalSentRows: 350 - MemoryUsage: - PeakMemoryUsage: 19.88 KB - MergeBlockTime: 0ns - OpenTime: 79.715us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 350 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.911us - SplitBlockHashComputeTime: 12.178us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: 1 - CloseTime: 568ns - DeserializeAndMergeTime: 0ns - ExecTime: 134.886us - GetResultsTime: 31.244us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.320us - HashTableSize: 350 - InsertKeysToColumnTime: 20.431us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.210us - ProjectionTime: 83.984us - RowsProduced: 350 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s855ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 4.996ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.907ms - CloseTime: 9.281us - GetBlockTime: 229.982us - OpenTime: 3.711us - PrepareTime: 69.928us - SinkTime: 4.601ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.974ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 803.640us AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.120us - DeserializeAndMergeTime: 4.46ms - ExecTime: 4.624ms - ExprTime: 0ns - HashTableComputeTime: 486.73us - HashTableEmplaceTime: 266.469us - HashTableInputCount: 3.52K (3520) - InputRows: 3.52K (3520) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.581ms - OpenTime: 26.891us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.881us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 252.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 916.00 KB - MemoryUsage: - Blocks: 442.00 KB - PeakMemoryUsage: 442.00 KB - OpenTime: 23.2us - ProjectionTime: 0ns - RowsProduced: 3.52K (3520) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=3):(Active: 3.251ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.158ms - CloseTime: 5.647us - GetBlockTime: 125.586us - OpenTime: 2.970us - PrepareTime: 79.841us - SinkTime: 2.973ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.234ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.404ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.20us - DeserializeAndMergeTime: 2.637ms - ExecTime: 3.5ms - ExprTime: 0ns - HashTableComputeTime: 301.448us - HashTableEmplaceTime: 157.862us - HashTableInputCount: 3.943K (3943) - InputRows: 3.943K (3943) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 2.960ms - OpenTime: 34.400us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.635us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 145.711us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 553.00 KB - PeakMemoryUsage: 553.00 KB - OpenTime: 20.11us - ProjectionTime: 0ns - RowsProduced: 3.943K (3943) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms PipelineXTask (index=5):(Active: 3.786ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.685ms - CloseTime: 7.547us - GetBlockTime: 134.704us - OpenTime: 4.255us - PrepareTime: 84.72us - SinkTime: 3.490ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.763ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 730.302us AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.572us - DeserializeAndMergeTime: 3.57ms - ExecTime: 3.527ms - ExprTime: 0ns - HashTableComputeTime: 391.932us - HashTableEmplaceTime: 168.988us - HashTableInputCount: 3.998K (3998) - InputRows: 3.998K (3998) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.476ms - OpenTime: 38.805us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.113us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 156.699us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 395.00 KB - PeakMemoryUsage: 395.00 KB - OpenTime: 22.30us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms PipelineXTask (index=7):(Active: 3.375ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.293ms - CloseTime: 6.984us - GetBlockTime: 101.381us - OpenTime: 3.140us - PrepareTime: 66.104us - SinkTime: 3.150ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.582ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.887us - DeserializeAndMergeTime: 2.784ms - ExecTime: 3.176ms - ExprTime: 0ns - HashTableComputeTime: 321.88us - HashTableEmplaceTime: 168.220us - HashTableInputCount: 4.102K (4102) - InputRows: 4.102K (4102) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.130ms - OpenTime: 26.692us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.956us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.38us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 632.00 KB - PeakMemoryUsage: 632.00 KB - OpenTime: 17.465us - ProjectionTime: 0ns - RowsProduced: 4.102K (4102) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=9):(Active: 4.876ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.771ms - CloseTime: 8.259us - GetBlockTime: 162.497us - OpenTime: 3.549us - PrepareTime: 87.940us - SinkTime: 4.531ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.859ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.676ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.186us - DeserializeAndMergeTime: 3.952ms - ExecTime: 4.556ms - ExprTime: 0ns - HashTableComputeTime: 509.451us - HashTableEmplaceTime: 279.110us - HashTableInputCount: 3.779K (3779) - InputRows: 3.779K (3779) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.509ms - OpenTime: 29.226us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.806us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 185.167us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 711.00 KB - PeakMemoryUsage: 711.00 KB - OpenTime: 24.528us - ProjectionTime: 0ns - RowsProduced: 3.779K (3779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=11):(Active: 3.42ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.942ms - CloseTime: 7.815us - GetBlockTime: 98.167us - OpenTime: 2.609us - PrepareTime: 82.585us - SinkTime: 2.794ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.153ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.721us - DeserializeAndMergeTime: 2.444ms - ExecTime: 2.818ms - ExprTime: 0ns - HashTableComputeTime: 288.715us - HashTableEmplaceTime: 150.794us - HashTableInputCount: 3.683K (3683) - InputRows: 3.683K (3683) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 2.756ms - OpenTime: 26.279us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 133.308us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 916.00 KB - MemoryUsage: - Blocks: 395.00 KB - PeakMemoryUsage: 395.00 KB - OpenTime: 34.340us - ProjectionTime: 0ns - RowsProduced: 3.683K (3683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms PipelineXTask (index=13):(Active: 3.877ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.779ms - CloseTime: 5.906us - GetBlockTime: 115.231us - OpenTime: 3.77us - PrepareTime: 82.838us - SinkTime: 3.625ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.861ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.108ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 960ns - DeserializeAndMergeTime: 3.194ms - ExecTime: 3.658ms - ExprTime: 0ns - HashTableComputeTime: 390.842us - HashTableEmplaceTime: 200.347us - HashTableInputCount: 3.938K (3938) - InputRows: 3.938K (3938) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.611ms - OpenTime: 34.464us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 141.22us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 316.00 KB - PeakMemoryUsage: 316.00 KB - OpenTime: 25.888us - ProjectionTime: 0ns - RowsProduced: 3.938K (3938) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms PipelineXTask (index=15):(Active: 3.2ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.906ms - CloseTime: 6.316us - GetBlockTime: 107.627us - OpenTime: 2.980us - PrepareTime: 80.883us - SinkTime: 2.768ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.988ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.862ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 911ns - DeserializeAndMergeTime: 2.467ms - ExecTime: 2.794ms - ExprTime: 0ns - HashTableComputeTime: 251.689us - HashTableEmplaceTime: 125.681us - HashTableInputCount: 3.697K (3697) - InputRows: 3.697K (3697) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 2.758ms - OpenTime: 27.206us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.570us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.455us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 916.00 KB - MemoryUsage: - Blocks: 679.00 KB - PeakMemoryUsage: 679.00 KB - OpenTime: 20.406us - ProjectionTime: 0ns - RowsProduced: 3.697K (3697) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=17):(Active: 4.798ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.709ms - CloseTime: 8.587us - GetBlockTime: 143.317us - OpenTime: 2.482us - PrepareTime: 72.506us - SinkTime: 4.509ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.183ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.749ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.482us - DeserializeAndMergeTime: 4.51ms - ExecTime: 4.534ms - ExprTime: 0ns - HashTableComputeTime: 403.634us - HashTableEmplaceTime: 208.196us - HashTableInputCount: 3.916K (3916) - InputRows: 3.916K (3916) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.487ms - OpenTime: 28.349us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 167.432us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 711.00 KB - PeakMemoryUsage: 711.00 KB - OpenTime: 25.280us - ProjectionTime: 0ns - RowsProduced: 3.916K (3916) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=19):(Active: 4.176ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.89ms - CloseTime: 7.46us - GetBlockTime: 145.668us - OpenTime: 3.26us - PrepareTime: 72.660us - SinkTime: 3.899ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.161ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.94ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.157us - DeserializeAndMergeTime: 3.425ms - ExecTime: 3.921ms - ExprTime: 0ns - HashTableComputeTime: 425.337us - HashTableEmplaceTime: 235.358us - HashTableInputCount: 3.891K (3891) - InputRows: 3.891K (3891) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.882ms - OpenTime: 24.861us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.723us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 168.90us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 711.00 KB - PeakMemoryUsage: 711.00 KB - OpenTime: 24.146us - ProjectionTime: 0ns - RowsProduced: 3.891K (3891) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s850ms PipelineXTask (index=21):(Active: 4.184ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.100ms - CloseTime: 7.975us - GetBlockTime: 163.659us - OpenTime: 4.415us - PrepareTime: 65.588us - SinkTime: 3.874ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.164ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 125.593us AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.593us - DeserializeAndMergeTime: 3.355ms - ExecTime: 3.894ms - ExprTime: 0ns - HashTableComputeTime: 468.452us - HashTableEmplaceTime: 252.767us - HashTableInputCount: 3.918K (3918) - InputRows: 3.918K (3918) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.858ms - OpenTime: 21.822us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.372us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 316.00 KB - PeakMemoryUsage: 316.00 KB - OpenTime: 19.858us - ProjectionTime: 0ns - RowsProduced: 3.918K (3918) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms PipelineXTask (index=23):(Active: 3.172ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.83ms - CloseTime: 7.318us - GetBlockTime: 136.677us - OpenTime: 2.817us - PrepareTime: 73.153us - SinkTime: 2.904ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.153ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.286ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.62us - DeserializeAndMergeTime: 2.564ms - ExecTime: 2.941ms - ExprTime: 0ns - HashTableComputeTime: 298.500us - HashTableEmplaceTime: 148.603us - HashTableInputCount: 3.747K (3747) - InputRows: 3.747K (3747) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 2.891ms - OpenTime: 37.989us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.194us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 154.218us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 948.00 KB - MemoryUsage: - Blocks: 474.00 KB - PeakMemoryUsage: 474.00 KB - OpenTime: 16.259us - ProjectionTime: 0ns - RowsProduced: 3.747K (3747) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s851ms Fragment 13: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 351.370ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 350.516ms - CloseTime: 578.483us - GetBlockTime: 347.929ms - OpenTime: 7.609us - PrepareTime: 255.488us - SinkTime: 707.972us - GetBlockCounter: 690 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 26 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 267.276ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 421.389ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.976us - CompressTime: 0ns - ExecTime: 822.214us - InputRows: 3.831K (3831) - LocalBytesSent: 549.31 KB - LocalSendTime: 62.930us - LocalSentRows: 3.831K (3831) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 104.63us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.831K (3831) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 403.956us - SplitBlockHashComputeTime: 89.747us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 144.981ms - CloseTime: 549.733us - DeserializeAndMergeTime: 0ns - ExecTime: 148.306ms - ExprTime: 477.472us - GetResultsTime: 1.938ms - HashTableComputeTime: 120.699ms - HashTableEmplaceTime: 41.225ms - HashTableInputCount: 1.602273M (1602273) - HashTableIterateTime: 28.485us - HashTableSize: 3.831K (3831) - InsertKeysToColumnTime: 190.503us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 36.989us - ProjectionTime: 0ns - RowsProduced: 3.831K (3831) - SerializeDataTime: 1.693ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.939ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 689 - BuildOutputBlock: 0ns - CloseTime: 7.815us - ExecTime: 181.358ms - InitProbeSideTime: 8.928ms - JoinFilterTimer: 51.16us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 25.866us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 121.856us - ProbeFindNextTime: 0ns - ProbeRows: 2.298075M (2298075) - ProbeTime: 101.747ms - ProbeWhenBuildSideOutputTime: 42.152ms - ProbeWhenProbeSideOutputTime: 10.59ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.28ms - ProjectionTime: 77.762ms - RowsProduced: 1.602273M (1602273) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s321ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 549 - BytesReceived: 0.00 - CloseTime: 6.479us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.248ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.74 MB - MemoryUsage: - Blocks: 18.34 MB - PeakMemoryUsage: 18.34 MB - OpenTime: 24.672us - ProjectionTime: 0ns - RowsProduced: 2.298075M (2298075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 758.586ms PipelineXTask (index=2):(Active: 439.392ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 438.194ms - CloseTime: 968.849us - GetBlockTime: 435.93ms - OpenTime: 5.562us - PrepareTime: 211.915us - SinkTime: 1.253ms - GetBlockCounter: 681 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 27 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 268.976ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 244.313ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.110us - CompressTime: 0ns - ExecTime: 1.354ms - InputRows: 3.743K (3743) - LocalBytesSent: 529.24 KB - LocalSendTime: 113.538us - LocalSentRows: 3.743K (3743) - MemoryUsage: - PeakMemoryUsage: 884.00 KB - MergeBlockTime: 0ns - OpenTime: 84.329us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.743K (3743) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 664.933us - SplitBlockHashComputeTime: 253.476us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 149.105ms - CloseTime: 927.637us - DeserializeAndMergeTime: 0ns - ExecTime: 153.363ms - ExprTime: 506.268us - GetResultsTime: 2.438ms - HashTableComputeTime: 88.439ms - HashTableEmplaceTime: 28.546ms - HashTableInputCount: 1.623554M (1623554) - HashTableIterateTime: 34.903us - HashTableSize: 3.743K (3743) - InsertKeysToColumnTime: 301.177us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 35.430us - ProjectionTime: 0ns - RowsProduced: 3.743K (3743) - SerializeDataTime: 2.71ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.441ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 679 - BuildOutputBlock: 0ns - CloseTime: 9.879us - ExecTime: 216.852ms - InitProbeSideTime: 11.985ms - JoinFilterTimer: 55.749us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.186us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.918us - ProbeFindNextTime: 0ns - ProbeRows: 2.301608M (2301608) - ProbeTime: 116.76ms - ProbeWhenBuildSideOutputTime: 28.330ms - ProbeWhenProbeSideOutputTime: 23.310ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.167ms - ProjectionTime: 99.1ms - RowsProduced: 1.623554M (1623554) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s434ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 547 - BytesReceived: 0.00 - CloseTime: 7.893us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 63.243ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.91 MB - MemoryUsage: - Blocks: 19.65 MB - PeakMemoryUsage: 19.65 MB - OpenTime: 17.349us - ProjectionTime: 0ns - RowsProduced: 2.301608M (2301608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 734.742ms PipelineXTask (index=4):(Active: 533.188ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 532.23ms - CloseTime: 888.100us - GetBlockTime: 528.684ms - OpenTime: 12.836us - PrepareTime: 245.509us - SinkTime: 1.57ms - GetBlockCounter: 737 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 27 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 319.560ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.520ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.497us - CompressTime: 0ns - ExecTime: 1.154ms - InputRows: 3.809K (3809) - LocalBytesSent: 554.99 KB - LocalSendTime: 81.520us - LocalSentRows: 3.809K (3809) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 83.205us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.809K (3809) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 650.168us - SplitBlockHashComputeTime: 150.960us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 165.536ms - CloseTime: 850.198us - DeserializeAndMergeTime: 0ns - ExecTime: 169.741ms - ExprTime: 618.729us - GetResultsTime: 2.287ms - HashTableComputeTime: 137.730ms - HashTableEmplaceTime: 52.606ms - HashTableInputCount: 1.738464M (1738464) - HashTableIterateTime: 28.850us - HashTableSize: 3.809K (3809) - InsertKeysToColumnTime: 263.468us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 46.72us - ProjectionTime: 0ns - RowsProduced: 3.809K (3809) - SerializeDataTime: 1.952ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.290ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 736 - BuildOutputBlock: 0ns - CloseTime: 10.368us - ExecTime: 270.467ms - InitProbeSideTime: 10.600ms - JoinFilterTimer: 69.881us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 28.387us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 116.555us - ProbeFindNextTime: 0ns - ProbeRows: 2.456473M (2456473) - ProbeTime: 160.103ms - ProbeWhenBuildSideOutputTime: 47.176ms - ProbeWhenProbeSideOutputTime: 24.598ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 54.514ms - ProjectionTime: 108.184ms - RowsProduced: 1.738464M (1738464) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s438ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 584 - BytesReceived: 0.00 - CloseTime: 7.639us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.239ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 78.10 MB - MemoryUsage: - Blocks: 19.30 MB - PeakMemoryUsage: 19.30 MB - OpenTime: 32.81us - ProjectionTime: 0ns - RowsProduced: 2.456473M (2456473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 707.83ms PipelineXTask (index=6):(Active: 457.999ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 457.30ms - CloseTime: 712.602us - GetBlockTime: 454.441ms - OpenTime: 11.49us - PrepareTime: 236.521us - SinkTime: 797.687us - GetBlockCounter: 663 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 28 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 242.741ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.809ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.932us - CompressTime: 0ns - ExecTime: 896.769us - InputRows: 3.865K (3865) - LocalBytesSent: 543.84 KB - LocalSendTime: 68.329us - LocalSentRows: 3.865K (3865) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 88.352us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.865K (3865) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 421.555us - SplitBlockHashComputeTime: 138.508us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 129.288ms - CloseTime: 680.973us - DeserializeAndMergeTime: 0ns - ExecTime: 135.943ms - ExprTime: 451.813us - GetResultsTime: 5.205ms - HashTableComputeTime: 107.645ms - HashTableEmplaceTime: 45.588ms - HashTableInputCount: 1.451045M (1451045) - HashTableIterateTime: 36.364us - HashTableSize: 3.865K (3865) - InsertKeysToColumnTime: 313.616us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 31.102us - ProjectionTime: 0ns - RowsProduced: 3.865K (3865) - SerializeDataTime: 4.790ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.208ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 662 - BuildOutputBlock: 0ns - CloseTime: 9.597us - ExecTime: 262.726ms - InitProbeSideTime: 8.161ms - JoinFilterTimer: 51.794us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 25.208us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.776us - ProbeFindNextTime: 0ns - ProbeRows: 2.234046M (2234046) - ProbeTime: 166.343ms - ProbeWhenBuildSideOutputTime: 47.174ms - ProbeWhenProbeSideOutputTime: 9.236ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 62.370ms - ProjectionTime: 94.603ms - RowsProduced: 1.451045M (1451045) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s481ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 535 - BytesReceived: 0.00 - CloseTime: 6.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.17ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 71.96 MB - MemoryUsage: - Blocks: 18.35 MB - PeakMemoryUsage: 18.35 MB - OpenTime: 20.482us - ProjectionTime: 0ns - RowsProduced: 2.234046M (2234046) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 752.563ms PipelineXTask (index=8):(Active: 437.902ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 437.41ms - CloseTime: 622.8us - GetBlockTime: 434.249ms - OpenTime: 6.486us - PrepareTime: 223.178us - SinkTime: 702.179us - GetBlockCounter: 707 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 33 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 312.400ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 259.421ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.144us - CompressTime: 0ns - ExecTime: 798.379us - InputRows: 3.869K (3869) - LocalBytesSent: 570.18 KB - LocalSendTime: 60.909us - LocalSentRows: 3.869K (3869) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 86.320us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.869K (3869) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 420.116us - SplitBlockHashComputeTime: 84.552us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 182.240ms - CloseTime: 597.286us - DeserializeAndMergeTime: 0ns - ExecTime: 186.419ms - ExprTime: 531.115us - GetResultsTime: 1.873ms - HashTableComputeTime: 154.441ms - HashTableEmplaceTime: 92.777ms - HashTableInputCount: 1.90435M (1904350) - HashTableIterateTime: 23.447us - HashTableSize: 3.869K (3869) - InsertKeysToColumnTime: 162.284us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 42.23us - ProjectionTime: 0ns - RowsProduced: 3.869K (3869) - SerializeDataTime: 1.661ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.875ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 705 - BuildOutputBlock: 0ns - CloseTime: 5.841us - ExecTime: 228.910ms - InitProbeSideTime: 11.139ms - JoinFilterTimer: 62.271us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.103us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 149.859us - ProbeFindNextTime: 0ns - ProbeRows: 2.311949M (2311949) - ProbeTime: 126.723ms - ProbeWhenBuildSideOutputTime: 34.772ms - ProbeWhenProbeSideOutputTime: 11.742ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.562ms - ProjectionTime: 100.241ms - RowsProduced: 1.90435M (1904350) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s453ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 553 - BytesReceived: 0.00 - CloseTime: 4.772us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.453ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.31 MB - MemoryUsage: - Blocks: 18.18 MB - PeakMemoryUsage: 18.18 MB - OpenTime: 22.357us - ProjectionTime: 0ns - RowsProduced: 2.311949M (2311949) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 705.530ms PipelineXTask (index=10):(Active: 476.402ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 475.588ms - CloseTime: 564.937us - GetBlockTime: 472.705ms - OpenTime: 5.751us - PrepareTime: 233.723us - SinkTime: 922.24us - GetBlockCounter: 769 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 19 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 329.679ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.86ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.720us - CompressTime: 0ns - ExecTime: 1.21ms - InputRows: 3.973K (3973) - LocalBytesSent: 630.49 KB - LocalSendTime: 76.970us - LocalSentRows: 3.973K (3973) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 88.528us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.973K (3973) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 584.794us - SplitBlockHashComputeTime: 99.452us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 219.301ms - CloseTime: 538.874us - DeserializeAndMergeTime: 0ns - ExecTime: 222.898ms - ExprTime: 472.141us - GetResultsTime: 2.102ms - HashTableComputeTime: 166.312ms - HashTableEmplaceTime: 74.497ms - HashTableInputCount: 2.19987M (2199870) - HashTableIterateTime: 35.599us - HashTableSize: 3.973K (3973) - InsertKeysToColumnTime: 176.764us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 30.185us - ProjectionTime: 0ns - RowsProduced: 3.973K (3973) - SerializeDataTime: 1.872ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.104ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 767 - BuildOutputBlock: 0ns - CloseTime: 6.967us - ExecTime: 226.75ms - InitProbeSideTime: 9.131ms - JoinFilterTimer: 59.47us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.749us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 88.91us - ProbeFindNextTime: 0ns - ProbeRows: 2.423572M (2423572) - ProbeTime: 134.377ms - ProbeWhenBuildSideOutputTime: 56.920ms - ProbeWhenProbeSideOutputTime: 22.411ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.896ms - ProjectionTime: 89.811ms - RowsProduced: 2.19987M (2199870) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s476ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 579 - BytesReceived: 0.00 - CloseTime: 4.217us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.470ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 76.69 MB - MemoryUsage: - Blocks: 19.23 MB - PeakMemoryUsage: 19.23 MB - OpenTime: 19.862us - ProjectionTime: 0ns - RowsProduced: 2.423572M (2423572) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 729.118ms PipelineXTask (index=12):(Active: 413.343ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 412.406ms - CloseTime: 686.476us - GetBlockTime: 409.730ms - OpenTime: 8.71us - PrepareTime: 233.464us - SinkTime: 760.957us - GetBlockCounter: 663 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 34 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 259.922ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.725ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.890us - CompressTime: 0ns - ExecTime: 860.257us - InputRows: 3.859K (3859) - LocalBytesSent: 529.91 KB - LocalSendTime: 149.716us - LocalSentRows: 3.859K (3859) - MemoryUsage: - PeakMemoryUsage: 916.00 KB - MergeBlockTime: 0ns - OpenTime: 82.291us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.859K (3859) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 410.245us - SplitBlockHashComputeTime: 95.354us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 108.103ms - CloseTime: 640.612us - DeserializeAndMergeTime: 0ns - ExecTime: 111.77ms - ExprTime: 490.473us - GetResultsTime: 1.486ms - HashTableComputeTime: 73.165ms - HashTableEmplaceTime: 28.6ms - HashTableInputCount: 1.533638M (1533638) - HashTableIterateTime: 19.89us - HashTableSize: 3.859K (3859) - InsertKeysToColumnTime: 144.468us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 29.953us - ProjectionTime: 0ns - RowsProduced: 3.859K (3859) - SerializeDataTime: 1.294ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.487ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 662 - BuildOutputBlock: 0ns - CloseTime: 13.782us - ExecTime: 192.257ms - InitProbeSideTime: 12.306ms - JoinFilterTimer: 49.235us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 22.293us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 86.774us - ProbeFindNextTime: 0ns - ProbeRows: 2.216028M (2216028) - ProbeTime: 125.784ms - ProbeWhenBuildSideOutputTime: 52.193ms - ProbeWhenProbeSideOutputTime: 9.609ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.628ms - ProjectionTime: 64.730ms - RowsProduced: 1.533638M (1533638) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s490ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 529 - BytesReceived: 0.00 - CloseTime: 8.726us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.575ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 70.18 MB - MemoryUsage: - Blocks: 17.78 MB - PeakMemoryUsage: 17.78 MB - OpenTime: 22.750us - ProjectionTime: 0ns - RowsProduced: 2.216028M (2216028) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 784.88ms PipelineXTask (index=14):(Active: 481.975ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 481.25ms - CloseTime: 665.780us - GetBlockTime: 478.84ms - OpenTime: 5.300us - PrepareTime: 268.164us - SinkTime: 904.391us - GetBlockCounter: 749 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 26 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 329.149ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 161.272ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.55us - CompressTime: 0ns - ExecTime: 999.279us - InputRows: 3.888K (3888) - LocalBytesSent: 573.71 KB - LocalSendTime: 106.782us - LocalSentRows: 3.888K (3888) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 83.626us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.888K (3888) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 535.897us - SplitBlockHashComputeTime: 92.96us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 169.538ms - CloseTime: 592.470us - DeserializeAndMergeTime: 0ns - ExecTime: 173.142ms - ExprTime: 555.805us - GetResultsTime: 2.36ms - HashTableComputeTime: 127.653ms - HashTableEmplaceTime: 48.498ms - HashTableInputCount: 1.975814M (1975814) - HashTableIterateTime: 23.180us - HashTableSize: 3.888K (3888) - InsertKeysToColumnTime: 213.698us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 35.586us - ProjectionTime: 0ns - RowsProduced: 3.888K (3888) - SerializeDataTime: 1.773ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.48ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 748 - BuildOutputBlock: 0ns - CloseTime: 32.233us - ExecTime: 270.977ms - InitProbeSideTime: 10.473ms - JoinFilterTimer: 65.427us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.362us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.690us - ProbeFindNextTime: 0ns - ProbeRows: 2.474327M (2474327) - ProbeTime: 152.664ms - ProbeWhenBuildSideOutputTime: 49.899ms - ProbeWhenProbeSideOutputTime: 44.336ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.232ms - ProjectionTime: 116.233ms - RowsProduced: 1.975814M (1975814) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s476ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 589 - BytesReceived: 0.00 - CloseTime: 24.613us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.584ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 78.53 MB - MemoryUsage: - Blocks: 19.79 MB - PeakMemoryUsage: 19.79 MB - OpenTime: 33.493us - ProjectionTime: 0ns - RowsProduced: 2.474327M (2474327) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 731.519ms PipelineXTask (index=16):(Active: 548.57ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 547.213ms - CloseTime: 609.79us - GetBlockTime: 544.318ms - OpenTime: 6.910us - PrepareTime: 221.793us - SinkTime: 793.410us - GetBlockCounter: 669 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 283.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.481ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.381us - CompressTime: 0ns - ExecTime: 893.650us - InputRows: 3.763K (3763) - LocalBytesSent: 546.16 KB - LocalSendTime: 66.45us - LocalSentRows: 3.763K (3763) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 89.91us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.763K (3763) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 461.796us - SplitBlockHashComputeTime: 94.911us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 211.898ms - CloseTime: 572.709us - DeserializeAndMergeTime: 0ns - ExecTime: 215.95ms - ExprTime: 560.752us - GetResultsTime: 1.562ms - HashTableComputeTime: 165.66ms - HashTableEmplaceTime: 55.499ms - HashTableInputCount: 1.566724M (1566724) - HashTableIterateTime: 32.755us - HashTableSize: 3.763K (3763) - InsertKeysToColumnTime: 188.421us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 31.245us - ProjectionTime: 0ns - RowsProduced: 3.763K (3763) - SerializeDataTime: 1.316ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.566ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 668 - BuildOutputBlock: 0ns - CloseTime: 13.640us - ExecTime: 286.170ms - InitProbeSideTime: 9.542ms - JoinFilterTimer: 62.644us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.528us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.271us - ProbeFindNextTime: 0ns - ProbeRows: 2.235315M (2235315) - ProbeTime: 124.714ms - ProbeWhenBuildSideOutputTime: 34.756ms - ProbeWhenProbeSideOutputTime: 23.357ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.109ms - ProjectionTime: 159.417ms - RowsProduced: 1.566724M (1566724) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s258ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 534 - BytesReceived: 0.00 - CloseTime: 6.615us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.776ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 71.48 MB - MemoryUsage: - Blocks: 17.80 MB - PeakMemoryUsage: 17.80 MB - OpenTime: 19.837us - ProjectionTime: 0ns - RowsProduced: 2.235315M (2235315) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 727.57ms PipelineXTask (index=18):(Active: 357.699ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 356.842ms - CloseTime: 582.72us - GetBlockTime: 354.39ms - OpenTime: 10.426us - PrepareTime: 251.71us - SinkTime: 696.749us - GetBlockCounter: 724 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 29 - NumBlockedTimes: 31 - NumScheduleTimes: 32 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 298.129ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 290.775ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.89us - CompressTime: 0ns - ExecTime: 797.337us - InputRows: 3.812K (3812) - LocalBytesSent: 588.40 KB - LocalSendTime: 126.852us - LocalSentRows: 3.812K (3812) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 83.176us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.812K (3812) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 373.749us - SplitBlockHashComputeTime: 75.898us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 116.556ms - CloseTime: 550.247us - DeserializeAndMergeTime: 0ns - ExecTime: 119.897ms - ExprTime: 528.296us - GetResultsTime: 1.808ms - HashTableComputeTime: 85.368ms - HashTableEmplaceTime: 32.968ms - HashTableInputCount: 1.764944M (1764944) - HashTableIterateTime: 23.221us - HashTableSize: 3.812K (3812) - InsertKeysToColumnTime: 233.188us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 49.9us - ProjectionTime: 0ns - RowsProduced: 3.812K (3812) - SerializeDataTime: 1.501ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.809ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 723 - BuildOutputBlock: 0ns - CloseTime: 5.932us - ExecTime: 222.771ms - InitProbeSideTime: 9.820ms - JoinFilterTimer: 51.163us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 26.48us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.149us - ProbeFindNextTime: 0ns - ProbeRows: 2.409825M (2409825) - ProbeTime: 121.899ms - ProbeWhenBuildSideOutputTime: 31.815ms - ProbeWhenProbeSideOutputTime: 36.5ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.96ms - ProjectionTime: 98.877ms - RowsProduced: 1.764944M (1764944) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s498ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 575 - BytesReceived: 0.00 - CloseTime: 4.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.700ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 76.56 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.55 MB - OpenTime: 18.465us - ProjectionTime: 0ns - RowsProduced: 2.409825M (2409825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 708.478ms PipelineXTask (index=20):(Active: 509.487ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 508.380ms - CloseTime: 843.453us - GetBlockTime: 505.257ms - OpenTime: 8.117us - PrepareTime: 247.483us - SinkTime: 1.24ms - GetBlockCounter: 691 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 32 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 269.271ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.213ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.925us - CompressTime: 0ns - ExecTime: 1.129ms - InputRows: 3.779K (3779) - LocalBytesSent: 536.02 KB - LocalSendTime: 100.582us - LocalSentRows: 3.779K (3779) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 92.524us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.779K (3779) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 600.448us - SplitBlockHashComputeTime: 130.103us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 111.504ms - CloseTime: 800.773us - DeserializeAndMergeTime: 0ns - ExecTime: 115.747ms - ExprTime: 546.681us - GetResultsTime: 2.482ms - HashTableComputeTime: 76.302ms - HashTableEmplaceTime: 30.877ms - HashTableInputCount: 1.515598M (1515598) - HashTableIterateTime: 25.492us - HashTableSize: 3.779K (3779) - InsertKeysToColumnTime: 255.749us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 28.681us - ProjectionTime: 0ns - RowsProduced: 3.779K (3779) - SerializeDataTime: 2.172ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.483ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 690 - BuildOutputBlock: 0ns - CloseTime: 20.466us - ExecTime: 314.597ms - InitProbeSideTime: 26.418ms - JoinFilterTimer: 61.605us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.560us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.627us - ProbeFindNextTime: 0ns - ProbeRows: 2.308663M (2308663) - ProbeTime: 172.113ms - ProbeWhenBuildSideOutputTime: 29.298ms - ProbeWhenProbeSideOutputTime: 10.28ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 50.769ms - ProjectionTime: 140.625ms - RowsProduced: 1.515598M (1515598) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s426ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 552 - BytesReceived: 0.00 - CloseTime: 4.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.999ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.20 MB - MemoryUsage: - Blocks: 18.20 MB - PeakMemoryUsage: 18.20 MB - OpenTime: 33.866us - ProjectionTime: 0ns - RowsProduced: 2.308663M (2308663) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 752.983ms PipelineXTask (index=22):(Active: 580.268ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 579.411ms - CloseTime: 612.675us - GetBlockTime: 557.361ms - OpenTime: 5.682us - PrepareTime: 228.781us - SinkTime: 892.369us - GetBlockCounter: 729 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 22 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 297.947ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.241ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.189us - CompressTime: 0ns - ExecTime: 991.679us - InputRows: 3.941K (3941) - LocalBytesSent: 581.14 KB - LocalSendTime: 76.230us - LocalSentRows: 3.941K (3941) - MemoryUsage: - PeakMemoryUsage: 948.00 KB - MergeBlockTime: 0ns - OpenTime: 87.783us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.941K (3941) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 543.560us - SplitBlockHashComputeTime: 83.148us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 189.844ms - CloseTime: 580.117us - DeserializeAndMergeTime: 0ns - ExecTime: 193.354ms - ExprTime: 546.413us - GetResultsTime: 2.17ms - HashTableComputeTime: 133.314ms - HashTableEmplaceTime: 31.867ms - HashTableInputCount: 1.814412M (1814412) - HashTableIterateTime: 22.798us - HashTableSize: 3.941K (3941) - InsertKeysToColumnTime: 193.257us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 28.374us - ProjectionTime: 0ns - RowsProduced: 3.941K (3941) - SerializeDataTime: 1.771ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.20ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 728 - BuildOutputBlock: 0ns - CloseTime: 10.598us - ExecTime: 260.604ms - InitProbeSideTime: 9.203ms - JoinFilterTimer: 56.828us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.120us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 103.676us - ProbeFindNextTime: 0ns - ProbeRows: 2.423404M (2423404) - ProbeTime: 171.986ms - ProbeWhenBuildSideOutputTime: 32.252ms - ProbeWhenProbeSideOutputTime: 11.163ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 86.389ms - ProjectionTime: 86.641ms - RowsProduced: 1.814412M (1814412) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s512ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 577 - BytesReceived: 0.00 - CloseTime: 6.173us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.262ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 76.93 MB - MemoryUsage: - Blocks: 19.59 MB - PeakMemoryUsage: 19.59 MB - OpenTime: 20.193us - ProjectionTime: 0ns - RowsProduced: 2.423404M (2423404) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 689.393ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 5.980ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.866ms - CloseTime: 15.515us - GetBlockTime: 115.910us - OpenTime: 2.178us - PrepareTime: 89.965us - SinkTime: 5.681ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.947ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.890ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.312us - BuildRows: 13.62K (13620) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 471.39us - BuildTableInsertTime: 99.168us - BuildTableTime: 122.172us - CloseTime: 0ns - ExecTime: 5.726ms - InputRows: 13.619K (13619) - MemoryUsage: - BuildBlocks: 448.54 KB - BuildKeyArena: 0.00 - HashTable: 117.21 KB - PeakMemoryUsage: 565.74 KB - OpenTime: 48.617us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.117ms - RuntimeFilterComputeTime: 741.350us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.897us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.25us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 248.00 KB - PeakMemoryUsage: 248.00 KB - OpenTime: 19.578us - ProjectionTime: 0ns - RowsProduced: 13.619K (13619) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s22ms PipelineXTask (index=3):(Active: 26.523ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.437ms - CloseTime: 20.326us - GetBlockTime: 138.889us - OpenTime: 2.420us - PrepareTime: 58.888us - SinkTime: 26.262ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.247ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.620ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.553us - BuildRows: 13.332K (13332) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 356.189us - BuildTableInsertTime: 93.724us - BuildTableTime: 110.931us - CloseTime: 0ns - ExecTime: 26.274ms - InputRows: 13.331K (13331) - MemoryUsage: - BuildBlocks: 439.22 KB - BuildKeyArena: 0.00 - HashTable: 116.08 KB - PeakMemoryUsage: 555.29 KB - OpenTime: 14.158us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.797ms - RuntimeFilterComputeTime: 553.319us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 17.576us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.557us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 496.00 KB - PeakMemoryUsage: 496.00 KB - OpenTime: 14.441us - ProjectionTime: 0ns - RowsProduced: 13.331K (13331) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s977ms PipelineXTask (index=5):(Active: 5.328ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.205ms - CloseTime: 16.533us - GetBlockTime: 180.321us - OpenTime: 2.90us - PrepareTime: 94.31us - SinkTime: 4.971ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.252ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.392ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.117us - BuildRows: 13.358K (13358) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 469.358us - BuildTableInsertTime: 126.446us - BuildTableTime: 148.396us - CloseTime: 0ns - ExecTime: 4.990ms - InputRows: 13.357K (13357) - MemoryUsage: - BuildBlocks: 439.86 KB - BuildKeyArena: 0.00 - HashTable: 116.18 KB - PeakMemoryUsage: 556.03 KB - OpenTime: 21.810us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.140ms - RuntimeFilterComputeTime: 522.21us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.321us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 211.561us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 24.610us - ProjectionTime: 0ns - RowsProduced: 13.357K (13357) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s10ms PipelineXTask (index=7):(Active: 10.450ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.350ms - CloseTime: 14.463us - GetBlockTime: 159.517us - OpenTime: 2.746us - PrepareTime: 77.260us - SinkTime: 10.138ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.397ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.799ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.468us - BuildRows: 13.171K (13171) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 453.666us - BuildTableInsertTime: 117.541us - BuildTableTime: 140.670us - CloseTime: 0ns - ExecTime: 10.170ms - InputRows: 13.17K (13170) - MemoryUsage: - BuildBlocks: 433.56 KB - BuildKeyArena: 0.00 - HashTable: 115.45 KB - PeakMemoryUsage: 549.00 KB - OpenTime: 35.933us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.208ms - RuntimeFilterComputeTime: 853.391us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 178.332us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 15.175us - ProjectionTime: 0ns - RowsProduced: 13.17K (13170) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s22ms PipelineXTask (index=9):(Active: 18.461ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.360ms - CloseTime: 15.636us - GetBlockTime: 144.933us - OpenTime: 2.428us - PrepareTime: 78.366us - SinkTime: 18.163ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.595ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.873ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.850us - BuildRows: 13.377K (13377) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 425.544us - BuildTableInsertTime: 104.242us - BuildTableTime: 126.255us - CloseTime: 0ns - ExecTime: 18.187ms - InputRows: 13.376K (13376) - MemoryUsage: - BuildBlocks: 440.50 KB - BuildKeyArena: 0.00 - HashTable: 116.26 KB - PeakMemoryUsage: 556.75 KB - OpenTime: 26.885us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.102ms - RuntimeFilterComputeTime: 962.766us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.683us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 175.228us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 496.00 KB - PeakMemoryUsage: 496.00 KB - OpenTime: 22.886us - ProjectionTime: 0ns - RowsProduced: 13.376K (13376) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s972ms PipelineXTask (index=11):(Active: 5.222ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.124ms - CloseTime: 15.975us - GetBlockTime: 115.977us - OpenTime: 2.723us - PrepareTime: 73.627us - SinkTime: 4.969ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.735ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.391us - BuildRows: 13.411K (13411) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 417.509us - BuildTableInsertTime: 103.32us - BuildTableTime: 124.98us - CloseTime: 0ns - ExecTime: 4.998ms - InputRows: 13.41K (13410) - MemoryUsage: - BuildBlocks: 441.24 KB - BuildKeyArena: 0.00 - HashTable: 116.39 KB - PeakMemoryUsage: 557.62 KB - OpenTime: 31.832us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.187ms - RuntimeFilterComputeTime: 534.595us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.448us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.910us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 17.958us - ProjectionTime: 0ns - RowsProduced: 13.41K (13410) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s21ms PipelineXTask (index=13):(Active: 5.401ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.301ms - CloseTime: 11.577us - GetBlockTime: 173.105us - OpenTime: 2.706us - PrepareTime: 80.781us - SinkTime: 5.87ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.781ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.175us - BuildRows: 13.181K (13181) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 423.634us - BuildTableInsertTime: 102.535us - BuildTableTime: 123.935us - CloseTime: 0ns - ExecTime: 5.113ms - InputRows: 13.18K (13180) - MemoryUsage: - BuildBlocks: 433.93 KB - BuildKeyArena: 0.00 - HashTable: 115.49 KB - PeakMemoryUsage: 549.41 KB - OpenTime: 28.997us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.122ms - RuntimeFilterComputeTime: 629.94us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.330us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 192.639us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 17.615us - ProjectionTime: 0ns - RowsProduced: 13.18K (13180) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s21ms PipelineXTask (index=15):(Active: 9.615ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.532ms - CloseTime: 13.303us - GetBlockTime: 186.947us - OpenTime: 1.478us - PrepareTime: 64.76us - SinkTime: 9.304ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.564ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.783ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.620us - BuildRows: 13.176K (13176) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 378.772us - BuildTableInsertTime: 99.684us - BuildTableTime: 121.296us - CloseTime: 0ns - ExecTime: 9.321ms - InputRows: 13.175K (13175) - MemoryUsage: - BuildBlocks: 433.70 KB - BuildKeyArena: 0.00 - HashTable: 115.47 KB - PeakMemoryUsage: 549.16 KB - OpenTime: 19.603us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.176ms - RuntimeFilterComputeTime: 920.281us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.68us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 209.988us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 18.909us - ProjectionTime: 0ns - RowsProduced: 13.175K (13175) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s9ms PipelineXTask (index=17):(Active: 5.689ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.601ms - CloseTime: 14.645us - GetBlockTime: 151.21us - OpenTime: 2.155us - PrepareTime: 65.817us - SinkTime: 5.407ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.662ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.170ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.923us - BuildRows: 12.993K (12993) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 481.504us - BuildTableInsertTime: 105.550us - BuildTableTime: 126.60us - CloseTime: 0ns - ExecTime: 5.423ms - InputRows: 12.992K (12992) - MemoryUsage: - BuildBlocks: 428.00 KB - BuildKeyArena: 0.00 - HashTable: 114.76 KB - PeakMemoryUsage: 542.75 KB - OpenTime: 18.465us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.181ms - RuntimeFilterComputeTime: 832.916us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.520us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 171.159us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 14.854us - ProjectionTime: 0ns - RowsProduced: 12.992K (12992) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s20ms PipelineXTask (index=19):(Active: 27.536ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.454ms - CloseTime: 15.4us - GetBlockTime: 135.169us - OpenTime: 4.185us - PrepareTime: 57.280us - SinkTime: 27.236ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.829ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.515ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.475us - BuildRows: 13.448K (13448) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 339.626us - BuildTableInsertTime: 145.132us - BuildTableTime: 171.666us - CloseTime: 0ns - ExecTime: 27.252ms - InputRows: 13.447K (13447) - MemoryUsage: - BuildBlocks: 442.76 KB - BuildKeyArena: 0.00 - HashTable: 116.54 KB - PeakMemoryUsage: 559.28 KB - OpenTime: 18.713us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.468ms - RuntimeFilterComputeTime: 22.120ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.747us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 153.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 11.874us - ProjectionTime: 0ns - RowsProduced: 13.447K (13447) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s20ms PipelineXTask (index=21):(Active: 3.942ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.851ms - CloseTime: 10.843us - GetBlockTime: 146.966us - OpenTime: 2.852us - PrepareTime: 71.40us - SinkTime: 3.541ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.825ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.956ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.415us - BuildRows: 13.19K (13190) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 448.392us - BuildTableInsertTime: 127.742us - BuildTableTime: 146.22us - CloseTime: 0ns - ExecTime: 3.566ms - InputRows: 13.189K (13189) - MemoryUsage: - BuildBlocks: 434.46 KB - BuildKeyArena: 0.00 - HashTable: 115.53 KB - PeakMemoryUsage: 549.98 KB - OpenTime: 28.426us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.828us - RuntimeFilterComputeTime: 540.198us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.259us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 162.712us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 15.308us - ProjectionTime: 0ns - RowsProduced: 13.189K (13189) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s999ms PipelineXTask (index=23):(Active: 35.565ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.486ms - CloseTime: 15.27us - GetBlockTime: 221.293us - OpenTime: 3.46us - PrepareTime: 56.895us - SinkTime: 35.222ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.262ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.590ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.502us - BuildRows: 13.484K (13484) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 453.245us - BuildTableInsertTime: 104.452us - BuildTableTime: 134.67us - CloseTime: 0ns - ExecTime: 35.239ms - InputRows: 13.483K (13483) - MemoryUsage: - BuildBlocks: 443.62 KB - BuildKeyArena: 0.00 - HashTable: 116.68 KB - PeakMemoryUsage: 560.29 KB - OpenTime: 18.780us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 27.405ms - RuntimeFilterComputeTime: 905.530us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.936us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 237.82us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 11.606us - ProjectionTime: 0ns - RowsProduced: 13.483K (13483) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s9ms Fragment 14: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 267.453ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 266.444ms - CloseTime: 325.211us - GetBlockTime: 8.353ms - OpenTime: 321.12us - PrepareTime: 349.234us - SinkTime: 254.979ms - GetBlockCounter: 1.422K (1422) - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 199.47ms - WaitBfTime: 861.86ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 469.249ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.235K (1235) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.651us - CompressTime: 0ns - ExecTime: 254.762ms - InputRows: 5.197391M (5197391) - LocalBytesSent: 89.22 MB - LocalSendTime: 52.947ms - LocalSentRows: 5.197391M (5197391) - MemoryUsage: - PeakMemoryUsage: 166.37 MB - MergeBlockTime: 0ns - OpenTime: 103.411us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 5.197391M (5197391) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 111.939ms - SplitBlockHashComputeTime: 57.575ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13208, 13272, 13336, 13400] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.207us - BlocksProduced: 1.422K (1422) - CloseTime: 312.385us - ExecTime: 1s353ms - KeyRangesNum: 0 - MaxScannerThreadNum: 6 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 6 - OpenTime: 438.62us - ProcessConjunctTime: 79.457us - ProjectionTime: 961.670ms - RowsProduced: 5.197391M (5197391) - RowsRead: 8.604714M (8604714) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 632.537ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 382.915ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [315.158ms, 142.884ms, 381.991ms, 59.734ms, 439.841ms, 79.352ms, ] - PerScannerRowsRead: [1.98M, 1.28M, 1.93M, 641.98K, 1.97M, 807.14K, ] - PerScannerWaitTime: [99.282ms, 107.257ms, 105.014ms, 106.491ms, 111.912ms, 102.579ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 527.269ms - MemoryUsage: - FreeBlocks: 60.33 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 88.69ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60.606us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1s101ms - ScannerCtxSchedTime: 632.516ms - ScannerFilterTime: 868.693ms - ScannerGetBlockTime: 548.894ms - ScannerInitTime: 203.372us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 19 SegmentIterator: - BitmapIndexFilterTimer: 11.16us - BlockConditionsFilteredBloomFilterTime: 12.90us - BlockConditionsFilteredDictTime: 60.936us - BlockConditionsFilteredTime: 425.949us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 255.6us - BlockInitSeekCount: 68 - BlockInitSeekTime: 73.146us - BlockInitTime: 841.135us - BlockLoadTime: 605.93ms - BlocksLoad: 2.231K (2231) - CachedPagesNum: 2.93K (2930) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.223K (2223) - FirstReadSeekTime: 1.5ms - FirstReadTime: 19.865ms - IOTimer: 0ns - InvertedIndexFilterTime: 22.764us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 342.669ms - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 133.62ms - OutputIndexResultColumnTimer: 340.360us - RawRowsRead: 9.01216M (9012160) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 407.446K (407446) - RowsVectorPredInput: 9.01216M (9012160) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 98.442us - TotalPagesNum: 2.93K (2930) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 14.899ms PipelineXTask (index=1):(Active: 66.227ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 65.390ms - CloseTime: 212.909us - GetBlockTime: 2.716ms - OpenTime: 339.940us - PrepareTime: 273.56us - SinkTime: 61.491ms - GetBlockCounter: 357 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 53.544ms - WaitBfTime: 746.17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 880.885ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 327 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.570us - CompressTime: 0ns - ExecTime: 61.514ms - InputRows: 1.370783M (1370783) - LocalBytesSent: 23.53 MB - LocalSendTime: 1.843ms - LocalSentRows: 1.370783M (1370783) - MemoryUsage: - PeakMemoryUsage: 42.37 MB - MergeBlockTime: 0ns - OpenTime: 93.686us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.370783M (1370783) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.191ms - SplitBlockHashComputeTime: 24.306ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13210, 13274, 13338, 13402] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.285us - BlocksProduced: 357 - CloseTime: 193.819us - ExecTime: 500.788ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 426.664us - ProcessConjunctTime: 86.465us - ProjectionTime: 293.25ms - RowsProduced: 1.370783M (1370783) - RowsRead: 1.551772M (1551772) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 428.362ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 204.406ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [24.534ms, 2.777ms, 86.500ms, 5.169ms, ] - PerScannerRowsRead: [500.89K, 80.38K, 845.61K, 124.90K, ] - PerScannerWaitTime: [103.834ms, 104.697ms, 113.577ms, 106.252ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 61.547ms - MemoryUsage: - FreeBlocks: 22.85 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.445ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.989us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 179.991ms - ScannerCtxSchedTime: 428.353ms - ScannerFilterTime: 54.556ms - ScannerGetBlockTime: 64.196ms - ScannerInitTime: 209.821us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.863us - BlockConditionsFilteredBloomFilterTime: 12.986us - BlockConditionsFilteredDictTime: 43.247us - BlockConditionsFilteredTime: 216.29us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 88.919us - BlockInitSeekCount: 70 - BlockInitSeekTime: 90.970us - BlockInitTime: 505.143us - BlockLoadTime: 88.366ms - BlocksLoad: 409 - CachedPagesNum: 463 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 401 - FirstReadSeekTime: 217.937us - FirstReadTime: 3.315ms - IOTimer: 0ns - InvertedIndexFilterTime: 31.151us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 57.482ms - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 22.692ms - OutputIndexResultColumnTimer: 74.435us - RawRowsRead: 1.60819M (1608190) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 56.418K (56418) - RowsVectorPredInput: 1.60819M (1608190) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 13.816us - TotalPagesNum: 463 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.180ms PipelineXTask (index=2):(Active: 308.731ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 307.870ms - CloseTime: 248.456us - GetBlockTime: 15.895ms - OpenTime: 323.316us - PrepareTime: 278.506us - SinkTime: 289.417ms - GetBlockCounter: 1.08K (1080) - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 180.722ms - WaitBfTime: 815.67ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 430.206ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 946 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.944us - CompressTime: 0ns - ExecTime: 289.263ms - InputRows: 3.970013M (3970013) - LocalBytesSent: 68.15 MB - LocalSendTime: 18.422ms - LocalSentRows: 3.970013M (3970013) - MemoryUsage: - PeakMemoryUsage: 126.22 MB - MergeBlockTime: 0ns - OpenTime: 98.734us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.970013M (3970013) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 166.793ms - SplitBlockHashComputeTime: 66.300ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13212, 13276, 13340, 13404] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.140us - BlocksProduced: 1.08K (1080) - CloseTime: 233.489us - ExecTime: 678.640ms - KeyRangesNum: 0 - MaxScannerThreadNum: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 5 - OpenTime: 405.517us - ProcessConjunctTime: 80.902us - ProjectionTime: 346.640ms - RowsProduced: 3.970013M (3970013) - RowsRead: 6.041595M (6041595) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 585.382ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 315.379ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [247.489ms, 114.129ms, 155.687ms, 123.654ms, 3.179ms, ] - PerScannerRowsRead: [1.94M, 1.40M, 1.22M, 1.40M, 89.61K, ] - PerScannerWaitTime: [104.411ms, 199.014ms, 101.958ms, 89.657ms, 90.340ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 279.269ms - MemoryUsage: - FreeBlocks: 32.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.616ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42.123us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 720.584ms - ScannerCtxSchedTime: 585.357ms - ScannerFilterTime: 356.474ms - ScannerGetBlockTime: 286.736ms - ScannerInitTime: 202.467us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 14 SegmentIterator: - BitmapIndexFilterTimer: 6.80us - BlockConditionsFilteredBloomFilterTime: 11.844us - BlockConditionsFilteredDictTime: 37.413us - BlockConditionsFilteredTime: 320.331us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 201.974us - BlockInitSeekCount: 63 - BlockInitSeekTime: 74.995us - BlockInitTime: 671.418us - BlockLoadTime: 285.367ms - BlocksLoad: 1.578K (1578) - CachedPagesNum: 2.06K (2060) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.57K (1570) - FirstReadSeekTime: 661.503us - FirstReadTime: 13.476ms - IOTimer: 0ns - InvertedIndexFilterTime: 20.748us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 174.398ms - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 70.376ms - OutputIndexResultColumnTimer: 243.517us - RawRowsRead: 6.367469M (6367469) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 325.874K (325874) - RowsVectorPredInput: 6.367469M (6367469) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 60.662us - TotalPagesNum: 2.06K (2060) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.364ms PipelineXTask (index=3):(Active: 146.440ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 137.319ms - CloseTime: 198.97us - GetBlockTime: 1.932ms - OpenTime: 8.637ms - PrepareTime: 275.269us - SinkTime: 125.932ms - GetBlockCounter: 280 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.352ms - WaitBfTime: 607.332ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.451ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 256 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.732us - CompressTime: 0ns - ExecTime: 125.968ms - InputRows: 1.061733M (1061733) - LocalBytesSent: 18.23 MB - LocalSendTime: 1.902ms - LocalSentRows: 1.061733M (1061733) - MemoryUsage: - PeakMemoryUsage: 33.27 MB - MergeBlockTime: 0ns - OpenTime: 99.247us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.061733M (1061733) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 51.133ms - SplitBlockHashComputeTime: 47.590ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13214, 13278, 13342, 13406] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.843us - BlocksProduced: 280 - CloseTime: 176.428us - ExecTime: 220.126ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 8.714ms - ProcessConjunctTime: 99.519us - ProjectionTime: 86.45ms - RowsProduced: 1.061733M (1061733) - RowsRead: 1.061733M (1061733) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 93.159ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 123.280ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [4.132ms, 57.658ms, 32.895ms, 8.393ms, ] - PerScannerRowsRead: [97.35K, 567.70K, 211.66K, 185.02K, ] - PerScannerWaitTime: [43.786us, 92.003ms, 433.127us, 678.819us, ] - BlockConvertTime: 0ns - BlockFetchTime: 99.954ms - MemoryUsage: - FreeBlocks: 12.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.167ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.872us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 104.315ms - ScannerCtxSchedTime: 93.149ms - ScannerFilterTime: 281.226us - ScannerGetBlockTime: 102.632ms - ScannerInitTime: 8.454ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.634us - BlockConditionsFilteredBloomFilterTime: 10.223us - BlockConditionsFilteredDictTime: 47.594us - BlockConditionsFilteredTime: 190.384us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.66us - BlockInitSeekCount: 68 - BlockInitSeekTime: 76.823us - BlockInitTime: 439.40us - BlockLoadTime: 105.616ms - BlocksLoad: 292 - CachedPagesNum: 319 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 283 - FirstReadSeekTime: 175.455us - FirstReadTime: 2.522ms - IOTimer: 0ns - InvertedIndexFilterTime: 23.243us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 86.622ms - NumSegmentFiltered: 0 - NumSegmentTotal: 9 - OutputColumnTime: 12.376ms - OutputIndexResultColumnTimer: 80.989us - RawRowsRead: 1.132847M (1132847) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 71.114K (71114) - RowsVectorPredInput: 1.132847M (1132847) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 9.519us - TotalPagesNum: 319 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.786ms PipelineXTask (index=4):(Active: 70.42ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 69.473ms - CloseTime: 140.61us - GetBlockTime: 2.593ms - OpenTime: 153.144us - PrepareTime: 265.777us - SinkTime: 65.789ms - GetBlockCounter: 477 - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.871ms - WaitBfTime: 815.380ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 754.953ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 432 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.310us - CompressTime: 0ns - ExecTime: 65.775ms - InputRows: 1.804571M (1804571) - LocalBytesSent: 30.98 MB - LocalSendTime: 2.67ms - LocalSentRows: 1.804571M (1804571) - MemoryUsage: - PeakMemoryUsage: 57.89 MB - MergeBlockTime: 0ns - OpenTime: 89.788us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.804571M (1804571) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.934ms - SplitBlockHashComputeTime: 19.643ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13216, 13280, 13344] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.738us - BlocksProduced: 477 - CloseTime: 127.715us - ExecTime: 634.701ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 246.870us - ProcessConjunctTime: 24.888us - ProjectionTime: 176.783ms - RowsProduced: 1.804571M (1804571) - RowsRead: 2.558155M (2558155) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 279.422ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 454.903ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [289.153ms, 176.980ms, 160.660ms, ] - PerScannerRowsRead: [1.55M, 777.34K, 229.56K, ] - PerScannerWaitTime: [93.561ms, 93.667ms, 92.193ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 436.316ms - MemoryUsage: - FreeBlocks: 24.26 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.175ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.378us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 319.1ms - ScannerCtxSchedTime: 279.410ms - ScannerFilterTime: 176.151ms - ScannerGetBlockTime: 450.285ms - ScannerInitTime: 111.217us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 2.853us - BlockConditionsFilteredBloomFilterTime: 9.454us - BlockConditionsFilteredDictTime: 34.263us - BlockConditionsFilteredTime: 171.554us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 81.462us - BlockInitSeekCount: 41 - BlockInitSeekTime: 62.765us - BlockInitTime: 393.540us - BlockLoadTime: 441.919ms - BlocksLoad: 649 - CachedPagesNum: 666 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 642 - FirstReadSeekTime: 269.351us - FirstReadTime: 5.618ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.280us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 172.561ms - NumSegmentFiltered: 0 - NumSegmentTotal: 7 - OutputColumnTime: 223.527ms - OutputIndexResultColumnTimer: 111.245us - RawRowsRead: 2.5912M (2591200) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 33.045K (33045) - RowsVectorPredInput: 2.5912M (2591200) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 28.767us - TotalPagesNum: 666 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 12.309ms PipelineXTask (index=5):(Active: 130.156ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 129.476ms - CloseTime: 129.904us - GetBlockTime: 2.203ms - OpenTime: 286.46us - PrepareTime: 252.782us - SinkTime: 126.208ms - GetBlockCounter: 272 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 59.944ms - WaitBfTime: 621.830ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 882.413ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 249 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.650us - CompressTime: 0ns - ExecTime: 126.231ms - InputRows: 1.027992M (1027992) - LocalBytesSent: 17.65 MB - LocalSendTime: 1.495ms - LocalSentRows: 1.027992M (1027992) - MemoryUsage: - PeakMemoryUsage: 32.45 MB - MergeBlockTime: 0ns - OpenTime: 84.383us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.027992M (1027992) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 92.209ms - SplitBlockHashComputeTime: 9.485ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13218, 13282, 13346] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.11us - BlocksProduced: 272 - CloseTime: 115.330us - ExecTime: 206.349ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 373.156us - ProcessConjunctTime: 82.156us - ProjectionTime: 57.339ms - RowsProduced: 1.027992M (1027992) - RowsRead: 1.05764M (1057640) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 28.733ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 146.309ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [76.176ms, 4.738ms, 106.931ms, ] - PerScannerRowsRead: [605.84K, 124.18K, 327.62K, ] - PerScannerWaitTime: [12.544ms, 7.706ms, 8.482ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 177.24ms - MemoryUsage: - FreeBlocks: 16.45 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.24ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.884us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 111.269ms - ScannerCtxSchedTime: 28.727ms - ScannerFilterTime: 8.416ms - ScannerGetBlockTime: 179.277ms - ScannerInitTime: 164.141us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.792us - BlockConditionsFilteredBloomFilterTime: 8.497us - BlockConditionsFilteredDictTime: 39.764us - BlockConditionsFilteredTime: 154.708us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.425us - BlockInitSeekCount: 53 - BlockInitSeekTime: 67.320us - BlockInitTime: 357.612us - BlockLoadTime: 182.553ms - BlocksLoad: 287 - CachedPagesNum: 325 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 280 - FirstReadSeekTime: 162.635us - FirstReadTime: 2.637ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.808us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 73.725ms - NumSegmentFiltered: 0 - NumSegmentTotal: 7 - OutputColumnTime: 41.384ms - OutputIndexResultColumnTimer: 53.838us - RawRowsRead: 1.120833M (1120833) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 63.193K (63193) - RowsVectorPredInput: 1.120833M (1120833) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 9.454us - TotalPagesNum: 325 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 62.794ms PipelineXTask (index=6):(Active: 197.394ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 196.400ms - CloseTime: 163.45us - GetBlockTime: 16.98ms - OpenTime: 510.801us - PrepareTime: 307.508us - SinkTime: 178.38ms - GetBlockCounter: 680 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 115.938ms - WaitBfTime: 648.536ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 761.151ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 606 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.273us - CompressTime: 0ns - ExecTime: 177.982ms - InputRows: 2.53666M (2536660) - LocalBytesSent: 43.54 MB - LocalSendTime: 16.850ms - LocalSentRows: 2.53666M (2536660) - MemoryUsage: - PeakMemoryUsage: 80.38 MB - MergeBlockTime: 0ns - OpenTime: 104.15us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.53666M (2536660) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 107.976ms - SplitBlockHashComputeTime: 36.334ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13220, 13284, 13388] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.130us - BlocksProduced: 680 - CloseTime: 151.334us - ExecTime: 436.647ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 607.199us - ProcessConjunctTime: 155.606us - ProjectionTime: 228.97ms - RowsProduced: 2.53666M (2536660) - RowsRead: 3.473332M (3473332) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 115.24ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.579ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [154.977ms, 4.417ms, 213.886ms, 53.250ms, ] - PerScannerRowsRead: [1.12M, 117.83K, 2.01M, 222.67K, ] - PerScannerWaitTime: [8.343ms, 1.777ms, 99.856ms, 5.046ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 231.799ms - MemoryUsage: - FreeBlocks: 22.22 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 6.525ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.730us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 436.237ms - ScannerCtxSchedTime: 115.7ms - ScannerFilterTime: 189.984ms - ScannerGetBlockTime: 235.994ms - ScannerInitTime: 304.230us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 3.989us - BlockConditionsFilteredBloomFilterTime: 18.111us - BlockConditionsFilteredDictTime: 40.746us - BlockConditionsFilteredTime: 249.715us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 120.308us - BlockInitSeekCount: 56 - BlockInitSeekTime: 68.173us - BlockInitTime: 543.812us - BlockLoadTime: 238.884ms - BlocksLoad: 900 - CachedPagesNum: 1.019K (1019) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 893 - FirstReadSeekTime: 444.384us - FirstReadTime: 50.850ms - IOTimer: 0ns - InvertedIndexFilterTime: 23.992us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 137.792ms - NumSegmentFiltered: 0 - NumSegmentTotal: 7 - OutputColumnTime: 38.627ms - OutputIndexResultColumnTimer: 161.785us - RawRowsRead: 3.618684M (3618684) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 145.352K (145352) - RowsVectorPredInput: 3.618684M (3618684) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 36.158us - TotalPagesNum: 1.019K (1019) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 6.45ms PipelineXTask (index=7):(Active: 140.186ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 139.517ms - CloseTime: 146.878us - GetBlockTime: 1.798ms - OpenTime: 262.671us - PrepareTime: 246.56us - SinkTime: 136.802ms - GetBlockCounter: 219 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 53.655ms - WaitBfTime: 617.414ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 688.542ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 208 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.339us - CompressTime: 0ns - ExecTime: 136.851ms - InputRows: 847.308K (847308) - LocalBytesSent: 14.55 MB - LocalSendTime: 1.404ms - LocalSentRows: 847.308K (847308) - MemoryUsage: - PeakMemoryUsage: 26.69 MB - MergeBlockTime: 0ns - OpenTime: 101.757us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 847.308K (847308) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 120.477ms - SplitBlockHashComputeTime: 8.238ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s110ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13222, 13286, 13390] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.837us - BlocksProduced: 219 - CloseTime: 131.645us - ExecTime: 171.156ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 343.331us - ProcessConjunctTime: 43.454us - ProjectionTime: 103.946ms - RowsProduced: 847.308K (847308) - RowsRead: 847.308K (847308) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.78ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 64.929ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [79.269ms, 19.580ms, 103.198ms, ] - PerScannerRowsRead: [176.53K, 247.19K, 423.59K, ] - PerScannerWaitTime: [1.611ms, 2.326ms, 5.139ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 113.344ms - MemoryUsage: - FreeBlocks: 14.20 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.914ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.57us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 79.647ms - ScannerCtxSchedTime: 9.72ms - ScannerFilterTime: 180.420us - ScannerGetBlockTime: 201.751ms - ScannerInitTime: 152.629us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 2.922us - BlockConditionsFilteredBloomFilterTime: 9.26us - BlockConditionsFilteredDictTime: 36.466us - BlockConditionsFilteredTime: 150.421us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.151us - BlockInitSeekCount: 50 - BlockInitSeekTime: 86.441ms - BlockInitTime: 86.734ms - BlockLoadTime: 235.329ms - BlocksLoad: 225 - CachedPagesNum: 259 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 219 - FirstReadSeekTime: 119.540us - FirstReadTime: 1.881ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.675us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 135.756ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 8.501ms - OutputIndexResultColumnTimer: 59.551us - RawRowsRead: 883.173K (883173) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.865K (35865) - RowsVectorPredInput: 883.173K (883173) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.994us - TotalPagesNum: 259 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.130ms PipelineXTask (index=8):(Active: 334.421ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 333.573ms - CloseTime: 321.250us - GetBlockTime: 6.666ms - OpenTime: 260.583us - PrepareTime: 254.754us - SinkTime: 324.416ms - GetBlockCounter: 992 - NumBlockedBySinkTimes: 6 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 16 - NumScheduleTimes: 18 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 163.40ms - WaitBfTime: 615.956ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 652.842ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 848 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.229us - CompressTime: 0ns - ExecTime: 324.271ms - InputRows: 3.553951M (3553951) - LocalBytesSent: 61.01 MB - LocalSendTime: 21.103ms - LocalSentRows: 3.553951M (3553951) - MemoryUsage: - PeakMemoryUsage: 113.52 MB - MergeBlockTime: 0ns - OpenTime: 76.336us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.553951M (3553951) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 170.502ms - SplitBlockHashComputeTime: 76.352ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13224, 13328, 13392] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.882us - BlocksProduced: 992 - CloseTime: 299.603us - ExecTime: 753.90ms - KeyRangesNum: 0 - MaxScannerThreadNum: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 5 - OpenTime: 343.151us - ProcessConjunctTime: 75.151us - ProjectionTime: 467.821ms - RowsProduced: 3.553951M (3553951) - RowsRead: 6.316647M (6316647) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 28.52ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 277.872ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [5.488ms, 278.076ms, 300.987ms, 384.046ms, 68.433ms, ] - PerScannerRowsRead: [137.04K, 2.01M, 1.91M, 1.96M, 300.81K, ] - PerScannerWaitTime: [629.461us, 7.725ms, 5.443ms, 12.476ms, 1.777ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 488.18ms - MemoryUsage: - FreeBlocks: 35.79 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.780ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41.300us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 757.285ms - ScannerCtxSchedTime: 28.27ms - ScannerFilterTime: 543.611ms - ScannerGetBlockTime: 492.344ms - ScannerInitTime: 130.33us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 14 SegmentIterator: - BitmapIndexFilterTimer: 6.155us - BlockConditionsFilteredBloomFilterTime: 7.934us - BlockConditionsFilteredDictTime: 35.478us - BlockConditionsFilteredTime: 341.855us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 227.994us - BlockInitSeekCount: 62 - BlockInitSeekTime: 79.772us - BlockInitTime: 665.347us - BlockLoadTime: 492.41ms - BlocksLoad: 1.66K (1660) - CachedPagesNum: 2.285K (2285) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.653K (1653) - FirstReadSeekTime: 657.911us - FirstReadTime: 14.40ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.706us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 250.199ms - NumSegmentFiltered: 0 - NumSegmentTotal: 7 - OutputColumnTime: 207.738ms - OutputIndexResultColumnTimer: 237.914us - RawRowsRead: 6.699204M (6699204) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 382.557K (382557) - RowsVectorPredInput: 6.699204M (6699204) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 62.489us - TotalPagesNum: 2.285K (2285) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.551ms PipelineXTask (index=9):(Active: 39.878ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 39.251ms - CloseTime: 139.492us - GetBlockTime: 1.661ms - OpenTime: 175.60us - PrepareTime: 302.791us - SinkTime: 36.824ms - GetBlockCounter: 254 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.715ms - WaitBfTime: 861.403ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 674.603ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 233 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.533us - CompressTime: 0ns - ExecTime: 36.846ms - InputRows: 963.16K (963160) - LocalBytesSent: 16.53 MB - LocalSendTime: 1.125ms - LocalSentRows: 963.16K (963160) - MemoryUsage: - PeakMemoryUsage: 30.38 MB - MergeBlockTime: 0ns - OpenTime: 76.520us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 963.16K (963160) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.900ms - SplitBlockHashComputeTime: 9.975ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13226, 13330, 13394] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.853us - BlocksProduced: 254 - CloseTime: 124.890us - ExecTime: 480.840ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 286.192us - ProcessConjunctTime: 37.390us - ProjectionTime: 244.210ms - RowsProduced: 963.16K (963160) - RowsRead: 1.020759M (1020759) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 315.971ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 234.532ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [49.847ms, 148.912ms, 3.996ms, ] - PerScannerRowsRead: [284.54K, 667.27K, 68.95K, ] - PerScannerWaitTime: [101.949ms, 108.929ms, 105.092ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 165.839ms - MemoryUsage: - FreeBlocks: 15.61 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.128ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.576us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 129.31ms - ScannerCtxSchedTime: 315.965ms - ScannerFilterTime: 34.656ms - ScannerGetBlockTime: 167.957ms - ScannerInitTime: 114.550us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.770us - BlockConditionsFilteredBloomFilterTime: 10.626us - BlockConditionsFilteredDictTime: 31.461us - BlockConditionsFilteredTime: 171.239us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 85.340us - BlockInitSeekCount: 47 - BlockInitSeekTime: 59.222us - BlockInitTime: 382.20us - BlockLoadTime: 171.348ms - BlocksLoad: 275 - CachedPagesNum: 299 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 269 - FirstReadSeekTime: 139.606us - FirstReadTime: 2.541ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.14us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.917ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 96.231ms - OutputIndexResultColumnTimer: 49.598us - RawRowsRead: 1.082367M (1082367) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 61.608K (61608) - RowsVectorPredInput: 1.082367M (1082367) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 11.954us - TotalPagesNum: 299 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.589ms PipelineXTask (index=10):(Active: 528.141ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 527.162ms - CloseTime: 275.927us - GetBlockTime: 17.819ms - OpenTime: 443.966us - PrepareTime: 247.328us - SinkTime: 506.103ms - GetBlockCounter: 1.305K (1305) - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 222.892ms - WaitBfTime: 594.764ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 417.209ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.133K (1133) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.365us - CompressTime: 0ns - ExecTime: 505.848ms - InputRows: 4.765238M (4765238) - LocalBytesSent: 81.80 MB - LocalSendTime: 50.816ms - LocalSentRows: 4.765238M (4765238) - MemoryUsage: - PeakMemoryUsage: 151.71 MB - MergeBlockTime: 0ns - OpenTime: 68.806us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.765238M (4765238) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 328.590ms - SplitBlockHashComputeTime: 96.186ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s127ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13268, 13332, 13396] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.55us - BlocksProduced: 1.305K (1305) - CloseTime: 260.33us - ExecTime: 780.424ms - KeyRangesNum: 0 - MaxScannerThreadNum: 6 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 6 - OpenTime: 535.600us - ProcessConjunctTime: 104.680us - ProjectionTime: 598.513ms - RowsProduced: 4.765238M (4765238) - RowsRead: 7.892576M (7892576) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 168.687ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.185ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [292.166ms, 13.207ms, 220.423ms, 435.053ms, 3.177ms, 295.953ms, ] - PerScannerRowsRead: [2.00M, 336.56K, 1.97M, 1.91M, 81.77K, 1.59M, ] - PerScannerWaitTime: [11.322ms, 32.767us, 132.934ms, 10.404ms, 2.466ms, 11.527ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 731.874ms - MemoryUsage: - FreeBlocks: 33.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 7.409ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52.626us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 938.289ms - ScannerCtxSchedTime: 168.665ms - ScannerFilterTime: 520.274ms - ScannerGetBlockTime: 738.469ms - ScannerInitTime: 213.524us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 12.370us - BlockConditionsFilteredBloomFilterTime: 14.661us - BlockConditionsFilteredDictTime: 111.681us - BlockConditionsFilteredTime: 495.827us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 252.404us - BlockInitSeekCount: 79 - BlockInitSeekTime: 88.27us - BlockInitTime: 961.571us - BlockLoadTime: 739.380ms - BlocksLoad: 2.064K (2064) - CachedPagesNum: 2.662K (2662) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.055K (2055) - FirstReadSeekTime: 868.573us - FirstReadTime: 19.260ms - IOTimer: 0ns - InvertedIndexFilterTime: 30.65us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 438.336ms - NumSegmentFiltered: 0 - NumSegmentTotal: 9 - OutputColumnTime: 177.601ms - OutputIndexResultColumnTimer: 306.195us - RawRowsRead: 8.327434M (8327434) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 434.858K (434858) - RowsVectorPredInput: 8.327434M (8327434) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 93.974us - TotalPagesNum: 2.662K (2662) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 45.985ms PipelineXTask (index=11):(Active: 68.566ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 67.992ms - CloseTime: 133.977us - GetBlockTime: 2.140ms - OpenTime: 183.499us - PrepareTime: 245.441us - SinkTime: 64.936ms - GetBlockCounter: 260 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.749ms - WaitBfTime: 622.102ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 614.537ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 237 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.99us - CompressTime: 0ns - ExecTime: 64.964ms - InputRows: 994.485K (994485) - LocalBytesSent: 17.07 MB - LocalSendTime: 1.357ms - LocalSentRows: 994.485K (994485) - MemoryUsage: - PeakMemoryUsage: 31.34 MB - MergeBlockTime: 0ns - OpenTime: 82.683us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 994.485K (994485) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 46.653ms - SplitBlockHashComputeTime: 9.744ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.247ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 1.309ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 3s114ms - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 30.107ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=355. table name = WEBSTAT_USER_ACTION_FACT): - RuntimeFilters: : RuntimeFilter: (id = 108, type = minmax), RuntimeFilter: (id = 109, type = bloomfilter), - PushDownPredicates: [{USER_ID_TYPE IN [CUSTOMER_ID]}] - KeyRanges: ScanKeys:ScanKey=[2024-01-01 00:00:00 : 9999-12-31 23:59:59.999999] - TabletIds: [13270, 13334, 13398] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.177us - BlocksProduced: 260 - CloseTime: 115.395us - ExecTime: 333.377ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 264.592us - ProcessConjunctTime: 36.806us - ProjectionTime: 142.848ms - RowsProduced: 994.485K (994485) - RowsRead: 994.485K (994485) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 34.307ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 188.2ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 3.165178M (3165178) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 - always_true: 0 - expr_filtered_rows: 13.327431M (13327431) - expr_input_rows: 20.471506M (20471506) VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [11.641ms, 28.956ms, 93.354ms, ] - PerScannerRowsRead: [297.73K, 151.70K, 545.06K, ] - PerScannerWaitTime: [9.518ms, 11.556ms, 13.232ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 98.536ms - MemoryUsage: - FreeBlocks: 10.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.406ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.660us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 102.634ms - ScannerCtxSchedTime: 34.300ms - ScannerFilterTime: 268.416us - ScannerGetBlockTime: 133.529ms - ScannerInitTime: 108.322us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 2.627us - BlockConditionsFilteredBloomFilterTime: 9.224us - BlockConditionsFilteredDictTime: 26.200us - BlockConditionsFilteredTime: 136.78us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 54.465us - BlockInitSeekCount: 47 - BlockInitSeekTime: 61.218us - BlockInitTime: 359.930us - BlockLoadTime: 102.267ms - BlocksLoad: 267 - CachedPagesNum: 280 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 261 - FirstReadSeekTime: 137.581us - FirstReadTime: 2.468ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.867us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 85.34ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 11.113ms - OutputIndexResultColumnTimer: 56.469us - RawRowsRead: 1.046916M (1046916) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 52.431K (52431) - RowsVectorPredInput: 1.046916M (1046916) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 10.315us - TotalPagesNum: 280 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.525ms Fragment 15: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.41ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.801ms - CloseTime: 30.47us - GetBlockTime: 3.998ms - OpenTime: 4.493us - PrepareTime: 196.668us - SinkTime: 1.688ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.993ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.588ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.886us - CompressTime: 0ns - ExecTime: 1.790ms - InputRows: 13.252K (13252) - LocalBytesSent: 436.28 KB - LocalSendTime: 84.798us - LocalSentRows: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 96.848us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.252K (13252) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.118ms - SplitBlockHashComputeTime: 140.350us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.519ms - CloseTime: 2.544us - ExecTime: 3.841ms - HashTableComputeTime: 3.73ms - HashTableEmplaceTime: 2.597ms - HashTableInputCount: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.590us - ProjectionTime: 291.693us - RowsProduced: 13.252K (13252) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.806us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 147.847us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 516.00 KB - MemoryUsage: - Blocks: 340.00 KB - PeakMemoryUsage: 340.00 KB - OpenTime: 27.694us - ProjectionTime: 0ns - RowsProduced: 13.252K (13252) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s938ms PipelineXTask (index=1):(Active: 6.0ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.779ms - CloseTime: 42.253us - GetBlockTime: 4.15ms - OpenTime: 4.111us - PrepareTime: 167.423us - SinkTime: 1.653ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.942ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.788ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.113us - CompressTime: 0ns - ExecTime: 1.761ms - InputRows: 13.416K (13416) - LocalBytesSent: 441.71 KB - LocalSendTime: 84.172us - LocalSentRows: 13.416K (13416) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 89.363us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.416K (13416) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.110ms - SplitBlockHashComputeTime: 139.307us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.521ms - CloseTime: 2.124us - ExecTime: 3.889ms - HashTableComputeTime: 3.65ms - HashTableEmplaceTime: 2.590ms - HashTableInputCount: 13.416K (13416) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.590us - ProjectionTime: 340.723us - RowsProduced: 13.416K (13416) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.559us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 516.00 KB - MemoryUsage: - Blocks: 340.00 KB - PeakMemoryUsage: 340.00 KB - OpenTime: 21.889us - ProjectionTime: 0ns - RowsProduced: 13.416K (13416) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s929ms PipelineXTask (index=2):(Active: 5.963ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.771ms - CloseTime: 46.721us - GetBlockTime: 3.951ms - OpenTime: 3.446us - PrepareTime: 136.24us - SinkTime: 1.716ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.872ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.594ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.360us - CompressTime: 0ns - ExecTime: 1.799ms - InputRows: 13.381K (13381) - LocalBytesSent: 440.73 KB - LocalSendTime: 68.239us - LocalSentRows: 13.381K (13381) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 71.595us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.381K (13381) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.187ms - SplitBlockHashComputeTime: 146.318us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.491ms - CloseTime: 2.623us - ExecTime: 3.773ms - HashTableComputeTime: 3.24ms - HashTableEmplaceTime: 2.570ms - HashTableInputCount: 13.381K (13381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.770us - ProjectionTime: 253.747us - RowsProduced: 13.381K (13381) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 20.579us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 136.446us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 16.651us - ProjectionTime: 0ns - RowsProduced: 13.381K (13381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s933ms PipelineXTask (index=3):(Active: 6.70ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.871ms - CloseTime: 25.954us - GetBlockTime: 4.31ms - OpenTime: 3.29us - PrepareTime: 164.323us - SinkTime: 1.738ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.23ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.85ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.464us - CompressTime: 0ns - ExecTime: 1.818ms - InputRows: 13.144K (13144) - LocalBytesSent: 432.63 KB - LocalSendTime: 69.531us - LocalSentRows: 13.144K (13144) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 77.897us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.144K (13144) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.193ms - SplitBlockHashComputeTime: 158.494us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.571ms - CloseTime: 3.31us - ExecTime: 3.905ms - HashTableComputeTime: 3.128ms - HashTableEmplaceTime: 2.701ms - HashTableInputCount: 13.144K (13144) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.27us - ProjectionTime: 299.741us - RowsProduced: 13.144K (13144) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.935us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 114.806us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 514.00 KB - MemoryUsage: - Blocks: 338.00 KB - PeakMemoryUsage: 338.00 KB - OpenTime: 19.781us - ProjectionTime: 0ns - RowsProduced: 13.144K (13144) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s905ms PipelineXTask (index=4):(Active: 5.617ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.454ms - CloseTime: 21.928us - GetBlockTime: 3.740ms - OpenTime: 3.932us - PrepareTime: 130.424us - SinkTime: 1.612ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.582ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.518ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.596us - CompressTime: 0ns - ExecTime: 1.689ms - InputRows: 13.334K (13334) - LocalBytesSent: 438.87 KB - LocalSendTime: 53.343us - LocalSentRows: 13.334K (13334) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 73.661us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.334K (13334) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.121ms - SplitBlockHashComputeTime: 140.223us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.300ms - CloseTime: 3.463us - ExecTime: 3.613ms - HashTableComputeTime: 2.859ms - HashTableEmplaceTime: 2.404ms - HashTableInputCount: 13.334K (13334) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.473us - ProjectionTime: 288.813us - RowsProduced: 13.334K (13334) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 516.00 KB - MemoryUsage: - Blocks: 340.00 KB - PeakMemoryUsage: 340.00 KB - OpenTime: 17.107us - ProjectionTime: 0ns - RowsProduced: 13.334K (13334) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s909ms PipelineXTask (index=5):(Active: 6.290ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.82ms - CloseTime: 22.49us - GetBlockTime: 4.231ms - OpenTime: 3.360us - PrepareTime: 175.843us - SinkTime: 1.762ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.199ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.314ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.477us - CompressTime: 0ns - ExecTime: 1.848ms - InputRows: 13.342K (13342) - LocalBytesSent: 439.43 KB - LocalSendTime: 61.221us - LocalSentRows: 13.342K (13342) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 78.727us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.342K (13342) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.221ms - SplitBlockHashComputeTime: 144.809us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.767ms - CloseTime: 2.298us - ExecTime: 4.95ms - HashTableComputeTime: 3.313ms - HashTableEmplaceTime: 2.826ms - HashTableInputCount: 13.342K (13342) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.597us - ProjectionTime: 305.649us - RowsProduced: 13.342K (13342) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.917us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 138.318us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 46.62us - ProjectionTime: 0ns - RowsProduced: 13.342K (13342) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s927ms PipelineXTask (index=6):(Active: 4.814ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.627ms - CloseTime: 28.985us - GetBlockTime: 3.131ms - OpenTime: 3.860us - PrepareTime: 149.890us - SinkTime: 1.432ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.778ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.618ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.429us - CompressTime: 0ns - ExecTime: 1.521ms - InputRows: 13.352K (13352) - LocalBytesSent: 439.85 KB - LocalSendTime: 87.411us - LocalSentRows: 13.352K (13352) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 81.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.352K (13352) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 968.692us - SplitBlockHashComputeTime: 124.485us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 2.798ms - CloseTime: 2.448us - ExecTime: 3.39ms - HashTableComputeTime: 2.426ms - HashTableEmplaceTime: 1.991ms - HashTableInputCount: 13.352K (13352) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.608us - ProjectionTime: 219.420us - RowsProduced: 13.352K (13352) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.706us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 108.820us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 516.00 KB - MemoryUsage: - Blocks: 516.00 KB - PeakMemoryUsage: 516.00 KB - OpenTime: 19.792us - ProjectionTime: 0ns - RowsProduced: 13.352K (13352) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s875ms PipelineXTask (index=7):(Active: 5.951ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.776ms - CloseTime: 28.970us - GetBlockTime: 3.895ms - OpenTime: 5.33us - PrepareTime: 135.217us - SinkTime: 1.758ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.908ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.296ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.805us - CompressTime: 0ns - ExecTime: 1.839ms - InputRows: 13.464K (13464) - LocalBytesSent: 443.16 KB - LocalSendTime: 68.535us - LocalSentRows: 13.464K (13464) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 74.407us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.464K (13464) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.213ms - SplitBlockHashComputeTime: 136.320us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.468ms - CloseTime: 2.651us - ExecTime: 3.778ms - HashTableComputeTime: 3.29ms - HashTableEmplaceTime: 2.554ms - HashTableInputCount: 13.464K (13464) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.363us - ProjectionTime: 278.276us - RowsProduced: 13.464K (13464) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.527us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 115.693us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 26.494us - ProjectionTime: 0ns - RowsProduced: 13.464K (13464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s935ms PipelineXTask (index=8):(Active: 5.780ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 5.608ms - CloseTime: 21.934us - GetBlockTime: 3.781ms - OpenTime: 2.640us - PrepareTime: 142.135us - SinkTime: 1.742ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.718ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.174ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.940us - CompressTime: 0ns - ExecTime: 1.822ms - InputRows: 13.364K (13364) - LocalBytesSent: 440.01 KB - LocalSendTime: 59.356us - LocalSentRows: 13.364K (13364) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 75.629us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.364K (13364) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.219ms - SplitBlockHashComputeTime: 136.840us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.404ms - CloseTime: 2.398us - ExecTime: 3.661ms - HashTableComputeTime: 2.961ms - HashTableEmplaceTime: 2.506ms - HashTableInputCount: 13.364K (13364) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.731us - ProjectionTime: 236.70us - RowsProduced: 13.364K (13364) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.354us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.907us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 514.00 KB - MemoryUsage: - Blocks: 338.00 KB - PeakMemoryUsage: 338.00 KB - OpenTime: 16.491us - ProjectionTime: 0ns - RowsProduced: 13.364K (13364) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s930ms PipelineXTask (index=9):(Active: 6.241ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 6.61ms - CloseTime: 30.391us - GetBlockTime: 4.266ms - OpenTime: 2.426us - PrepareTime: 141.812us - SinkTime: 1.705ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.198ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.196ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.696us - CompressTime: 0ns - ExecTime: 1.786ms - InputRows: 13.162K (13162) - LocalBytesSent: 433.35 KB - LocalSendTime: 51.341us - LocalSentRows: 13.162K (13162) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 79.240us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.162K (13162) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.156ms - SplitBlockHashComputeTime: 180.148us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.835ms - CloseTime: 13.359us - ExecTime: 4.122ms - HashTableComputeTime: 3.385ms - HashTableEmplaceTime: 2.906ms - HashTableInputCount: 13.162K (13162) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.440us - ProjectionTime: 253.401us - RowsProduced: 13.162K (13162) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.816us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 504.00 KB - MemoryUsage: - Blocks: 328.00 KB - PeakMemoryUsage: 328.00 KB - OpenTime: 17.599us - ProjectionTime: 0ns - RowsProduced: 13.162K (13162) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s925ms PipelineXTask (index=10):(Active: 5.591ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.380ms - CloseTime: 29.859us - GetBlockTime: 3.732ms - OpenTime: 2.494us - PrepareTime: 172.705us - SinkTime: 1.575ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.482ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.18us - CompressTime: 0ns - ExecTime: 1.656ms - InputRows: 13.266K (13266) - LocalBytesSent: 436.85 KB - LocalSendTime: 54.727us - LocalSentRows: 13.266K (13266) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 76.597us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.266K (13266) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.69ms - SplitBlockHashComputeTime: 152.398us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.371ms - CloseTime: 11.83us - ExecTime: 3.651ms - HashTableComputeTime: 2.958ms - HashTableEmplaceTime: 2.508ms - HashTableInputCount: 13.266K (13266) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 25.650us - ProjectionTime: 228.810us - RowsProduced: 13.266K (13266) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.67us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 19.831us - ProjectionTime: 0ns - RowsProduced: 13.266K (13266) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s901ms PipelineXTask (index=11):(Active: 5.800ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.591ms - CloseTime: 28.858us - GetBlockTime: 3.750ms - OpenTime: 2.834us - PrepareTime: 172.192us - SinkTime: 1.755ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.758ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.895ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.123us - CompressTime: 0ns - ExecTime: 1.845ms - InputRows: 13.252K (13252) - LocalBytesSent: 436.51 KB - LocalSendTime: 120.755us - LocalSentRows: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 81.449us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.252K (13252) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.156ms - SplitBlockHashComputeTime: 134.272us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=353): - BlocksProduced: 0 - BuildTime: 3.319ms - CloseTime: 2.781us - ExecTime: 3.616ms - HashTableComputeTime: 2.882ms - HashTableEmplaceTime: 2.428ms - HashTableInputCount: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.515us - ProjectionTime: 274.185us - RowsProduced: 13.252K (13252) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.449us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 40.933us - ProjectionTime: 0ns - RowsProduced: 13.252K (13252) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s937ms Fragment 16: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 174.324ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 174.63ms - CloseTime: 47.696us - GetBlockTime: 166.194ms - OpenTime: 12.277us - PrepareTime: 192.299us - SinkTime: 6.492ms - GetBlockCounter: 427 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.633ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 636.704ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.662us - CompressTime: 0ns - ExecTime: 6.414ms - InputRows: 14.231K (14231) - LocalBytesSent: 343.38 KB - LocalSendTime: 64.65us - LocalSentRows: 14.231K (14231) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 88.240us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 14.231K (14231) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.848ms - SplitBlockHashComputeTime: 1.189ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.792ms - CloseTime: 1.713us - ExecTime: 7.12ms - HashTableComputeTime: 5.766ms - HashTableEmplaceTime: 4.923ms - HashTableInputCount: 15.025K (15025) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.746us - ProjectionTime: 0ns - RowsProduced: 14.231K (14231) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 419 - BuildOutputBlock: 0ns - CloseTime: 31.137us - ExecTime: 146.539ms - InitProbeSideTime: 34.267ms - JoinFilterTimer: 45.566us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 19.323us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 53.587us - ProbeFindNextTime: 0ns - ProbeRows: 1.672625M (1672625) - ProbeTime: 144.242ms - ProbeWhenBuildSideOutputTime: 4.553ms - ProbeWhenProbeSideOutputTime: 1.374ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 76.225ms - ProjectionTime: 1.39ms - RowsProduced: 15.025K (15025) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 420 - CloseTime: 0ns - ExecTime: 12.34ms - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 13.33 MB - OpenTime: 1000ns - ProjectionTime: 0ns - RowsProduced: 1.672625M (1672625) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 771.266ms PipelineXTask (index=3):(Active: 136.292ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 136.62ms - CloseTime: 28.543us - GetBlockTime: 127.595ms - OpenTime: 7.830us - PrepareTime: 186.86us - SinkTime: 6.944ms - GetBlockCounter: 431 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.505ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 614.107ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.634us - CompressTime: 0ns - ExecTime: 6.859ms - InputRows: 13.212K (13212) - LocalBytesSent: 318.92 KB - LocalSendTime: 66.648us - LocalSentRows: 13.212K (13212) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 70.383us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.212K (13212) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.227ms - SplitBlockHashComputeTime: 1.318ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.687ms - CloseTime: 2.35us - ExecTime: 7.22ms - HashTableComputeTime: 5.563ms - HashTableEmplaceTime: 4.772ms - HashTableInputCount: 14.239K (14239) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.797us - ProjectionTime: 0ns - RowsProduced: 13.212K (13212) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 417 - BuildOutputBlock: 0ns - CloseTime: 12.788us - ExecTime: 118.464ms - InitProbeSideTime: 31.972ms - JoinFilterTimer: 46.478us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 14.869us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 53.332us - ProbeFindNextTime: 0ns - ProbeRows: 1.657691M (1657691) - ProbeTime: 116.139ms - ProbeWhenBuildSideOutputTime: 4.178ms - ProbeWhenProbeSideOutputTime: 1.351ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 74.617ms - ProjectionTime: 1.123ms - RowsProduced: 14.239K (14239) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s341ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 418 - CloseTime: 0ns - ExecTime: 1.422ms - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 11.11 MB - OpenTime: 834ns - ProjectionTime: 0ns - RowsProduced: 1.657691M (1657691) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 827.739ms PipelineXTask (index=6):(Active: 132.250ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 132.1ms - CloseTime: 21.465us - GetBlockTime: 124.748ms - OpenTime: 6.740us - PrepareTime: 210.648us - SinkTime: 5.986ms - GetBlockCounter: 430 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.590ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 492.504ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.161us - CompressTime: 0ns - ExecTime: 5.962ms - InputRows: 13.807K (13807) - LocalBytesSent: 333.57 KB - LocalSendTime: 44.809us - LocalSentRows: 13.807K (13807) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 106.530us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.807K (13807) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.632ms - SplitBlockHashComputeTime: 1.158ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.97ms - CloseTime: 1.946us - ExecTime: 6.289ms - HashTableComputeTime: 5.146ms - HashTableEmplaceTime: 4.389ms - HashTableInputCount: 14.692K (14692) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.431us - ProjectionTime: 0ns - RowsProduced: 13.807K (13807) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 417 - BuildOutputBlock: 0ns - CloseTime: 7.334us - ExecTime: 116.482ms - InitProbeSideTime: 50.757ms - JoinFilterTimer: 37.896us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.719us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 48.333us - ProbeFindNextTime: 0ns - ProbeRows: 1.662731M (1662731) - ProbeTime: 114.502ms - ProbeWhenBuildSideOutputTime: 3.961ms - ProbeWhenProbeSideOutputTime: 1.282ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 55.384ms - ProjectionTime: 868.735us - RowsProduced: 14.692K (14692) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s409ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 417 - CloseTime: 0ns - ExecTime: 1.356ms - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 14.94 MB - OpenTime: 783ns - ProjectionTime: 0ns - RowsProduced: 1.662731M (1662731) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 842.97ms PipelineXTask (index=9):(Active: 201.276ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 200.996ms - CloseTime: 55.29us - GetBlockTime: 176.29ms - OpenTime: 4.43us - PrepareTime: 209.27us - SinkTime: 23.441ms - GetBlockCounter: 435 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 22 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 114.917ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.174ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.586us - CompressTime: 0ns - ExecTime: 23.409ms - InputRows: 13.9K (13900) - LocalBytesSent: 335.10 KB - LocalSendTime: 56.497us - LocalSentRows: 13.9K (13900) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 84.962us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.9K (13900) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.916ms - SplitBlockHashComputeTime: 1.223ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 50.139ms - CloseTime: 20.849us - ExecTime: 50.401ms - HashTableComputeTime: 49.23ms - HashTableEmplaceTime: 35.107ms - HashTableInputCount: 14.836K (14836) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.84us - ProjectionTime: 0ns - RowsProduced: 13.9K (13900) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 416 - BuildOutputBlock: 0ns - CloseTime: 11.858us - ExecTime: 123.554ms - InitProbeSideTime: 29.877ms - JoinFilterTimer: 43.854us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.900us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.316us - ProbeFindNextTime: 0ns - ProbeRows: 1.654354M (1654354) - ProbeTime: 121.411ms - ProbeWhenBuildSideOutputTime: 4.159ms - ProbeWhenProbeSideOutputTime: 1.319ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 82.705ms - ProjectionTime: 972.511us - RowsProduced: 14.836K (14836) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s409ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 417 - CloseTime: 0ns - ExecTime: 1.406ms - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 15.90 MB - OpenTime: 775ns - ProjectionTime: 0ns - RowsProduced: 1.654354M (1654354) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 929.899ms PipelineXTask (index=12):(Active: 104.646ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 104.405ms - CloseTime: 39.925us - GetBlockTime: 96.983ms - OpenTime: 4.770us - PrepareTime: 188.124us - SinkTime: 6.163ms - GetBlockCounter: 429 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.518ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 488.299ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.945us - CompressTime: 0ns - ExecTime: 6.124ms - InputRows: 12.657K (12657) - LocalBytesSent: 306.04 KB - LocalSendTime: 54.977us - LocalSentRows: 12.657K (12657) - MemoryUsage: - PeakMemoryUsage: 504.00 KB - MergeBlockTime: 0ns - OpenTime: 100.982us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.657K (12657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.26ms - SplitBlockHashComputeTime: 1.56ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 5.850ms - CloseTime: 1.896us - ExecTime: 6.96ms - HashTableComputeTime: 4.907ms - HashTableEmplaceTime: 4.176ms - HashTableInputCount: 13.812K (13812) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.80us - ProjectionTime: 0ns - RowsProduced: 12.657K (12657) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 415 - BuildOutputBlock: 0ns - CloseTime: 24.779us - ExecTime: 88.999ms - InitProbeSideTime: 27.629ms - JoinFilterTimer: 36.64us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 15.778us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 64.316us - ProbeFindNextTime: 0ns - ProbeRows: 1.642018M (1642018) - ProbeTime: 87.71ms - ProbeWhenBuildSideOutputTime: 3.699ms - ProbeWhenProbeSideOutputTime: 1.232ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.339ms - ProjectionTime: 818.163us - RowsProduced: 13.812K (13812) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s440ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 415 - CloseTime: 0ns - ExecTime: 1.263ms - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 22.80 MB - OpenTime: 907ns - ProjectionTime: 0ns - RowsProduced: 1.642018M (1642018) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 843.747ms PipelineXTask (index=15):(Active: 205.296ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 205.47ms - CloseTime: 47.280us - GetBlockTime: 196.818ms - OpenTime: 11.785us - PrepareTime: 179.251us - SinkTime: 6.704ms - GetBlockCounter: 431 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 113.395ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 295.591ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.873us - CompressTime: 0ns - ExecTime: 6.644ms - InputRows: 12.601K (12601) - LocalBytesSent: 304.46 KB - LocalSendTime: 50.892us - LocalSentRows: 12.601K (12601) - MemoryUsage: - PeakMemoryUsage: 466.00 KB - MergeBlockTime: 0ns - OpenTime: 92.885us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.601K (12601) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.22ms - SplitBlockHashComputeTime: 1.303ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 35.556ms - CloseTime: 2.677us - ExecTime: 35.811ms - HashTableComputeTime: 21.427ms - HashTableEmplaceTime: 20.339ms - HashTableInputCount: 13.395K (13395) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.355us - ProjectionTime: 0ns - RowsProduced: 12.601K (12601) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 415 - BuildOutputBlock: 0ns - CloseTime: 20.244us - ExecTime: 158.923ms - InitProbeSideTime: 29.606ms - JoinFilterTimer: 45.431us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.268us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 56.37us - ProbeFindNextTime: 0ns - ProbeRows: 1.637897M (1637897) - ProbeTime: 156.602ms - ProbeWhenBuildSideOutputTime: 27.945ms - ProbeWhenProbeSideOutputTime: 1.339ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 94.194ms - ProjectionTime: 1.114ms - RowsProduced: 13.395K (13395) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s442ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 415 - CloseTime: 0ns - ExecTime: 1.387ms - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 16.84 MB - OpenTime: 4.875us - ProjectionTime: 0ns - RowsProduced: 1.637897M (1637897) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 935.62ms PipelineXTask (index=18):(Active: 142.574ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 142.345ms - CloseTime: 36.662us - GetBlockTime: 133.573ms - OpenTime: 3.954us - PrepareTime: 181.366us - SinkTime: 7.454ms - GetBlockCounter: 419 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 123.917ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 672.135ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.980us - CompressTime: 0ns - ExecTime: 7.369ms - InputRows: 12.942K (12942) - LocalBytesSent: 312.76 KB - LocalSendTime: 95.513us - LocalSentRows: 12.942K (12942) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 88.287us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.942K (12942) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.755ms - SplitBlockHashComputeTime: 1.346ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 10.458ms - CloseTime: 1.918us - ExecTime: 10.792ms - HashTableComputeTime: 9.292ms - HashTableEmplaceTime: 8.402ms - HashTableInputCount: 14.196K (14196) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.694us - ProjectionTime: 0ns - RowsProduced: 12.942K (12942) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 414 - BuildOutputBlock: 0ns - CloseTime: 14.200us - ExecTime: 120.604ms - InitProbeSideTime: 32.795ms - JoinFilterTimer: 45.418us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 14.776us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.708us - ProbeFindNextTime: 0ns - ProbeRows: 1.644468M (1644468) - ProbeTime: 118.358ms - ProbeWhenBuildSideOutputTime: 4.555ms - ProbeWhenProbeSideOutputTime: 1.426ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 75.175ms - ProjectionTime: 1.15ms - RowsProduced: 14.196K (14196) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s440ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 414 - CloseTime: 0ns - ExecTime: 1.453ms - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 25.41 MB - OpenTime: 999ns - ProjectionTime: 0ns - RowsProduced: 1.644468M (1644468) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 705.667ms PipelineXTask (index=21):(Active: 154.132ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 153.891ms - CloseTime: 54.603us - GetBlockTime: 145.724ms - OpenTime: 8.112us - PrepareTime: 170.285us - SinkTime: 6.675ms - GetBlockCounter: 425 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.560ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 625.203ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.388us - CompressTime: 0ns - ExecTime: 6.628ms - InputRows: 13.263K (13263) - LocalBytesSent: 320.48 KB - LocalSendTime: 52.474us - LocalSentRows: 13.263K (13263) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 81.580us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.263K (13263) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.43ms - SplitBlockHashComputeTime: 1.339ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 15.167ms - CloseTime: 3.57us - ExecTime: 15.419ms - HashTableComputeTime: 14.113ms - HashTableEmplaceTime: 13.297ms - HashTableInputCount: 14.092K (14092) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.352us - ProjectionTime: 0ns - RowsProduced: 13.263K (13263) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 414 - BuildOutputBlock: 0ns - CloseTime: 38.271us - ExecTime: 128.166ms - InitProbeSideTime: 31.703ms - JoinFilterTimer: 43.373us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.927us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 67.194us - ProbeFindNextTime: 0ns - ProbeRows: 1.643242M (1643242) - ProbeTime: 125.902ms - ProbeWhenBuildSideOutputTime: 4.197ms - ProbeWhenProbeSideOutputTime: 1.297ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 85.195ms - ProjectionTime: 1.3ms - RowsProduced: 14.092K (14092) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s360ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 414 - CloseTime: 0ns - ExecTime: 1.430ms - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 14.14 MB - OpenTime: 977ns - ProjectionTime: 0ns - RowsProduced: 1.643242M (1643242) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 738.44ms PipelineXTask (index=24):(Active: 124.433ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 124.201ms - CloseTime: 25.738us - GetBlockTime: 117.189ms - OpenTime: 6.334us - PrepareTime: 193.78us - SinkTime: 5.747ms - GetBlockCounter: 421 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.587ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 493.884ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.675us - CompressTime: 0ns - ExecTime: 5.715ms - InputRows: 12.731K (12731) - LocalBytesSent: 306.45 KB - LocalSendTime: 47.807us - LocalSentRows: 12.731K (12731) - MemoryUsage: - PeakMemoryUsage: 514.00 KB - MergeBlockTime: 0ns - OpenTime: 83.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.731K (12731) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.520ms - SplitBlockHashComputeTime: 1.174ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 12.662ms - CloseTime: 1.586us - ExecTime: 12.893ms - HashTableComputeTime: 11.766ms - HashTableEmplaceTime: 11.75ms - HashTableInputCount: 13.578K (13578) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.410us - ProjectionTime: 0ns - RowsProduced: 12.731K (12731) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 412 - BuildOutputBlock: 0ns - CloseTime: 10.599us - ExecTime: 102.288ms - InitProbeSideTime: 29.302ms - JoinFilterTimer: 44.706us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 16.726us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 55.475us - ProbeFindNextTime: 0ns - ProbeRows: 1.629004M (1629004) - ProbeTime: 100.388ms - ProbeWhenBuildSideOutputTime: 3.855ms - ProbeWhenProbeSideOutputTime: 1.172ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 63.99ms - ProjectionTime: 796.174us - RowsProduced: 13.578K (13578) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s439ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 412 - CloseTime: 0ns - ExecTime: 1.419ms - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 16.02 MB - OpenTime: 898ns - ProjectionTime: 0ns - RowsProduced: 1.629004M (1629004) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 820.189ms PipelineXTask (index=27):(Active: 175.935ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 175.709ms - CloseTime: 31.358us - GetBlockTime: 168.295ms - OpenTime: 5.432us - PrepareTime: 180.546us - SinkTime: 6.196ms - GetBlockCounter: 418 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 109.720ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 538.967ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.59us - CompressTime: 0ns - ExecTime: 6.165ms - InputRows: 13.41K (13410) - LocalBytesSent: 323.86 KB - LocalSendTime: 71.928us - LocalSentRows: 13.41K (13410) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 78.630us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.41K (13410) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.913ms - SplitBlockHashComputeTime: 1.162ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.440ms - CloseTime: 1.940us - ExecTime: 6.694ms - HashTableComputeTime: 5.431ms - HashTableEmplaceTime: 4.659ms - HashTableInputCount: 14.505K (14505) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.783us - ProjectionTime: 0ns - RowsProduced: 13.41K (13410) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 411 - BuildOutputBlock: 0ns - CloseTime: 11.114us - ExecTime: 159.640ms - InitProbeSideTime: 54.462ms - JoinFilterTimer: 40.282us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.760us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.21us - ProbeFindNextTime: 0ns - ProbeRows: 1.630835M (1630835) - ProbeTime: 157.648ms - ProbeWhenBuildSideOutputTime: 3.941ms - ProbeWhenProbeSideOutputTime: 1.340ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 94.218ms - ProjectionTime: 899.802us - RowsProduced: 14.505K (14505) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s412ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 411 - CloseTime: 0ns - ExecTime: 1.386ms - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 18.64 MB - OpenTime: 899ns - ProjectionTime: 0ns - RowsProduced: 1.630835M (1630835) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 748.525ms PipelineXTask (index=30):(Active: 138.149ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 137.908ms - CloseTime: 50.60us - GetBlockTime: 129.428ms - OpenTime: 7.363us - PrepareTime: 176.160us - SinkTime: 6.989ms - GetBlockCounter: 424 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.280ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 580.397ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.782us - CompressTime: 0ns - ExecTime: 6.929ms - InputRows: 13.515K (13515) - LocalBytesSent: 326.16 KB - LocalSendTime: 90.38us - LocalSentRows: 13.515K (13515) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 85.124us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.515K (13515) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.260ms - SplitBlockHashComputeTime: 1.256ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.860ms - CloseTime: 11.160us - ExecTime: 7.249ms - HashTableComputeTime: 5.742ms - HashTableEmplaceTime: 4.965ms - HashTableInputCount: 14.459K (14459) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.417us - ProjectionTime: 0ns - RowsProduced: 13.515K (13515) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 410 - BuildOutputBlock: 0ns - CloseTime: 19.977us - ExecTime: 119.928ms - InitProbeSideTime: 47.305ms - JoinFilterTimer: 41.130us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.8us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 58.932us - ProbeFindNextTime: 0ns - ProbeRows: 1.628938M (1628938) - ProbeTime: 117.637ms - ProbeWhenBuildSideOutputTime: 4.507ms - ProbeWhenProbeSideOutputTime: 1.385ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 60.549ms - ProjectionTime: 1.101ms - RowsProduced: 14.459K (14459) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s319ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 411 - CloseTime: 0ns - ExecTime: 1.488ms - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 11.39 MB - OpenTime: 900ns - ProjectionTime: 0ns - RowsProduced: 1.628938M (1628938) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 855.374ms PipelineXTask (index=33):(Active: 125.382ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 125.82ms - CloseTime: 42.549us - GetBlockTime: 117.75ms - OpenTime: 5.750us - PrepareTime: 235.946us - SinkTime: 6.713ms - GetBlockCounter: 419 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.762ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 613.619ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.765us - CompressTime: 0ns - ExecTime: 6.727ms - InputRows: 13.46K (13460) - LocalBytesSent: 324.34 KB - LocalSendTime: 76.134us - LocalSentRows: 13.46K (13460) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 129.130us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.46K (13460) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.358ms - SplitBlockHashComputeTime: 1.199ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.181ms - CloseTime: 2.694us - ExecTime: 6.498ms - HashTableComputeTime: 5.215ms - HashTableEmplaceTime: 4.446ms - HashTableInputCount: 14.396K (14396) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.503us - ProjectionTime: 0ns - RowsProduced: 13.46K (13460) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 408 - BuildOutputBlock: 0ns - CloseTime: 21.413us - ExecTime: 108.460ms - InitProbeSideTime: 28.957ms - JoinFilterTimer: 43.553us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 27.102us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 60.807us - ProbeFindNextTime: 0ns - ProbeRows: 1.625142M (1625142) - ProbeTime: 106.383ms - ProbeWhenBuildSideOutputTime: 4.130ms - ProbeWhenProbeSideOutputTime: 1.364ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 68.176ms - ProjectionTime: 958.100us - RowsProduced: 14.396K (14396) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s359ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 409 - CloseTime: 0ns - ExecTime: 1.453ms - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 11.40 MB - OpenTime: 992ns - ProjectionTime: 0ns - RowsProduced: 1.625142M (1625142) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 820.318ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 4.946ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.543ms - CloseTime: 99.986us - GetBlockTime: 3.277ms - OpenTime: 116.876us - PrepareTime: 176.429us - SinkTime: 581.185us - GetBlockCounter: 422 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.824ms - WaitBfTime: 815.525ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 757.338ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 525.890us - InputRows: 1.645439M (1645439) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.557us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.651us - BlocksProduced: 422 - CloseTime: 97.26us - ExecTime: 282.782ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 237.905us - ProcessConjunctTime: 33.648us - ProjectionTime: 0ns - RowsProduced: 1.645439M (1645439) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 313.300ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 279.214ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 2.676388M (2676388) - expr_input_rows: 3.831857M (3831857) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 3.15365M (3153650) - expr_input_rows: 3.620529M (3620529) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [149.690ms, 229.220ms, 125.263ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [103.738ms, 103.329ms, 106.232ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 287.547ms - MemoryUsage: - FreeBlocks: 30.30 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.197ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.25us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 349.90ms - ScannerCtxSchedTime: 313.279ms - ScannerFilterTime: 213.222ms - ScannerGetBlockTime: 290.341ms - ScannerInitTime: 47.573us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 6.101us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 21.299us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 33.276us - BlockInitTime: 341.180us - BlockLoadTime: 288.902ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 1.221K (1221) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 1.188ms - FirstReadTime: 283.718ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.87us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 300.763us - OutputIndexResultColumnTimer: 145.61us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.221K (1221) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 5.863ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.458ms - CloseTime: 89.963us - GetBlockTime: 3.367ms - OpenTime: 118.708us - PrepareTime: 186.560us - SinkTime: 1.340ms - GetBlockCounter: 729 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.742ms - WaitBfTime: 617.662ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 724.529ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.234ms - InputRows: 2.89375M (2893750) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.556us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.653us - BlocksProduced: 729 - CloseTime: 86.875us - ExecTime: 408.111ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 240.954us - ProcessConjunctTime: 19.430us - ProjectionTime: 0ns - RowsProduced: 2.89375M (2893750) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 150.630ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 404.495ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 1.488411M (1488411) - expr_input_rows: 2.523778M (2523778) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 1.90526M (1905260) - expr_input_rows: 2.31245M (2312450) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [265.519ms, 441.756ms, 37.281ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [107.996ms, 26.374ms, 16.260ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 493.673ms - MemoryUsage: - FreeBlocks: 25.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.83ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.550us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 353.456ms - ScannerCtxSchedTime: 150.606ms - ScannerFilterTime: 247.114ms - ScannerGetBlockTime: 496.797ms - ScannerInitTime: 52.282us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 3.162us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.56us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 28.969us - BlockInitTime: 188.475us - BlockLoadTime: 494.976ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 1.208K (1208) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 1.612ms - FirstReadTime: 479.665ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.528us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 390.953us - OutputIndexResultColumnTimer: 173.288us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.208K (1208) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 5.619ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.171ms - CloseTime: 79.619us - GetBlockTime: 3.343ms - OpenTime: 178.960us - PrepareTime: 177.816us - SinkTime: 1.195ms - GetBlockCounter: 664 - NumBlockedBySinkTimes: 6 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.485ms - WaitBfTime: 617.730ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s8ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.114ms - InputRows: 2.688358M (2688358) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.580us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.774us - BlocksProduced: 664 - CloseTime: 75.542us - ExecTime: 181.106ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 289.749us - ProcessConjunctTime: 27.330us - ProjectionTime: 0ns - RowsProduced: 2.688358M (2688358) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 155.630ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 177.458ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 756.563K (756563) - expr_input_rows: 1.020192M (1020192) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 783.806K (783806) - expr_input_rows: 812.928K (812928) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [234.316ms, 64.405ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [70.023ms, 85.606ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 268.456ms - MemoryUsage: - FreeBlocks: 20.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 890.780us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 18.416us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 134.225ms - ScannerCtxSchedTime: 155.617ms - ScannerFilterTime: 26.977ms - ScannerGetBlockTime: 271.282ms - ScannerInitTime: 105.337us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.516us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.359us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 51.380us - BlockInitTime: 228.378us - BlockLoadTime: 269.738ms - BlocksLoad: 865 - CachedPagesNum: 539 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 1.320ms - FirstReadTime: 259.525ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.873us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 196.461us - OutputIndexResultColumnTimer: 105.771us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 539 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 4.255ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.813ms - CloseTime: 89.224us - GetBlockTime: 2.763ms - OpenTime: 187.720us - PrepareTime: 155.861us - SinkTime: 431.606us - GetBlockCounter: 325 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.146ms - WaitBfTime: 649.14ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 565.743ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 391.103us - InputRows: 1.316345M (1316345) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.510us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.823us - BlocksProduced: 325 - CloseTime: 85.590us - ExecTime: 178.774ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 282.584us - ProcessConjunctTime: 40.732us - ProjectionTime: 0ns - RowsProduced: 1.316345M (1316345) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 29.611ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 175.677ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 2.073953M (2073953) - expr_input_rows: 2.447998M (2447998) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 2.155777M (2155777) - expr_input_rows: 2.24073M (2240730) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [186.816ms, 137.835ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [14.643ms, 14.967ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 159.741ms - MemoryUsage: - FreeBlocks: 23.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.205ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.617us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 151.71ms - ScannerCtxSchedTime: 29.604ms - ScannerFilterTime: 142.269ms - ScannerGetBlockTime: 182.29ms - ScannerInitTime: 115.103us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.865us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.829us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 41.72us - BlockInitTime: 20.414ms - BlockLoadTime: 181.71ms - BlocksLoad: 863 - CachedPagesNum: 537 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 1.231ms - FirstReadTime: 139.984ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.138us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 192.283us - OutputIndexResultColumnTimer: 68.815us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 537 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=13):(Active: 3.135ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.738ms - CloseTime: 50.63us - GetBlockTime: 1.646ms - OpenTime: 152.687us - PrepareTime: 176.949us - SinkTime: 499.399us - GetBlockCounter: 323 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.58ms - WaitBfTime: 625.532ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 689.315ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 458.639us - InputRows: 1.195173M (1195173) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.500us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.921us - BlocksProduced: 323 - CloseTime: 47.58us - ExecTime: 442.898ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 257.469us - ProcessConjunctTime: 33.4us - ProjectionTime: 0ns - RowsProduced: 1.195173M (1195173) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 110.684ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 440.983ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 580.241K (580241) - expr_input_rows: 1.751795M (1751795) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 1.064622M (1064622) - expr_input_rows: 1.544531M (1544531) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [323.316ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [110.684ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 187.31ms - MemoryUsage: - FreeBlocks: 13.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.180ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.41us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 175.266ms - ScannerCtxSchedTime: 110.668ms - ScannerFilterTime: 134.767ms - ScannerGetBlockTime: 188.263ms - ScannerInitTime: 83.61us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 766ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.823us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.440us - BlockInitTime: 67.273us - BlockLoadTime: 187.893ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 949.327us - FirstReadTime: 171.265ms - IOTimer: 0ns - InvertedIndexFilterTime: 928ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 183.848us - OutputIndexResultColumnTimer: 64.939us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 870 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=16):(Active: 3.31ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.714ms - CloseTime: 42.314us - GetBlockTime: 1.772ms - OpenTime: 87.252us - PrepareTime: 176.650us - SinkTime: 418.8us - GetBlockCounter: 244 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.948ms - WaitBfTime: 625.765ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 675.786ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 385.863us - InputRows: 878.741K (878741) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.479us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.117us - BlocksProduced: 244 - CloseTime: 39.588us - ExecTime: 505.519ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 194.992us - ProcessConjunctTime: 15.145us - ProjectionTime: 0ns - RowsProduced: 878.741K (878741) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 21.467ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 503.545ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 830.986K (830986) - expr_input_rows: 2.129737M (2129737) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 1.381043M (1381043) - expr_input_rows: 1.922473M (1922473) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [474.434ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [21.467ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 282.125ms - MemoryUsage: - FreeBlocks: 12.98 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.42ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.132us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 187.206ms - ScannerCtxSchedTime: 21.452ms - ScannerFilterTime: 190.694ms - ScannerGetBlockTime: 283.428ms - ScannerInitTime: 46.356us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 806ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.876us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.156us - BlockInitTime: 66.891us - BlockLoadTime: 282.838ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 967.934us - FirstReadTime: 256.467ms - IOTimer: 0ns - InvertedIndexFilterTime: 973ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 167.347us - OutputIndexResultColumnTimer: 63.594us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 870 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=19):(Active: 2.74ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.690ms - CloseTime: 59.243us - GetBlockTime: 985.471us - OpenTime: 109.179us - PrepareTime: 205.973us - SinkTime: 331.576us - GetBlockCounter: 152 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.969ms - WaitBfTime: 616.194ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 379.782ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 313.216us - InputRows: 601.53K (601530) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.127us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.849us - BlocksProduced: 152 - CloseTime: 55.956us - ExecTime: 196.126ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 230.182us - ProcessConjunctTime: 19.709us - ProjectionTime: 0ns - RowsProduced: 601.53K (601530) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.519ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.874ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 167.233K (167233) - expr_input_rows: 588.175K (588175) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 275.189K (275189) - expr_input_rows: 380.911K (380911) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [183.608ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [7.519ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 147.262ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 679.996us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.227us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 89.958ms - ScannerCtxSchedTime: 7.513ms - ScannerFilterTime: 35.599ms - ScannerGetBlockTime: 147.890ms - ScannerInitTime: 53.621us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 367ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.436us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 8.653us - BlockInitTime: 35.960us - BlockLoadTime: 147.757ms - BlocksLoad: 217 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 424.339us - FirstReadTime: 146.476ms - IOTimer: 0ns - InvertedIndexFilterTime: 431ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 92.601us - OutputIndexResultColumnTimer: 29.264us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 364 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=22):(Active: 1.985ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.650ms - CloseTime: 50.789us - GetBlockTime: 919.322us - OpenTime: 85.564us - PrepareTime: 188.853us - SinkTime: 444.403us - GetBlockCounter: 200 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.913ms - WaitBfTime: 625.770ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 520.963ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 418.83us - InputRows: 804.37K (804370) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.508us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.330us - BlocksProduced: 200 - CloseTime: 47.176us - ExecTime: 244.528ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 212.787us - ProcessConjunctTime: 16.312us - ProjectionTime: 0ns - RowsProduced: 804.37K (804370) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 95.811ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 243.373ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 43.497K (43497) - expr_input_rows: 201.006K (201006) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 72.357K (72357) - expr_input_rows: 100.503K (100503) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [143.939ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [95.811ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 136.856ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.360ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.951us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.440ms - ScannerCtxSchedTime: 95.804ms - ScannerFilterTime: 6.434ms - ScannerGetBlockTime: 137.389ms - ScannerInitTime: 47.4us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 519ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.507us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.514us - BlockInitTime: 47.898us - BlockLoadTime: 138.9ms - BlocksLoad: 217 - CachedPagesNum: 363 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 834.289us - FirstReadTime: 135.898ms - IOTimer: 0ns - InvertedIndexFilterTime: 748ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 71.639us - OutputIndexResultColumnTimer: 27.609us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 363 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=25):(Active: 4.415ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.893ms - CloseTime: 73.778us - GetBlockTime: 2.900ms - OpenTime: 235.741us - PrepareTime: 202.888us - SinkTime: 315.830us - GetBlockCounter: 318 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.322ms - WaitBfTime: 856.621ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 772.167ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 276.947us - InputRows: 1.277689M (1277689) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.602us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.527us - BlocksProduced: 318 - CloseTime: 70.94us - ExecTime: 264.780ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 350.261us - ProcessConjunctTime: 52.137us - ProjectionTime: 0ns - RowsProduced: 1.277689M (1277689) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 197.974ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.491ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 1.996139M (1996139) - expr_input_rows: 2.439234M (2439234) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 2.112521M (2112521) - expr_input_rows: 2.23197M (2231970) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [163.190ms, 108.739ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [99.148ms, 98.825ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 171.240ms - MemoryUsage: - FreeBlocks: 25.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.216ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.644us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 165.743ms - ScannerCtxSchedTime: 197.959ms - ScannerFilterTime: 98.923ms - ScannerGetBlockTime: 172.664ms - ScannerInitTime: 136.932us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 2.135us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.630us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 20.625us - BlockInitTime: 146.666us - BlockLoadTime: 172.21ms - BlocksLoad: 838 - CachedPagesNum: 578 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 998.596us - FirstReadTime: 169.345ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.677us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 186.566us - OutputIndexResultColumnTimer: 70.95us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 578 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=28):(Active: 4.886ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.453ms - CloseTime: 107.651us - GetBlockTime: 3.93ms - OpenTime: 136.764us - PrepareTime: 179.329us - SinkTime: 735.14us - GetBlockCounter: 455 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.746ms - WaitBfTime: 703.144ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 594.556ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 676.370us - InputRows: 1.835213M (1835213) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.504us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.109us - BlocksProduced: 455 - CloseTime: 103.594us - ExecTime: 331.195ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 258.106us - ProcessConjunctTime: 29.570us - ProjectionTime: 0ns - RowsProduced: 1.835213M (1835213) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.611ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 327.783ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 1.469335M (1469335) - expr_input_rows: 1.849365M (1849365) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 1.554408M (1554408) - expr_input_rows: 1.642101M (1642101) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [275.029ms, 205.749ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [59.425ms, 146.185ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 403.407ms - MemoryUsage: - FreeBlocks: 30.47 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.155ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.967us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 168.277ms - ScannerCtxSchedTime: 205.596ms - ScannerFilterTime: 75.339ms - ScannerGetBlockTime: 405.62ms - ScannerInitTime: 71.766us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 2.156us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.216us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 19.768us - BlockInitTime: 128.303us - BlockLoadTime: 404.105ms - BlocksLoad: 838 - CachedPagesNum: 579 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 1.13ms - FirstReadTime: 384.446ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.280us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 211.305us - OutputIndexResultColumnTimer: 95.818us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 579 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=31):(Active: 6.435ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.823ms - CloseTime: 121.889us - GetBlockTime: 3.644ms - OpenTime: 279.584us - PrepareTime: 200.127us - SinkTime: 1.307ms - GetBlockCounter: 660 - NumBlockedBySinkTimes: 6 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.214ms - WaitBfTime: 620.611ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 933.15ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.228ms - InputRows: 2.660322M (2660322) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.535us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.342us - BlocksProduced: 660 - CloseTime: 118.779us - ExecTime: 160.184ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 396.534us - ProcessConjunctTime: 86.815us - ProjectionTime: 0ns - RowsProduced: 2.660322M (2660322) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 140.884ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.87ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 2.184741M (2184741) - expr_input_rows: 2.662176M (2662176) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 2.316288M (2316288) - expr_input_rows: 2.450848M (2450848) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [238.209ms, 264.014ms, 75.839ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [20.107ms, 16.334ms, 104.442ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 417.304ms - MemoryUsage: - FreeBlocks: 28.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.245ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.8us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 274.114ms - ScannerCtxSchedTime: 140.866ms - ScannerFilterTime: 155.919ms - ScannerGetBlockTime: 421.489ms - ScannerInitTime: 131.72us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 12 SegmentIterator: - BitmapIndexFilterTimer: 3.356us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.473us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 41.534us - BlockInitTime: 285.480us - BlockLoadTime: 418.923ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 851 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 1.843ms - FirstReadTime: 407.672ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.461us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 363.919us - OutputIndexResultColumnTimer: 165.664us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 851 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=34):(Active: 5.648ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.213ms - CloseTime: 92.986us - GetBlockTime: 3.762ms - OpenTime: 154.472us - PrepareTime: 179.990us - SinkTime: 771.252us - GetBlockCounter: 481 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.511ms - WaitBfTime: 856.840ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 837.566ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 708.147us - InputRows: 1.932015M (1932015) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.575us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 2s178ms OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 106, type = minmax), RuntimeFilter: (id = 107, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.376us - BlocksProduced: 481 - CloseTime: 89.700us - ExecTime: 221.437ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 272.715us - ProcessConjunctTime: 24.357us - ProjectionTime: 0ns - RowsProduced: 1.932015M (1932015) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 302.91ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 217.358ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 2.869322M (2869322) - expr_input_rows: 3.430002M (3430002) RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 3.044122M (3044122) - expr_input_rows: 3.222738M (3222738) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [146.718ms, 133.149ms, 46.524ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [100.533ms, 101.632ms, 99.924ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 193.388ms - MemoryUsage: - FreeBlocks: 31.85 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.823ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.729us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 247.298ms - ScannerCtxSchedTime: 302.71ms - ScannerFilterTime: 128.742ms - ScannerGetBlockTime: 197.114ms - ScannerInitTime: 105.756us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 12 SegmentIterator: - BitmapIndexFilterTimer: 4.352us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.539us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 63.722us - BlockInitTime: 372.978us - BlockLoadTime: 195.788ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 862 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 1.874ms - FirstReadTime: 191.323ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.237us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 260.730us - OutputIndexResultColumnTimer: 113.303us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 862 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 26.681ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.581ms - CloseTime: 13.150us - GetBlockTime: 1.877ms - OpenTime: 1.802us - PrepareTime: 81.86us - SinkTime: 24.501ms - GetBlockCounter: 126 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.626ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 339.379ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 35.854us - BuildRows: 180.832K (180832) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.293ms - BuildTableInsertTime: 8.152ms - BuildTableTime: 8.338ms - CloseTime: 0ns - ExecTime: 24.491ms - InputRows: 180.831K (180831) - MemoryUsage: - BuildBlocks: 8.40 MB - BuildKeyArena: 5.52 MB - HashTable: 1.69 MB - PeakMemoryUsage: 15.61 MB - OpenTime: 26.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.929us - RuntimeFilterComputeTime: 4.522ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=348): - BlocksProduced: 125 - BytesReceived: 0.00 - CloseTime: 9.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.863ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.51 MB - MemoryUsage: - Blocks: 12.43 MB - PeakMemoryUsage: 6.45 MB - OpenTime: 23.671us - ProjectionTime: 0ns - RowsProduced: 180.831K (180831) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s630ms PipelineXTask (index=5):(Active: 165.816us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 84.824us - CloseTime: 8.870us - GetBlockTime: 0ns - OpenTime: 2.467us - PrepareTime: 63.779us - SinkTime: 65.768us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.528us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 903.20us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 83.804us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.190us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.878us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.8us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 176.757us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 80.754us - CloseTime: 20.948us - GetBlockTime: 0ns - OpenTime: 2.740us - PrepareTime: 65.772us - SinkTime: 60.814us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 146.760us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.786ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 74.592us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.201us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.72us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.507us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.692us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 118.350us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.170us - CloseTime: 5.207us - GetBlockTime: 0ns - OpenTime: 1.960us - PrepareTime: 66.884us - SinkTime: 22.760us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.674us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.930ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.700us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.360us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.158us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 200.762us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 97.191us - CloseTime: 14.592us - GetBlockTime: 0ns - OpenTime: 2.811us - PrepareTime: 79.783us - SinkTime: 70.833us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 178.456us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.134ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 102.845us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.356us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.76us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.383us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 172.303us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 79.58us - CloseTime: 6.952us - GetBlockTime: 0ns - OpenTime: 2.87us - PrepareTime: 79.650us - SinkTime: 61.948us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 159.939us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.311ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 90.959us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.266us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.896us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.65us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 116.712us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.27us - CloseTime: 5.163us - GetBlockTime: 0ns - OpenTime: 3.228us - PrepareTime: 66.395us - SinkTime: 17.491us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.49us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.233ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.964us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.664us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.863us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.716us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.1us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 186.783us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 84.337us - CloseTime: 7.713us - GetBlockTime: 0ns - OpenTime: 3.523us - PrepareTime: 85.680us - SinkTime: 65.278us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 172.650us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.708ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 88.359us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.452us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.481us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.359us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 112.785us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.205us - CloseTime: 3.540us - GetBlockTime: 0ns - OpenTime: 1.755us - PrepareTime: 72.12us - SinkTime: 19.785us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.142us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.383ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.488us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.26us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.256us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.45us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.930us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 143.56us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 28.977us - CloseTime: 5.220us - GetBlockTime: 0ns - OpenTime: 2.257us - PrepareTime: 102.308us - SinkTime: 16.532us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.999us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.422ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 78.898us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 62.286us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.269us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.582us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 163.482us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 80.133us - CloseTime: 14.939us - GetBlockTime: 0ns - OpenTime: 3.851us - PrepareTime: 58.805us - SinkTime: 60.516us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.881us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.830ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 81.715us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.488us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.554us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.882us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 181.835us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 88.371us - CloseTime: 14.227us - GetBlockTime: 0ns - OpenTime: 3.10us - PrepareTime: 70.938us - SinkTime: 69.6us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 161.220us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.595ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963366 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 87.72us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.897us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s996ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.946us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.152us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.433us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 17: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 16.69ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.885ms - CloseTime: 50.64us - GetBlockTime: 15.179ms - OpenTime: 5.998us - PrepareTime: 119.374us - SinkTime: 635.321us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.886ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 25 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.191us - CompressTime: 0ns - ExecTime: 672.965us - InputRows: 36.774K (36774) - LocalBytesSent: 1.70 MB - LocalSendTime: 607.65us - LocalSentRows: 36.774K (36774) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 33.366us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 36.774K (36774) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 24.950us - ExecTime: 14.965ms - InitProbeSideTime: 4.683ms - JoinFilterTimer: 3.443us - MemoryUsage: - PeakMemoryUsage: 364.00 KB - ProbeKeyArena: 364.00 KB - OpenTime: 16.790us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.250us - ProbeFindNextTime: 0ns - ProbeRows: 78.852K (78852) - ProbeTime: 14.426ms - ProbeWhenBuildSideOutputTime: 1.347ms - ProbeWhenProbeSideOutputTime: 111.124us - ProbeWhenProcessHashTableTime: 1.613ms - ProbeWhenSearchHashTableTime: 6.252ms - ProjectionTime: 337.699us - RowsProduced: 36.774K (36774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s997ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 19 - BytesReceived: 0.00 - CloseTime: 9.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 256.933us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.89 MB - MemoryUsage: - Blocks: 7.89 MB - PeakMemoryUsage: 7.89 MB - OpenTime: 19.934us - ProjectionTime: 0ns - RowsProduced: 78.852K (78852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 667.980ms PipelineXTask (index=2):(Active: 14.653ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.481ms - CloseTime: 46.294us - GetBlockTime: 13.756ms - OpenTime: 5.70us - PrepareTime: 115.355us - SinkTime: 647.805us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.179ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 594.867ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.319us - CompressTime: 0ns - ExecTime: 686.736us - InputRows: 32.103K (32103) - LocalBytesSent: 1.47 MB - LocalSendTime: 623.514us - LocalSentRows: 32.103K (32103) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 30.76us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 32.103K (32103) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 13.133us - ExecTime: 13.522ms - InitProbeSideTime: 4.808ms - JoinFilterTimer: 3.373us - MemoryUsage: - PeakMemoryUsage: 996.00 KB - ProbeKeyArena: 996.00 KB - OpenTime: 15.711us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.724us - ProbeFindNextTime: 0ns - ProbeRows: 81.45K (81450) - ProbeTime: 13.14ms - ProbeWhenBuildSideOutputTime: 903.306us - ProbeWhenProbeSideOutputTime: 107.82us - ProbeWhenProcessHashTableTime: 1.280ms - ProbeWhenSearchHashTableTime: 5.549ms - ProjectionTime: 331.287us - RowsProduced: 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s495ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 15.332us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 274.784us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.87 MB - MemoryUsage: - Blocks: 7.87 MB - PeakMemoryUsage: 7.87 MB - OpenTime: 24.462us - ProjectionTime: 0ns - RowsProduced: 81.45K (81450) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 666.388ms PipelineXTask (index=4):(Active: 17.426ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.256ms - CloseTime: 51.636us - GetBlockTime: 16.475ms - OpenTime: 5.114us - PrepareTime: 106.623us - SinkTime: 704.962us - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.363ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.659ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 27 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.917us - CompressTime: 0ns - ExecTime: 755.995us - InputRows: 38.892K (38892) - LocalBytesSent: 1.81 MB - LocalSendTime: 672.744us - LocalSentRows: 38.892K (38892) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 41.832us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 38.892K (38892) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 27 - BuildOutputBlock: 0ns - CloseTime: 17.409us - ExecTime: 16.246ms - InitProbeSideTime: 5.65ms - JoinFilterTimer: 3.905us - MemoryUsage: - PeakMemoryUsage: 936.00 KB - ProbeKeyArena: 936.00 KB - OpenTime: 20.646us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.934us - ProbeFindNextTime: 0ns - ProbeRows: 78.302K (78302) - ProbeTime: 15.698ms - ProbeWhenBuildSideOutputTime: 1.148ms - ProbeWhenProbeSideOutputTime: 181.808us - ProbeWhenProcessHashTableTime: 2.213ms - ProbeWhenSearchHashTableTime: 6.641ms - ProjectionTime: 354.548us - RowsProduced: 38.892K (38892) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s492ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 11.831us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 258.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.50 MB - MemoryUsage: - Blocks: 7.50 MB - PeakMemoryUsage: 7.50 MB - OpenTime: 12.262us - ProjectionTime: 0ns - RowsProduced: 78.302K (78302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 667.344ms PipelineXTask (index=6):(Active: 30.190ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.37ms - CloseTime: 36.52us - GetBlockTime: 29.247ms - OpenTime: 4.414us - PrepareTime: 106.696us - SinkTime: 715.702us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.443ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 25 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.636us - CompressTime: 0ns - ExecTime: 755.152us - InputRows: 37.995K (37995) - LocalBytesSent: 1.78 MB - LocalSendTime: 673.694us - LocalSentRows: 37.995K (37995) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 36.826us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 37.995K (37995) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 7.225us - ExecTime: 29.15ms - InitProbeSideTime: 18.229ms - JoinFilterTimer: 3.570us - MemoryUsage: - PeakMemoryUsage: 852.00 KB - ProbeKeyArena: 852.00 KB - OpenTime: 13.720us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.831us - ProbeFindNextTime: 0ns - ProbeRows: 83.153K (83153) - ProbeTime: 28.454ms - ProbeWhenBuildSideOutputTime: 1.145ms - ProbeWhenProbeSideOutputTime: 123.664us - ProbeWhenProcessHashTableTime: 1.621ms - ProbeWhenSearchHashTableTime: 6.832ms - ProjectionTime: 355.777us - RowsProduced: 37.995K (37995) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s488ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 12.145us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 253.682us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.15 MB - MemoryUsage: - Blocks: 8.15 MB - PeakMemoryUsage: 8.15 MB - OpenTime: 23.524us - ProjectionTime: 0ns - RowsProduced: 83.153K (83153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 666.662ms PipelineXTask (index=8):(Active: 15.756ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.603ms - CloseTime: 35.69us - GetBlockTime: 14.945ms - OpenTime: 3.248us - PrepareTime: 108.585us - SinkTime: 589.90us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.697ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.111ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 25 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.458us - CompressTime: 0ns - ExecTime: 622.527us - InputRows: 35.067K (35067) - LocalBytesSent: 1.64 MB - LocalSendTime: 562.377us - LocalSentRows: 35.067K (35067) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 35.067K (35067) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 8.540us - ExecTime: 14.708ms - InitProbeSideTime: 4.648ms - JoinFilterTimer: 3.33us - MemoryUsage: - PeakMemoryUsage: 864.00 KB - ProbeKeyArena: 864.00 KB - OpenTime: 15.316us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.917us - ProbeFindNextTime: 0ns - ProbeRows: 77.326K (77326) - ProbeTime: 14.183ms - ProbeWhenBuildSideOutputTime: 1.80ms - ProbeWhenProbeSideOutputTime: 82.216us - ProbeWhenProcessHashTableTime: 1.723ms - ProbeWhenSearchHashTableTime: 6.292ms - ProjectionTime: 365.323us - RowsProduced: 35.067K (35067) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s29ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 20 - BytesReceived: 0.00 - CloseTime: 10.284us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 252.933us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.65 MB - MemoryUsage: - Blocks: 7.65 MB - PeakMemoryUsage: 7.65 MB - OpenTime: 16.28us - ProjectionTime: 0ns - RowsProduced: 77.326K (77326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 666.844ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 17.699ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 17.516ms - CloseTime: 16.327us - GetBlockTime: 276.980us - OpenTime: 2.262us - PrepareTime: 157.939us - SinkTime: 17.160ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.501ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s121ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.909us - BuildRows: 36.775K (36775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.538ms - BuildTableInsertTime: 9.586ms - BuildTableTime: 9.594ms - CloseTime: 0ns - ExecTime: 17.262ms - InputRows: 36.774K (36774) - MemoryUsage: - BuildBlocks: 2.97 MB - BuildKeyArena: 2.43 MB - HashTable: 435.57 KB - PeakMemoryUsage: 5.81 MB - OpenTime: 107.203us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 31.300us - RuntimeFilterComputeTime: 1.849ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 11.987us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 300.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.38 MB - MemoryUsage: - Blocks: 2.16 MB - PeakMemoryUsage: 2.16 MB - OpenTime: 22.112us - ProjectionTime: 0ns - RowsProduced: 36.774K (36774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s570ms PipelineXTask (index=3):(Active: 6.312ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.207ms - CloseTime: 16.852us - GetBlockTime: 191.592us - OpenTime: 2.351us - PrepareTime: 81.370us - SinkTime: 5.981ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.287ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 432.833ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.106us - BuildRows: 32.104K (32104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.514ms - BuildTableInsertTime: 2.629ms - BuildTableTime: 2.637ms - CloseTime: 0ns - ExecTime: 6.8ms - InputRows: 32.103K (32103) - MemoryUsage: - BuildBlocks: 2.58 MB - BuildKeyArena: 2.12 MB - HashTable: 412.76 KB - PeakMemoryUsage: 5.09 MB - OpenTime: 30.94us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 28.690us - RuntimeFilterComputeTime: 1.741ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 13.138us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 215.727us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.00 MB - MemoryUsage: - Blocks: 4.00 MB - PeakMemoryUsage: 4.00 MB - OpenTime: 15.177us - ProjectionTime: 0ns - RowsProduced: 32.103K (32103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s737ms PipelineXTask (index=5):(Active: 12.843ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 12.748ms - CloseTime: 15.873us - GetBlockTime: 154.271us - OpenTime: 2.988us - PrepareTime: 69.584us - SinkTime: 12.485ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.795ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.406ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.484us - BuildRows: 38.893K (38893) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.626ms - BuildTableInsertTime: 5.490ms - BuildTableTime: 5.497ms - CloseTime: 0ns - ExecTime: 12.502ms - InputRows: 38.892K (38892) - MemoryUsage: - BuildBlocks: 3.15 MB - BuildKeyArena: 2.57 MB - HashTable: 445.91 KB - PeakMemoryUsage: 6.14 MB - OpenTime: 27.410us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.38us - RuntimeFilterComputeTime: 2.250ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 11.733us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 177.783us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.64 MB - MemoryUsage: - Blocks: 1.89 MB - PeakMemoryUsage: 1.89 MB - OpenTime: 22.723us - ProjectionTime: 0ns - RowsProduced: 38.892K (38892) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s82ms PipelineXTask (index=7):(Active: 25.844ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 25.750ms - CloseTime: 20.0us - GetBlockTime: 247.619us - OpenTime: 2.165us - PrepareTime: 66.897us - SinkTime: 25.440ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.800ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 190.831ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.242us - BuildRows: 37.996K (37996) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.37ms - BuildTableInsertTime: 17.288ms - BuildTableTime: 17.295ms - CloseTime: 0ns - ExecTime: 25.467ms - InputRows: 37.995K (37995) - MemoryUsage: - BuildBlocks: 3.08 MB - BuildKeyArena: 2.51 MB - HashTable: 441.53 KB - PeakMemoryUsage: 6.02 MB - OpenTime: 32.505us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 26.233us - RuntimeFilterComputeTime: 1.875ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 11.190us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 261.911us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.57 MB - MemoryUsage: - Blocks: 2.55 MB - PeakMemoryUsage: 2.55 MB - OpenTime: 15.266us - ProjectionTime: 0ns - RowsProduced: 37.995K (37995) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s972ms PipelineXTask (index=9):(Active: 33.41ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.922ms - CloseTime: 17.496us - GetBlockTime: 254.107us - OpenTime: 3.315us - PrepareTime: 92.61us - SinkTime: 32.588ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.109ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 759.757ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.335us - BuildRows: 35.068K (35068) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.922ms - BuildTableInsertTime: 3.472ms - BuildTableTime: 3.482ms - CloseTime: 0ns - ExecTime: 32.617ms - InputRows: 35.067K (35067) - MemoryUsage: - BuildBlocks: 2.84 MB - BuildKeyArena: 2.31 MB - HashTable: 427.23 KB - PeakMemoryUsage: 5.57 MB - OpenTime: 35.731us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 291.949us - RuntimeFilterComputeTime: 24.804ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 13.426us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 286.555us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.46 MB - MemoryUsage: - Blocks: 2.14 MB - PeakMemoryUsage: 2.14 MB - OpenTime: 28.400us - ProjectionTime: 0ns - RowsProduced: 35.067K (35067) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s937ms Fragment 18: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 26.795ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.355ms - CloseTime: 57.205us - GetBlockTime: 279.473us - OpenTime: 121.607us - PrepareTime: 250.661us - SinkTime: 25.871ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.97ms - WaitBfTime: 650.593ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.565ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.278us - CompressTime: 0ns - ExecTime: 25.922ms - InputRows: 83.949K (83949) - LocalBytesSent: 5.38 MB - LocalSendTime: 207.180us - LocalSentRows: 83.949K (83949) - MemoryUsage: - PeakMemoryUsage: 8.05 MB - MergeBlockTime: 0ns - OpenTime: 46.248us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 83.949K (83949) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.112ms - SplitBlockHashComputeTime: 2.769ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 102, type = minmax), RuntimeFilter: (id = 103, type = bloomfilter), RuntimeFilter: (id = 104, type = minmax), RuntimeFilter: (id = 105, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15193] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.11us - BlocksProduced: 21 - CloseTime: 37.590us - ExecTime: 33.202ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 252.131us - ProcessConjunctTime: 27.391us - ProjectionTime: 0ns - RowsProduced: 83.949K (83949) - RowsRead: 83.949K (83949) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.435ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 32.641ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [21.902ms, ] - PerScannerRowsRead: [83.95K, ] - PerScannerWaitTime: [9.435ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 21.794ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 960.592us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.376us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.201ms - ScannerCtxSchedTime: 9.430ms - ScannerFilterTime: 13.125us - ScannerGetBlockTime: 21.878ms - ScannerInitTime: 63.945us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 118ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 923ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 30.994us - BlockInitTime: 51.797us - BlockLoadTime: 22.683ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 42 - FirstReadSeekTime: 627.61us - FirstReadTime: 22.513ms - IOTimer: 0ns - InvertedIndexFilterTime: 404ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 9.868us - OutputIndexResultColumnTimer: 4.13us - RawRowsRead: 83.949K (83949) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 35 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 24.757ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.409ms - CloseTime: 42.911us - GetBlockTime: 197.848us - OpenTime: 85.6us - PrepareTime: 213.429us - SinkTime: 24.65ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.634ms - WaitBfTime: 861.703ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.50ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.623us - CompressTime: 0ns - ExecTime: 24.114ms - InputRows: 76.266K (76266) - LocalBytesSent: 4.89 MB - LocalSendTime: 158.652us - LocalSentRows: 76.266K (76266) - MemoryUsage: - PeakMemoryUsage: 7.43 MB - MergeBlockTime: 0ns - OpenTime: 44.681us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 76.266K (76266) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.216ms - SplitBlockHashComputeTime: 2.125ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 102, type = minmax), RuntimeFilter: (id = 103, type = bloomfilter), RuntimeFilter: (id = 104, type = minmax), RuntimeFilter: (id = 105, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15195] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.445us - BlocksProduced: 19 - CloseTime: 28.680us - ExecTime: 114.842ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 167.524us - ProcessConjunctTime: 16.492us - ProjectionTime: 0ns - RowsProduced: 76.266K (76266) - RowsRead: 76.266K (76266) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 105.175ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.454ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [7.841ms, ] - PerScannerRowsRead: [76.27K, ] - PerScannerWaitTime: [105.175ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.765ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.210ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 975ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.758ms - ScannerCtxSchedTime: 105.173ms - ScannerFilterTime: 8.726us - ScannerGetBlockTime: 7.825ms - ScannerInitTime: 44.446us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 235ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 989ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 64.679us - BlockInitTime: 85.12us - BlockLoadTime: 8.903ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 38 - FirstReadSeekTime: 611.906us - FirstReadTime: 8.741ms - IOTimer: 0ns - InvertedIndexFilterTime: 329ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.345us - OutputIndexResultColumnTimer: 2.852us - RawRowsRead: 76.266K (76266) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 74.835ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 74.478ms - CloseTime: 54.229us - GetBlockTime: 295.747us - OpenTime: 74.567us - PrepareTime: 217.965us - SinkTime: 74.16ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.177ms - WaitBfTime: 650.581ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 148.255ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.724us - CompressTime: 0ns - ExecTime: 74.76ms - InputRows: 80.456K (80456) - LocalBytesSent: 5.16 MB - LocalSendTime: 248.396us - LocalSentRows: 80.456K (80456) - MemoryUsage: - PeakMemoryUsage: 7.79 MB - MergeBlockTime: 0ns - OpenTime: 52.566us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80.456K (80456) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 54.904ms - SplitBlockHashComputeTime: 17.979ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 102, type = minmax), RuntimeFilter: (id = 103, type = bloomfilter), RuntimeFilter: (id = 104, type = minmax), RuntimeFilter: (id = 105, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15197] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.268us - BlocksProduced: 20 - CloseTime: 33.720us - ExecTime: 125.708ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 160.959us - ProcessConjunctTime: 22.640us - ProjectionTime: 0ns - RowsProduced: 80.456K (80456) - RowsRead: 80.456K (80456) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.435ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 125.227ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [113.491ms, ] - PerScannerRowsRead: [80.46K, ] - PerScannerWaitTime: [10.435ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 113.383ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 933.730us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.409us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.96ms - ScannerCtxSchedTime: 10.433ms - ScannerFilterTime: 13.300us - ScannerGetBlockTime: 113.466ms - ScannerInitTime: 33.311us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 149ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 938ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 33.960us - BlockInitTime: 58.923us - BlockLoadTime: 114.223ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 533.755us - FirstReadTime: 113.985ms - IOTimer: 0ns - InvertedIndexFilterTime: 224ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 11.49us - OutputIndexResultColumnTimer: 7.397us - RawRowsRead: 80.456K (80456) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 13.146ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 12.708ms - CloseTime: 37.587us - GetBlockTime: 217.206us - OpenTime: 187.138us - PrepareTime: 204.461us - SinkTime: 12.238ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.97ms - WaitBfTime: 633.646ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.571ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.329us - CompressTime: 0ns - ExecTime: 12.294ms - InputRows: 79.427K (79427) - LocalBytesSent: 5.10 MB - LocalSendTime: 145.449us - LocalSentRows: 79.427K (79427) - MemoryUsage: - PeakMemoryUsage: 7.81 MB - MergeBlockTime: 0ns - OpenTime: 48.757us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 79.427K (79427) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 9.357ms - SplitBlockHashComputeTime: 2.203ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 102, type = minmax), RuntimeFilter: (id = 103, type = bloomfilter), RuntimeFilter: (id = 104, type = minmax), RuntimeFilter: (id = 105, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15199] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.348us - BlocksProduced: 20 - CloseTime: 21.721us - ExecTime: 15.647ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 265.544us - ProcessConjunctTime: 43.87us - ProjectionTime: 0ns - RowsProduced: 79.427K (79427) - RowsRead: 79.427K (79427) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.794ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 15.149ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [7.763ms, ] - PerScannerRowsRead: [79.43K, ] - PerScannerWaitTime: [5.794ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.671ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.300ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 926ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.348ms - ScannerCtxSchedTime: 5.791ms - ScannerFilterTime: 8.903us - ScannerGetBlockTime: 7.747ms - ScannerInitTime: 107.3us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 120ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.516us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 62.597us - BlockInitTime: 102.482us - BlockLoadTime: 8.837ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 641.398us - FirstReadTime: 8.647ms - IOTimer: 0ns - InvertedIndexFilterTime: 455ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.711us - OutputIndexResultColumnTimer: 2.926us - RawRowsRead: 79.427K (79427) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 14.738ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.423ms - CloseTime: 39.550us - GetBlockTime: 231.235us - OpenTime: 63.479us - PrepareTime: 205.357us - SinkTime: 14.67ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.651ms - WaitBfTime: 861.775ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 271.942ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.334us - CompressTime: 0ns - ExecTime: 14.113ms - InputRows: 78.985K (78985) - LocalBytesSent: 5.06 MB - LocalSendTime: 173.191us - LocalSentRows: 78.985K (78985) - MemoryUsage: - PeakMemoryUsage: 7.98 MB - MergeBlockTime: 0ns - OpenTime: 39.171us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 78.985K (78985) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 11.3ms - SplitBlockHashComputeTime: 2.244ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=345. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : RuntimeFilter: (id = 102, type = minmax), RuntimeFilter: (id = 103, type = bloomfilter), RuntimeFilter: (id = 104, type = minmax), RuntimeFilter: (id = 105, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15201] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.125us - BlocksProduced: 20 - CloseTime: 23.446us - ExecTime: 114.558ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 138.274us - ProcessConjunctTime: 14.10us - ProjectionTime: 0ns - RowsProduced: 78.985K (78985) - RowsRead: 78.985K (78985) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 105.383ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.171ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [7.232ms, ] - PerScannerRowsRead: [78.98K, ] - PerScannerWaitTime: [105.383ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.142ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.102ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 986ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.736ms - ScannerCtxSchedTime: 105.380ms - ScannerFilterTime: 9.381us - ScannerGetBlockTime: 7.214ms - ScannerInitTime: 30.221us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 236ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.392us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 29.777us - BlockInitTime: 57.624us - BlockLoadTime: 8.125ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 624.850us - FirstReadTime: 7.966ms - IOTimer: 0ns - InvertedIndexFilterTime: 484ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.471us - OutputIndexResultColumnTimer: 2.927us - RawRowsRead: 78.985K (78985) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 31 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 19: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 21.954ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 21.449ms - CloseTime: 96.797us - GetBlockTime: 11.411ms - OpenTime: 116.927us - PrepareTime: 281.857us - SinkTime: 9.709ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.823ms - WaitBfTime: 616.295ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 801.501ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.341us - CompressTime: 0ns - ExecTime: 9.751ms - InputRows: 63.423K (63423) - LocalBytesSent: 5.13 MB - LocalSendTime: 191.108us - LocalSentRows: 63.423K (63423) - MemoryUsage: - PeakMemoryUsage: 7.96 MB - MergeBlockTime: 0ns - OpenTime: 51.531us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 63.423K (63423) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.712ms - SplitBlockHashComputeTime: 2.5ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 8.659us - ExecTime: 10.860ms - InitProbeSideTime: 3.997ms - JoinFilterTimer: 17.829us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 29.712us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.501us - ProbeFindNextTime: 0ns - ProbeRows: 173.151K (173151) - ProbeTime: 9.722ms - ProbeWhenBuildSideOutputTime: 969.408us - ProbeWhenProbeSideOutputTime: 2.316ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.648ms - ProjectionTime: 982.268us - RowsProduced: 63.423K (63423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 670.365ms OLAP_SCAN_OPERATOR (id=342. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 100, type = minmax), RuntimeFilter: (id = 101, type = in_or_bloomfilter), - PushDownPredicates: [{UNIONID is [not null]}, {TYPE IN [2]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15206] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.697us - BlocksProduced: 46 - CloseTime: 72.0us - ExecTime: 92.533ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 220.189us - ProcessConjunctTime: 45.557us - ProjectionTime: 23.344ms - RowsProduced: 173.151K (173151) - RowsRead: 355.894K (355894) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 4.97ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 68.362ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 100, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 101, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 160 - always_true: 0 - expr_filtered_rows: 182.743K (182743) - expr_input_rows: 217.719K (217719) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [39.395ms, ] - PerScannerRowsRead: [355.89K, ] - PerScannerWaitTime: [4.097ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 27.124ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.89ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.158us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.230ms - ScannerCtxSchedTime: 4.92ms - ScannerFilterTime: 11.891ms - ScannerGetBlockTime: 27.444ms - ScannerInitTime: 37.238us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 857ns - BlockConditionsFilteredBloomFilterTime: 2.229us - BlockConditionsFilteredDictTime: 398ns - BlockConditionsFilteredTime: 60.520us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 51.415us - BlockInitSeekCount: 9 - BlockInitSeekTime: 59.791us - BlockInitTime: 147.828us - BlockLoadTime: 28.57ms - BlocksLoad: 94 - CachedPagesNum: 212 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 186 - FirstReadSeekTime: 326.557us - FirstReadTime: 16.455ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.557us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.605ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.437ms - OutputIndexResultColumnTimer: 25.476us - RawRowsRead: 377.618K (377618) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 667 - RowsShortCircuitPredInput: 356.561K (356561) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.057K (21057) - RowsVectorPredInput: 377.618K (377618) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 368.468us - TotalPagesNum: 212 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 498.550us PipelineXTask (index=2):(Active: 21.696ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 21.247ms - CloseTime: 85.445us - GetBlockTime: 11.616ms - OpenTime: 80.395us - PrepareTime: 274.82us - SinkTime: 9.329ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.574ms - WaitBfTime: 616.402ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 841.957ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.625us - CompressTime: 0ns - ExecTime: 9.366ms - InputRows: 59.09K (59090) - LocalBytesSent: 4.77 MB - LocalSendTime: 174.505us - LocalSentRows: 59.09K (59090) - MemoryUsage: - PeakMemoryUsage: 7.39 MB - MergeBlockTime: 0ns - OpenTime: 45.49us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 59.09K (59090) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.524ms - SplitBlockHashComputeTime: 1.871ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 10.424us - ExecTime: 11.39ms - InitProbeSideTime: 4.161ms - JoinFilterTimer: 11.5us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 14.786us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.156us - ProbeFindNextTime: 0ns - ProbeRows: 173.412K (173412) - ProbeTime: 9.708ms - ProbeWhenBuildSideOutputTime: 996.212us - ProbeWhenProbeSideOutputTime: 2.91ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.612ms - ProjectionTime: 1.187ms - RowsProduced: 59.09K (59090) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 643.850ms OLAP_SCAN_OPERATOR (id=342. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 100, type = minmax), RuntimeFilter: (id = 101, type = in_or_bloomfilter), - PushDownPredicates: [{UNIONID is [not null]}, {TYPE IN [2]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.209us - BlocksProduced: 46 - CloseTime: 54.459us - ExecTime: 67.629ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 181.600us - ProcessConjunctTime: 23.314us - ProjectionTime: 9.869ms - RowsProduced: 173.412K (173412) - RowsRead: 345.71K (345710) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.781ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 56.995ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 100, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 101, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 148 - always_true: 0 - expr_filtered_rows: 172.298K (172298) - expr_input_rows: 207.941K (207941) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [36.966ms, ] - PerScannerRowsRead: [345.71K, ] - PerScannerWaitTime: [7.781ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 27.972ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.979ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.28us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.360ms - ScannerCtxSchedTime: 7.774ms - ScannerFilterTime: 8.609ms - ScannerGetBlockTime: 28.301ms - ScannerInitTime: 29.104us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 727ns - BlockConditionsFilteredBloomFilterTime: 2.308us - BlockConditionsFilteredDictTime: 354ns - BlockConditionsFilteredTime: 66.958us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 58.398us - BlockInitSeekCount: 9 - BlockInitSeekTime: 87.966us - BlockInitTime: 186.280us - BlockLoadTime: 29.764ms - BlocksLoad: 92 - CachedPagesNum: 205 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 182 - FirstReadSeekTime: 719.871us - FirstReadTime: 7.511ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.716us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 16.797ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 3.979ms - OutputIndexResultColumnTimer: 15.455us - RawRowsRead: 367.424K (367424) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 633 - RowsShortCircuitPredInput: 346.343K (346343) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.081K (21081) - RowsVectorPredInput: 367.424K (367424) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 344.355us - TotalPagesNum: 205 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 456.234us PipelineXTask (index=4):(Active: 50.859ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.349ms - CloseTime: 72.275us - GetBlockTime: 25.881ms - OpenTime: 165.36us - PrepareTime: 263.564us - SinkTime: 24.59ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 28.378ms - WaitBfTime: 856.951ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 917.974ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.469us - CompressTime: 0ns - ExecTime: 24.88ms - InputRows: 58.318K (58318) - LocalBytesSent: 4.71 MB - LocalSendTime: 208.344us - LocalSentRows: 58.318K (58318) - MemoryUsage: - PeakMemoryUsage: 6.70 MB - MergeBlockTime: 0ns - OpenTime: 42.747us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 58.318K (58318) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.33ms - SplitBlockHashComputeTime: 1.987ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 10.991us - ExecTime: 13.395ms - InitProbeSideTime: 4.96ms - JoinFilterTimer: 8.272us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 16.908us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.854us - ProbeFindNextTime: 0ns - ProbeRows: 172.143K (172143) - ProbeTime: 11.888ms - ProbeWhenBuildSideOutputTime: 1.163ms - ProbeWhenProbeSideOutputTime: 4.167ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.704ms - ProjectionTime: 1.342ms - RowsProduced: 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=342. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 100, type = minmax), RuntimeFilter: (id = 101, type = in_or_bloomfilter), - PushDownPredicates: [{UNIONID is [not null]}, {TYPE IN [2]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.92us - BlocksProduced: 47 - CloseTime: 46.845us - ExecTime: 310.721ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 264.586us - ProcessConjunctTime: 66.726us - ProjectionTime: 79.800ms - RowsProduced: 172.143K (172143) - RowsRead: 344.73K (344730) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 111.44ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 218.170ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 100, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 101, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 139 - always_true: 0 - expr_filtered_rows: 172.587K (172587) - expr_input_rows: 207.322K (207322) VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [36.441ms, ] - PerScannerRowsRead: [344.73K, ] - PerScannerWaitTime: [111.044ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 25.24ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.986ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.697us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.49ms - ScannerCtxSchedTime: 111.38ms - ScannerFilterTime: 8.625ms - ScannerGetBlockTime: 27.754ms - ScannerInitTime: 66.742us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 2.423us - BlockConditionsFilteredBloomFilterTime: 6.976us - BlockConditionsFilteredDictTime: 1.363us - BlockConditionsFilteredTime: 132.28us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 97.386us - BlockInitSeekCount: 25 - BlockInitSeekTime: 181.268us - BlockInitTime: 457.336us - BlockLoadTime: 28.981ms - BlocksLoad: 95 - CachedPagesNum: 189 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 184 - FirstReadSeekTime: 1.337ms - FirstReadTime: 17.720ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.8us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.312ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.253ms - OutputIndexResultColumnTimer: 15.839us - RawRowsRead: 366.32K (366320) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 503 - RowsShortCircuitPredInput: 345.233K (345233) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 21.087K (21087) - RowsVectorPredInput: 366.32K (366320) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 302.21us - TotalPagesNum: 189 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 453.516us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 272.290us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 179.347us - CloseTime: 13.269us - GetBlockTime: 13.332us - OpenTime: 3.63us - PrepareTime: 71.111us - SinkTime: 144.642us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 251.64us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 304.205ms HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.701us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.673us - BuildTableInsertTime: 29.705us - BuildTableTime: 33.347us - CloseTime: 0ns - ExecTime: 163.917us - InputRows: 160 - MemoryUsage: - BuildBlocks: 8.10 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 17.73 KB - OpenTime: 19.485us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.413us - RuntimeFilterComputeTime: 58.815us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.450us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 24.569us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s49ms PipelineXTask (index=3):(Active: 207.29us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 116.136us - CloseTime: 5.756us - GetBlockTime: 9.365us - OpenTime: 2.290us - PrepareTime: 77.345us - SinkTime: 87.560us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 193.956us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 304.381ms HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 791ns - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.917us - BuildTableInsertTime: 11.606us - BuildTableTime: 12.665us - CloseTime: 0ns - ExecTime: 112.555us - InputRows: 148 - MemoryUsage: - BuildBlocks: 7.48 KB - BuildKeyArena: 12.00 KB - HashTable: 1.59 KB - PeakMemoryUsage: 17.06 KB - OpenTime: 25.63us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.272us - RuntimeFilterComputeTime: 34.428us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.279us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.78us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 15.975us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s49ms PipelineXTask (index=5):(Active: 216.691us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 131.540us - CloseTime: 11.935us - GetBlockTime: 14.389us - OpenTime: 2.517us - PrepareTime: 65.183us - SinkTime: 93.183us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.653us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 197.479ms HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.474us - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.747us - BuildTableInsertTime: 15.727us - BuildTableTime: 18.445us - CloseTime: 0ns - ExecTime: 110.286us - InputRows: 139 - MemoryUsage: - BuildBlocks: 7.03 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 16.57 KB - OpenTime: 17.687us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.561us - RuntimeFilterComputeTime: 31.124us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.505us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 26.200us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s49ms Fragment 20: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 650.885us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 261.623us - CloseTime: 50.356us - GetBlockTime: 46.665us - OpenTime: 111.170us - PrepareTime: 218.663us - SinkTime: 80.162us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 590.508us - WaitBfTime: 857.62ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 348.163ms DATA_STREAM_SINK_OPERATOR (id=341,dst_id=341): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.324us - CompressTime: 0ns - ExecTime: 138.129us - InputRows: 447 - LocalBytesSent: 22.62 KB - LocalSendTime: 29.370us - LocalSentRows: 447 - MemoryUsage: - PeakMemoryUsage: 36.75 KB - MergeBlockTime: 0ns - OpenTime: 47.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 447 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.348us - SplitBlockHashComputeTime: 19.649us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=340. table name = QYWX_GROUPCHAT_INFO): - RuntimeFilters: : RuntimeFilter: (id = 110, type = minmax), RuntimeFilter: (id = 111, type = bloomfilter), - PushDownPredicates: [{IS_DELETED IN [0]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.343us - BlocksProduced: 1 - CloseTime: 37.513us - ExecTime: 99.774ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 211.755us - ProcessConjunctTime: 41.185us - ProjectionTime: 36.633us - RowsProduced: 447 - RowsRead: 447 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 97.423ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 99.441ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 110, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 111, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [OWNER, NAME, CHAT_ID, IS_DELETED] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false - PerScannerRunningTime: [974.059us, ] - PerScannerRowsRead: [447, ] - PerScannerWaitTime: [97.423ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 924.661us - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 873.440us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 101ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.13ms - ScannerCtxSchedTime: 97.421ms - ScannerFilterTime: 2.874us - ScannerGetBlockTime: 955.300us - ScannerInitTime: 38.779us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 333ns - BlockConditionsFilteredBloomFilterTime: 2.147us - BlockConditionsFilteredDictTime: 270ns - BlockConditionsFilteredTime: 16.250us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.762us - BlockInitSeekCount: 8 - BlockInitSeekTime: 95.304us - BlockInitTime: 140.502us - BlockLoadTime: 1.662ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 221.21us - FirstReadSeekCount: 6 - FirstReadSeekTime: 7.236us - FirstReadTime: 68.126us - IOTimer: 0ns - InvertedIndexFilterTime: 2.737us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.91ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 32.181us - OutputIndexResultColumnTimer: 741ns - RawRowsRead: 22.996K (22996) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 11.553K (11553) - RowsVectorPredInput: 22.996K (22996) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 813.148us - ShortPredEvalTime: 213ns - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 36.914us Fragment 21: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 7.14ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.895ms - CloseTime: 4.870ms - GetBlockTime: 1.156ms - OpenTime: 6.477us - PrepareTime: 234.118us - SinkTime: 676.595us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.134ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.213ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 4.812ms - CompressTime: 0ns - ExecTime: 5.580ms - InputRows: 770 - LocalBytesSent: 191.00 KB - LocalSendTime: 177.316us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 94.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 237.640us - SplitBlockHashComputeTime: 47.245us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 39.956us - ExecTime: 1.100ms - InitProbeSideTime: 49.361us - JoinFilterTimer: 775ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 37.529us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.630us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 642.995us - ProbeWhenBuildSideOutputTime: 82.30us - ProbeWhenProbeSideOutputTime: 186.596us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 29.713us - ProjectionTime: 343.998us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 11.840us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.89us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 243.94 KB - MemoryUsage: - Blocks: 231.88 KB - PeakMemoryUsage: 233.97 KB - OpenTime: 22.55us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=2):(Active: 1.953ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.721ms - CloseTime: 28.611us - GetBlockTime: 1.34ms - OpenTime: 7.627us - PrepareTime: 188.128us - SinkTime: 624.291us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.917ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.319ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.452us - CompressTime: 0ns - ExecTime: 714.421us - InputRows: 756 - LocalBytesSent: 187.32 KB - LocalSendTime: 153.35us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 84.623us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 235.117us - SplitBlockHashComputeTime: 49.7us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.595us - ExecTime: 934.68us - InitProbeSideTime: 52.504us - JoinFilterTimer: 608ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 40.477us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.903us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 553.235us - ProbeWhenBuildSideOutputTime: 72.527us - ProbeWhenProbeSideOutputTime: 159.26us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 28.407us - ProjectionTime: 288.562us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 3.669us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 149.590us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 237.13 KB - MemoryUsage: - Blocks: 237.13 KB - PeakMemoryUsage: 240.26 KB - OpenTime: 21.138us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=4):(Active: 2.8ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.784ms - CloseTime: 28.663us - GetBlockTime: 1.136ms - OpenTime: 5.853us - PrepareTime: 184.916us - SinkTime: 593.67us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.973ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.128ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.382us - CompressTime: 0ns - ExecTime: 681.55us - InputRows: 770 - LocalBytesSent: 190.88 KB - LocalSendTime: 136.677us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 81.229us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 213.837us - SplitBlockHashComputeTime: 37.947us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 10.909us - ExecTime: 1.31ms - InitProbeSideTime: 58.639us - JoinFilterTimer: 560ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 33.191us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.498us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 595.815us - ProbeWhenBuildSideOutputTime: 72.188us - ProbeWhenProbeSideOutputTime: 185.318us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.203us - ProjectionTime: 340.6us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 5.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 154.544us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 243.06 KB - MemoryUsage: - Blocks: 228.38 KB - PeakMemoryUsage: 230.47 KB - OpenTime: 29.822us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=6):(Active: 2.5ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.770ms - CloseTime: 42.856us - GetBlockTime: 1.88ms - OpenTime: 8.680us - PrepareTime: 176.499us - SinkTime: 620.229us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.953ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 987.154us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.977us - CompressTime: 0ns - ExecTime: 707.507us - InputRows: 785 - LocalBytesSent: 194.73 KB - LocalSendTime: 177.443us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 266.41 KB - MergeBlockTime: 0ns - OpenTime: 74.797us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 190.557us - SplitBlockHashComputeTime: 44.487us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 16.660us - ExecTime: 985.351us - InitProbeSideTime: 58.337us - JoinFilterTimer: 530ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 48.594us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.507us - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 601.257us - ProbeWhenBuildSideOutputTime: 95.871us - ProbeWhenProbeSideOutputTime: 174.971us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.46us - ProjectionTime: 276.46us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.886us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 243.63 KB - MemoryUsage: - Blocks: 223.31 KB - PeakMemoryUsage: 224.36 KB - OpenTime: 14.452us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=8):(Active: 2.324ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.85ms - CloseTime: 28.979us - GetBlockTime: 1.327ms - OpenTime: 5.480us - PrepareTime: 197.956us - SinkTime: 686.104us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.284ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.782ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.859us - CompressTime: 0ns - ExecTime: 778.502us - InputRows: 738 - LocalBytesSent: 182.77 KB - LocalSendTime: 171.602us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 92.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 252.491us - SplitBlockHashComputeTime: 42.485us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 12.532us - ExecTime: 1.187ms - InitProbeSideTime: 54.843us - JoinFilterTimer: 1.57us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 40.943us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.335us - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 740.797us - ProbeWhenBuildSideOutputTime: 119.947us - ProbeWhenProbeSideOutputTime: 203.344us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.769us - ProjectionTime: 344.60us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 4.199us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 167.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 244.06 KB - MemoryUsage: - Blocks: 244.06 KB - PeakMemoryUsage: 245.11 KB - OpenTime: 21.662us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=10):(Active: 1.851ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.635ms - CloseTime: 28.986us - GetBlockTime: 976.464us - OpenTime: 10.992us - PrepareTime: 170.685us - SinkTime: 588.931us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.811ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 813.239us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.511us - CompressTime: 0ns - ExecTime: 690.416us - InputRows: 784 - LocalBytesSent: 194.40 KB - LocalSendTime: 151.402us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 266.41 KB - MergeBlockTime: 0ns - OpenTime: 91.192us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.410us - SplitBlockHashComputeTime: 44.120us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 9.630us - ExecTime: 884.286us - InitProbeSideTime: 56.170us - JoinFilterTimer: 517ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 33.308us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.565us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 521.832us - ProbeWhenBuildSideOutputTime: 87.503us - ProbeWhenProbeSideOutputTime: 148.818us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.816us - ProjectionTime: 283.801us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 3.648us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.586us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 235.13 KB - MemoryUsage: - Blocks: 201.81 KB - PeakMemoryUsage: 206.61 KB - OpenTime: 14.467us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=12):(Active: 2.87ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.848ms - CloseTime: 35.3us - GetBlockTime: 1.85ms - OpenTime: 11.557us - PrepareTime: 185.328us - SinkTime: 683.487us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.14ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 443.978us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.685us - CompressTime: 0ns - ExecTime: 764.164us - InputRows: 765 - LocalBytesSent: 189.77 KB - LocalSendTime: 139.408us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 75.133us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 297.71us - SplitBlockHashComputeTime: 42.343us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 8.46us - ExecTime: 993.884us - InitProbeSideTime: 68.432us - JoinFilterTimer: 706ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 47.283us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.383us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 586.83us - ProbeWhenBuildSideOutputTime: 81.659us - ProbeWhenProbeSideOutputTime: 171.163us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.391us - ProjectionTime: 312.493us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 5.218us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 144.739us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 236.56 KB - MemoryUsage: - Blocks: 206.25 KB - PeakMemoryUsage: 206.25 KB - OpenTime: 24.268us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=14):(Active: 4.526ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.296ms - CloseTime: 35.300us - GetBlockTime: 1.326ms - OpenTime: 16.722us - PrepareTime: 171.355us - SinkTime: 2.865ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.394ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.354ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.295us - CompressTime: 0ns - ExecTime: 2.959ms - InputRows: 758 - LocalBytesSent: 187.64 KB - LocalSendTime: 2.306ms - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 86.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 267.141us - SplitBlockHashComputeTime: 45.313us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.696us - ExecTime: 1.202ms - InitProbeSideTime: 66.896us - JoinFilterTimer: 1.12us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 42.628us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.879us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 752.988us - ProbeWhenBuildSideOutputTime: 116.832us - ProbeWhenProbeSideOutputTime: 211.492us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.611us - ProjectionTime: 341.22us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.307us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 160.474us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 239.88 KB - MemoryUsage: - Blocks: 239.88 KB - PeakMemoryUsage: 239.88 KB - OpenTime: 13.867us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=16):(Active: 4.128ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.908ms - CloseTime: 40.21us - GetBlockTime: 3.185ms - OpenTime: 9.657us - PrepareTime: 165.196us - SinkTime: 650.389us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.54ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.41ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.976us - CompressTime: 0ns - ExecTime: 728.670us - InputRows: 776 - LocalBytesSent: 192.50 KB - LocalSendTime: 164.161us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 266.41 KB - MergeBlockTime: 0ns - OpenTime: 76.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 224.81us - SplitBlockHashComputeTime: 41.571us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 21.449us - ExecTime: 3.62ms - InitProbeSideTime: 62.644us - JoinFilterTimer: 785ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 31.80us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.843us - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 636.759us - ProbeWhenBuildSideOutputTime: 94.506us - ProbeWhenProbeSideOutputTime: 177.934us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 27.624us - ProjectionTime: 2.325ms - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 6.219us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.651us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 235.94 KB - MemoryUsage: - Blocks: 218.44 KB - PeakMemoryUsage: 219.48 KB - OpenTime: 15.106us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=18):(Active: 3.649ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.91ms - CloseTime: 1.374ms - GetBlockTime: 1.305ms - OpenTime: 10.384us - PrepareTime: 166.865us - SinkTime: 706.206us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.266ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.754ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.750us - CompressTime: 0ns - ExecTime: 791.357us - InputRows: 777 - LocalBytesSent: 192.67 KB - LocalSendTime: 179.868us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 266.41 KB - MergeBlockTime: 0ns - OpenTime: 75.838us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 264.423us - SplitBlockHashComputeTime: 49.346us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 27.814us - ExecTime: 1.126ms - InitProbeSideTime: 68.165us - JoinFilterTimer: 835ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 35.378us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.907us - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 676.390us - ProbeWhenBuildSideOutputTime: 89.561us - ProbeWhenProbeSideOutputTime: 203.993us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.474us - ProjectionTime: 345.374us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 1.328ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.537ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 244.38 KB - MemoryUsage: - Blocks: 244.38 KB - PeakMemoryUsage: 245.42 KB - OpenTime: 20.432us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=20):(Active: 1.867ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.625ms - CloseTime: 39.723us - GetBlockTime: 930.878us - OpenTime: 10.58us - PrepareTime: 187.729us - SinkTime: 631.612us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.820ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.587ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.554us - CompressTime: 0ns - ExecTime: 729.47us - InputRows: 754 - LocalBytesSent: 186.97 KB - LocalSendTime: 180.171us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 86.216us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 210.474us - SplitBlockHashComputeTime: 37.843us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 18.455us - ExecTime: 832.798us - InitProbeSideTime: 50.874us - JoinFilterTimer: 652ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 36.576us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.592us - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 495.539us - ProbeWhenBuildSideOutputTime: 101.164us - ProbeWhenProbeSideOutputTime: 126.841us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 27.591us - ProjectionTime: 242.265us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.681us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 153.843us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 229.63 KB - MemoryUsage: - Blocks: 229.63 KB - PeakMemoryUsage: 233.81 KB - OpenTime: 28.251us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms PipelineXTask (index=22):(Active: 2.906ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.664ms - CloseTime: 48.233us - GetBlockTime: 1.645ms - OpenTime: 11.914us - PrepareTime: 174.854us - SinkTime: 922.557us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.229ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.859us - CompressTime: 0ns - ExecTime: 1.19ms - InputRows: 767 - LocalBytesSent: 190.04 KB - LocalSendTime: 235.662us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 258.41 KB - MergeBlockTime: 0ns - OpenTime: 83.28us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 317.540us - SplitBlockHashComputeTime: 77.71us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 18.79us - ExecTime: 1.430ms - InitProbeSideTime: 98.545us - JoinFilterTimer: 4.236us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 32.806us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.912us - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 891.265us - ProbeWhenBuildSideOutputTime: 112.560us - ProbeWhenProbeSideOutputTime: 252.932us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.48us - ProjectionTime: 431.534us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.356us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 238.319us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 235.88 KB - MemoryUsage: - Blocks: 235.88 KB - PeakMemoryUsage: 237.97 KB - OpenTime: 22.119us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s776ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 388.568us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 298.158us - CloseTime: 8.192us - GetBlockTime: 92.8us - OpenTime: 1.947us - PrepareTime: 64.335us - SinkTime: 147.715us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 365.189us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.672ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.142us - BuildRows: 165 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 86.970us - BuildTableInsertTime: 20.102us - BuildTableTime: 25.102us - CloseTime: 0ns - ExecTime: 161.321us - InputRows: 164 - MemoryUsage: - BuildBlocks: 11.85 KB - BuildKeyArena: 4.00 KB - HashTable: 1.65 KB - PeakMemoryUsage: 13.49 KB - OpenTime: 17.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.289us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.19 KB - MemoryUsage: - Blocks: 6.44 KB - PeakMemoryUsage: 6.44 KB - OpenTime: 16.657us - ProjectionTime: 0ns - RowsProduced: 164 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s215ms PipelineXTask (index=3):(Active: 464.868us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 368.85us - CloseTime: 8.273us - GetBlockTime: 111.804us - OpenTime: 3.160us - PrepareTime: 80.79us - SinkTime: 211.849us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 447.447us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.127ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.570us - BuildRows: 169 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 131.309us - BuildTableInsertTime: 18.617us - BuildTableTime: 24.813us - CloseTime: 0ns - ExecTime: 235.198us - InputRows: 168 - MemoryUsage: - BuildBlocks: 12.14 KB - BuildKeyArena: 4.00 KB - HashTable: 1.66 KB - PeakMemoryUsage: 13.80 KB - OpenTime: 25.661us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 135.5us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.88 KB - MemoryUsage: - Blocks: 21.81 KB - PeakMemoryUsage: 21.81 KB - OpenTime: 22.924us - ProjectionTime: 0ns - RowsProduced: 168 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s157ms PipelineXTask (index=5):(Active: 406.289us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 328.599us - CloseTime: 10.410us - GetBlockTime: 85.938us - OpenTime: 2.851us - PrepareTime: 58.346us - SinkTime: 178.539us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 383.931us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.219ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.693us - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.998us - BuildTableInsertTime: 29.359us - BuildTableTime: 37.239us - CloseTime: 0ns - ExecTime: 189.662us - InputRows: 139 - MemoryUsage: - BuildBlocks: 10.04 KB - BuildKeyArena: 4.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 11.59 KB - OpenTime: 13.139us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.888us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.508us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.25 KB - MemoryUsage: - Blocks: 16.13 KB - PeakMemoryUsage: 16.13 KB - OpenTime: 13.549us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s222ms PipelineXTask (index=7):(Active: 393.854us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 330.924us - CloseTime: 7.196us - GetBlockTime: 74.949us - OpenTime: 2.160us - PrepareTime: 48.434us - SinkTime: 190.270us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 374.172us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.461ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.401us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 119.16us - BuildTableInsertTime: 19.504us - BuildTableTime: 25.207us - CloseTime: 0ns - ExecTime: 197.480us - InputRows: 160 - MemoryUsage: - BuildBlocks: 11.56 KB - BuildKeyArena: 4.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 13.19 KB - OpenTime: 10.186us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.124us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.750us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.00 KB - MemoryUsage: - Blocks: 8.13 KB - PeakMemoryUsage: 8.13 KB - OpenTime: 12.863us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s239ms PipelineXTask (index=9):(Active: 295.393us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 221.104us - CloseTime: 3.616us - GetBlockTime: 71.628us - OpenTime: 3.398us - PrepareTime: 61.374us - SinkTime: 110.516us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.245us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.423ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.419us - BuildRows: 143 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.11us - BuildTableInsertTime: 16.804us - BuildTableTime: 20.322us - CloseTime: 0ns - ExecTime: 126.780us - InputRows: 142 - MemoryUsage: - BuildBlocks: 10.26 KB - BuildKeyArena: 4.00 KB - HashTable: 1.56 KB - PeakMemoryUsage: 11.82 KB - OpenTime: 18.825us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.143us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.441us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.38 KB - MemoryUsage: - Blocks: 14.69 KB - PeakMemoryUsage: 14.69 KB - OpenTime: 18.739us - ProjectionTime: 0ns - RowsProduced: 142 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s222ms PipelineXTask (index=11):(Active: 389.499us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 309.851us - CloseTime: 4.741us - GetBlockTime: 84.106us - OpenTime: 2.572us - PrepareTime: 66.62us - SinkTime: 186.639us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 375.159us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.454ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.32us - BuildRows: 172 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 119.743us - BuildTableInsertTime: 20.378us - BuildTableTime: 23.976us - CloseTime: 0ns - ExecTime: 204.346us - InputRows: 171 - MemoryUsage: - BuildBlocks: 12.36 KB - BuildKeyArena: 4.00 KB - HashTable: 1.68 KB - PeakMemoryUsage: 14.03 KB - OpenTime: 19.841us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.165us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.455us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.81 KB - MemoryUsage: - Blocks: 16.88 KB - PeakMemoryUsage: 16.88 KB - OpenTime: 20.283us - ProjectionTime: 0ns - RowsProduced: 171 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s206ms PipelineXTask (index=13):(Active: 340.712us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 259.707us - CloseTime: 4.238us - GetBlockTime: 77.502us - OpenTime: 2.259us - PrepareTime: 68.231us - SinkTime: 137.971us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 324.922us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.90ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.500us - BuildRows: 157 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 82.73us - BuildTableInsertTime: 15.141us - BuildTableTime: 20.44us - CloseTime: 0ns - ExecTime: 162.692us - InputRows: 156 - MemoryUsage: - BuildBlocks: 11.27 KB - BuildKeyArena: 4.00 KB - HashTable: 1.62 KB - PeakMemoryUsage: 12.88 KB - OpenTime: 27.97us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.763us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.50 KB - MemoryUsage: - Blocks: 7.31 KB - PeakMemoryUsage: 7.31 KB - OpenTime: 13.514us - ProjectionTime: 0ns - RowsProduced: 156 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s238ms PipelineXTask (index=15):(Active: 359.214us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 276.971us - CloseTime: 15.997us - GetBlockTime: 82.568us - OpenTime: 3.560us - PrepareTime: 56.785us - SinkTime: 147.847us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 333.466us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.984ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.610us - BuildRows: 141 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 84.336us - BuildTableInsertTime: 18.563us - BuildTableTime: 26.807us - CloseTime: 0ns - ExecTime: 158.75us - InputRows: 140 - MemoryUsage: - BuildBlocks: 10.12 KB - BuildKeyArena: 4.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 11.66 KB - OpenTime: 12.111us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.882us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.750us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.00 KB - MemoryUsage: - Blocks: 16.19 KB - PeakMemoryUsage: 16.19 KB - OpenTime: 12.406us - ProjectionTime: 0ns - RowsProduced: 140 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s206ms PipelineXTask (index=17):(Active: 344.146us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 261.5us - CloseTime: 5.606us - GetBlockTime: 67.11us - OpenTime: 3.70us - PrepareTime: 69.868us - SinkTime: 143.196us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 325.935us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.424ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.264us - BuildRows: 156 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 80.935us - BuildTableInsertTime: 12.769us - BuildTableTime: 17.61us - CloseTime: 0ns - ExecTime: 160.181us - InputRows: 155 - MemoryUsage: - BuildBlocks: 11.20 KB - BuildKeyArena: 4.00 KB - HashTable: 1.61 KB - PeakMemoryUsage: 12.81 KB - OpenTime: 19.701us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.75 KB - MemoryUsage: - Blocks: 5.19 KB - PeakMemoryUsage: 5.19 KB - OpenTime: 21.230us - ProjectionTime: 0ns - RowsProduced: 155 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s215ms PipelineXTask (index=19):(Active: 368.17us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 299.297us - CloseTime: 11.798us - GetBlockTime: 66.244us - OpenTime: 3.104us - PrepareTime: 48.259us - SinkTime: 183.834us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 345.169us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.783ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.670us - BuildRows: 153 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 92.667us - BuildTableInsertTime: 24.388us - BuildTableTime: 31.76us - CloseTime: 0ns - ExecTime: 194.621us - InputRows: 152 - MemoryUsage: - BuildBlocks: 10.98 KB - BuildKeyArena: 4.00 KB - HashTable: 1.60 KB - PeakMemoryUsage: 12.58 KB - OpenTime: 12.729us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.783us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.637us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.50 KB - MemoryUsage: - Blocks: 12.69 KB - PeakMemoryUsage: 12.69 KB - OpenTime: 19.764us - ProjectionTime: 0ns - RowsProduced: 152 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s208ms PipelineXTask (index=21):(Active: 252.557us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 190.866us - CloseTime: 4.296us - GetBlockTime: 42.752us - OpenTime: 2.120us - PrepareTime: 49.645us - SinkTime: 115.698us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 239.104us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.102ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.179us - BuildRows: 146 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.332us - BuildTableInsertTime: 16.540us - BuildTableTime: 20.86us - CloseTime: 0ns - ExecTime: 124.926us - InputRows: 145 - MemoryUsage: - BuildBlocks: 10.48 KB - BuildKeyArena: 4.00 KB - HashTable: 1.57 KB - PeakMemoryUsage: 12.04 KB - OpenTime: 10.708us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.711us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.108us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.50 KB - MemoryUsage: - Blocks: 13.94 KB - PeakMemoryUsage: 13.94 KB - OpenTime: 14.772us - ProjectionTime: 0ns - RowsProduced: 145 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s207ms PipelineXTask (index=23):(Active: 274.973us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 202.903us - CloseTime: 3.186us - GetBlockTime: 55.507us - OpenTime: 2.391us - PrepareTime: 60.784us - SinkTime: 104.189us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 259.310us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.604ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.152us - BuildRows: 153 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 58.627us - BuildTableInsertTime: 14.513us - BuildTableTime: 18.401us - CloseTime: 0ns - ExecTime: 122.575us - InputRows: 152 - MemoryUsage: - BuildBlocks: 10.98 KB - BuildKeyArena: 4.00 KB - HashTable: 1.60 KB - PeakMemoryUsage: 12.58 KB - OpenTime: 20.297us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.596us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.38 KB - MemoryUsage: - Blocks: 5.00 KB - PeakMemoryUsage: 5.00 KB - OpenTime: 14.751us - ProjectionTime: 0ns - RowsProduced: 152 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s215ms Fragment 22: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.899ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.686ms - CloseTime: 32.746us - GetBlockTime: 1.16ms - OpenTime: 4.502us - PrepareTime: 168.813us - SinkTime: 580.284us - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.856ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.199ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.910us - CompressTime: 0ns - ExecTime: 671.744us - InputRows: 166 - LocalBytesSent: 32.06 KB - LocalSendTime: 229.167us - LocalSentRows: 166 - MemoryUsage: - PeakMemoryUsage: 65.13 KB - MergeBlockTime: 0ns - OpenTime: 88.453us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 166 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 123.852us - SplitBlockHashComputeTime: 34.428us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 19.806us - ExecTime: 928.860us - InitProbeSideTime: 31.420us - JoinFilterTimer: 1.307us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 30.801us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.359us - ProbeFindNextTime: 0ns - ProbeRows: 166 - ProbeTime: 598.432us - ProbeWhenBuildSideOutputTime: 65.85us - ProbeWhenProbeSideOutputTime: 164.626us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.103us - ProjectionTime: 235.666us - RowsProduced: 166 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 80.789us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 48.81 KB - OpenTime: 984ns - ProjectionTime: 0ns - RowsProduced: 166 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s766ms PipelineXTask (index=4):(Active: 1.863ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.648ms - CloseTime: 39.464us - GetBlockTime: 940.770us - OpenTime: 7.277us - PrepareTime: 163.211us - SinkTime: 629.19us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.815ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.376ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.243us - CompressTime: 0ns - ExecTime: 731.98us - InputRows: 181 - LocalBytesSent: 34.94 KB - LocalSendTime: 266.283us - LocalSentRows: 181 - MemoryUsage: - PeakMemoryUsage: 64.44 KB - MergeBlockTime: 0ns - OpenTime: 81.357us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 181 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 113.318us - SplitBlockHashComputeTime: 35.309us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 11.347us - ExecTime: 892.47us - InitProbeSideTime: 44.415us - JoinFilterTimer: 1.257us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 39.539us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.515us - ProbeFindNextTime: 0ns - ProbeRows: 181 - ProbeTime: 588.77us - ProbeWhenBuildSideOutputTime: 60.32us - ProbeWhenProbeSideOutputTime: 132.903us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.555us - ProjectionTime: 209.951us - RowsProduced: 181 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 60.663us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 56.50 KB - OpenTime: 746ns - ProjectionTime: 0ns - RowsProduced: 181 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s766ms PipelineXTask (index=8):(Active: 1.794ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.614ms - CloseTime: 26.602us - GetBlockTime: 967.623us - OpenTime: 6.440us - PrepareTime: 140.55us - SinkTime: 580.499us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.759ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.176ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.406us - CompressTime: 0ns - ExecTime: 660.613us - InputRows: 160 - LocalBytesSent: 30.90 KB - LocalSendTime: 230.129us - LocalSentRows: 160 - MemoryUsage: - PeakMemoryUsage: 58.56 KB - MergeBlockTime: 0ns - OpenTime: 70.629us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 160 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 124.10us - SplitBlockHashComputeTime: 39.498us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.332us - ExecTime: 906.638us - InitProbeSideTime: 51.773us - JoinFilterTimer: 1.246us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 27.969us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.213us - ProbeFindNextTime: 0ns - ProbeRows: 160 - ProbeTime: 649.831us - ProbeWhenBuildSideOutputTime: 67.362us - ProbeWhenProbeSideOutputTime: 182.819us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.312us - ProjectionTime: 176.804us - RowsProduced: 160 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 67.97us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 52.38 KB - OpenTime: 768ns - ProjectionTime: 0ns - RowsProduced: 160 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s766ms PipelineXTask (index=12):(Active: 1.832ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.626ms - CloseTime: 27.798us - GetBlockTime: 1.7ms - OpenTime: 9.406us - PrepareTime: 161.908us - SinkTime: 537.790us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.796ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.941ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.24us - CompressTime: 0ns - ExecTime: 621.835us - InputRows: 152 - LocalBytesSent: 29.37 KB - LocalSendTime: 239.186us - LocalSentRows: 152 - MemoryUsage: - PeakMemoryUsage: 58.00 KB - MergeBlockTime: 0ns - OpenTime: 75.430us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 152 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 90.784us - SplitBlockHashComputeTime: 31.715us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 11.644us - ExecTime: 956.510us - InitProbeSideTime: 50.440us - JoinFilterTimer: 1.313us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 32.236us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.204us - ProbeFindNextTime: 0ns - ProbeRows: 152 - ProbeTime: 685.516us - ProbeWhenBuildSideOutputTime: 49.769us - ProbeWhenProbeSideOutputTime: 209.479us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 46.471us - ProjectionTime: 191.7us - RowsProduced: 152 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 61.246us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 227.06 KB - OpenTime: 760ns - ProjectionTime: 0ns - RowsProduced: 152 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s766ms PipelineXTask (index=16):(Active: 2.63ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.860ms - CloseTime: 27.374us - GetBlockTime: 1.138ms - OpenTime: 5.197us - PrepareTime: 164.494us - SinkTime: 596.146us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.533ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.251us - CompressTime: 0ns - ExecTime: 690.571us - InputRows: 138 - LocalBytesSent: 26.64 KB - LocalSendTime: 210.560us - LocalSentRows: 138 - MemoryUsage: - PeakMemoryUsage: 54.06 KB - MergeBlockTime: 0ns - OpenTime: 91.495us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 138 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 104.500us - SplitBlockHashComputeTime: 35.735us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 16.442us - ExecTime: 1.35ms - InitProbeSideTime: 44.256us - JoinFilterTimer: 1.143us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 28.524us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.27us - ProbeFindNextTime: 0ns - ProbeRows: 138 - ProbeTime: 694.427us - ProbeWhenBuildSideOutputTime: 72.106us - ProbeWhenProbeSideOutputTime: 156.22us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.796us - ProjectionTime: 241.871us - RowsProduced: 138 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 75.319us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 177.00 KB - OpenTime: 988ns - ProjectionTime: 0ns - RowsProduced: 138 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s770ms PipelineXTask (index=20):(Active: 2.672ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.470ms - CloseTime: 36.518us - GetBlockTime: 1.673ms - OpenTime: 8.720us - PrepareTime: 151.994us - SinkTime: 716.540us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.262ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.341ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.886us - CompressTime: 0ns - ExecTime: 803.568us - InputRows: 790 - LocalBytesSent: 154.88 KB - LocalSendTime: 187.153us - LocalSentRows: 790 - MemoryUsage: - PeakMemoryUsage: 249.38 KB - MergeBlockTime: 0ns - OpenTime: 79.317us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 790 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 267.585us - SplitBlockHashComputeTime: 52.507us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 21.954us - ExecTime: 1.613ms - InitProbeSideTime: 82.664us - JoinFilterTimer: 1.91us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 35.475us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.550us - ProbeFindNextTime: 0ns - ProbeRows: 790 - ProbeTime: 789.706us - ProbeWhenBuildSideOutputTime: 84.548us - ProbeWhenProbeSideOutputTime: 210.795us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 89.268us - ProjectionTime: 709.364us - RowsProduced: 790 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 65.536us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 210.31 KB - OpenTime: 849ns - ProjectionTime: 0ns - RowsProduced: 790 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s767ms PipelineXTask (index=24):(Active: 3.426ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.235ms - CloseTime: 33.444us - GetBlockTime: 1.956ms - OpenTime: 9.406us - PrepareTime: 141.443us - SinkTime: 1.120ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.371ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.332ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.525us - CompressTime: 0ns - ExecTime: 1.203ms - InputRows: 2.069K (2069) - LocalBytesSent: 406.49 KB - LocalSendTime: 233.475us - LocalSentRows: 2.069K (2069) - MemoryUsage: - PeakMemoryUsage: 624.69 KB - MergeBlockTime: 0ns - OpenTime: 79.612us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.069K (2069) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 472.934us - SplitBlockHashComputeTime: 116.920us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 21.278us - ExecTime: 1.838ms - InitProbeSideTime: 125.713us - JoinFilterTimer: 1.789us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 30.207us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.453us - ProbeFindNextTime: 0ns - ProbeRows: 2.069K (2069) - ProbeTime: 1.318ms - ProbeWhenBuildSideOutputTime: 151.948us - ProbeWhenProbeSideOutputTime: 293.15us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 301.281us - ProjectionTime: 401.836us - RowsProduced: 2.069K (2069) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 81.714us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 539.25 KB - OpenTime: 751ns - ProjectionTime: 0ns - RowsProduced: 2.069K (2069) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s769ms PipelineXTask (index=28):(Active: 3.919ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.710ms - CloseTime: 37.744us - GetBlockTime: 2.408ms - OpenTime: 5.842us - PrepareTime: 159.221us - SinkTime: 1.186ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.45ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.151us - CompressTime: 0ns - ExecTime: 1.280ms - InputRows: 3.953K (3953) - LocalBytesSent: 777.48 KB - LocalSendTime: 214.803us - LocalSentRows: 3.953K (3953) - MemoryUsage: - PeakMemoryUsage: 1.17 MB - MergeBlockTime: 0ns - OpenTime: 90.447us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.953K (3953) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 574.681us - SplitBlockHashComputeTime: 133.207us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 26.49us - ExecTime: 2.327ms - InitProbeSideTime: 175.235us - JoinFilterTimer: 1.395us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 27.903us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.865us - ProbeFindNextTime: 0ns - ProbeRows: 3.953K (3953) - ProbeTime: 1.792ms - ProbeWhenBuildSideOutputTime: 214.152us - ProbeWhenProbeSideOutputTime: 507.310us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 533.759us - ProjectionTime: 412.847us - RowsProduced: 3.953K (3953) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 59.737us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 356.19 KB - OpenTime: 729ns - ProjectionTime: 0ns - RowsProduced: 3.953K (3953) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s770ms PipelineXTask (index=32):(Active: 2.800ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.586ms - CloseTime: 35.726us - GetBlockTime: 1.557ms - OpenTime: 8.554us - PrepareTime: 162.871us - SinkTime: 915.401us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.746ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.202ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.218us - CompressTime: 0ns - ExecTime: 988.99us - InputRows: 1.443K (1443) - LocalBytesSent: 283.17 KB - LocalSendTime: 201.121us - LocalSentRows: 1.443K (1443) - MemoryUsage: - PeakMemoryUsage: 433.00 KB - MergeBlockTime: 0ns - OpenTime: 71.317us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.443K (1443) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 383.372us - SplitBlockHashComputeTime: 69.74us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 26.185us - ExecTime: 1.481ms - InitProbeSideTime: 92.550us - JoinFilterTimer: 1.255us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 29.999us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.150us - ProbeFindNextTime: 0ns - ProbeRows: 1.443K (1443) - ProbeTime: 1.5ms - ProbeWhenBuildSideOutputTime: 100.182us - ProbeWhenProbeSideOutputTime: 234.965us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 204.742us - ProjectionTime: 353.90us - RowsProduced: 1.443K (1443) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 11 - CloseTime: 0ns - ExecTime: 68.391us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 193.38 KB - OpenTime: 817ns - ProjectionTime: 0ns - RowsProduced: 1.443K (1443) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s770ms PipelineXTask (index=36):(Active: 1.626ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.429ms - CloseTime: 31.929us - GetBlockTime: 798.240us - OpenTime: 10.648us - PrepareTime: 148.797us - SinkTime: 526.675us - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.576ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.234ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.126us - CompressTime: 0ns - ExecTime: 618.528us - InputRows: 90 - LocalBytesSent: 17.38 KB - LocalSendTime: 250.421us - LocalSentRows: 90 - MemoryUsage: - PeakMemoryUsage: 37.13 KB - MergeBlockTime: 0ns - OpenTime: 83.20us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 90 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 63.983us - SplitBlockHashComputeTime: 24.561us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 16.687us - ExecTime: 741.382us - InitProbeSideTime: 33.636us - JoinFilterTimer: 906ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 24.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.596us - ProbeFindNextTime: 0ns - ProbeRows: 90 - ProbeTime: 487.242us - ProbeWhenBuildSideOutputTime: 54.104us - ProbeWhenProbeSideOutputTime: 129.920us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 19.415us - ProjectionTime: 178.395us - RowsProduced: 90 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 9 - CloseTime: 0ns - ExecTime: 56.150us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 190.06 KB - OpenTime: 1.179us - ProjectionTime: 0ns - RowsProduced: 90 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s773ms PipelineXTask (index=40):(Active: 1.148ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 930.536us - CloseTime: 27.344us - GetBlockTime: 470.775us - OpenTime: 10.423us - PrepareTime: 172.385us - SinkTime: 381.759us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.105ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.558ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.827us - CompressTime: 0ns - ExecTime: 496.145us - InputRows: 48 - LocalBytesSent: 9.27 KB - LocalSendTime: 161.280us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 22.56 KB - MergeBlockTime: 0ns - OpenTime: 109.119us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 48 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 45.122us - SplitBlockHashComputeTime: 12.904us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 14.732us - ExecTime: 455.681us - InitProbeSideTime: 32.803us - JoinFilterTimer: 376ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 33.784us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.756us - ProbeFindNextTime: 0ns - ProbeRows: 48 - ProbeTime: 276.552us - ProbeWhenBuildSideOutputTime: 25.323us - ProbeWhenProbeSideOutputTime: 71.799us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.557us - ProjectionTime: 106.322us - RowsProduced: 48 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 34.284us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 363.78 KB - OpenTime: 823ns - ProjectionTime: 0ns - RowsProduced: 48 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s772ms PipelineXTask (index=44):(Active: 871.942us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 673.640us - CloseTime: 23.723us - GetBlockTime: 248.357us - OpenTime: 21.935us - PrepareTime: 146.415us - SinkTime: 335.257us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 836.181us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.14ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.263us - CompressTime: 0ns - ExecTime: 412.353us - InputRows: 10 - LocalBytesSent: 1.93 KB - LocalSendTime: 126.202us - LocalSentRows: 10 - MemoryUsage: - PeakMemoryUsage: 6.13 KB - MergeBlockTime: 0ns - OpenTime: 69.586us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 10 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 15.391us - SplitBlockHashComputeTime: 3.810us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 12.706us - ExecTime: 256.846us - InitProbeSideTime: 22.640us - JoinFilterTimer: 164ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 48.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 588ns - ProbeFindNextTime: 0ns - ProbeRows: 10 - ProbeTime: 106.959us - ProbeWhenBuildSideOutputTime: 12.992us - ProbeWhenProbeSideOutputTime: 14.88us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.580us - ProjectionTime: 79.900us - RowsProduced: 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 27.5us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 12.00 KB - OpenTime: 799ns - ProjectionTime: 0ns - RowsProduced: 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s773ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.202ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.51ms - CloseTime: 24.983us - GetBlockTime: 891.68us - OpenTime: 7.690us - PrepareTime: 110.796us - SinkTime: 84.797us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.160ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.411ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 83.120us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.596us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 19.187us - ExecTime: 828.664us - InitProbeSideTime: 66.345us - JoinFilterTimer: 589ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 30.840us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.501us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 461.243us - ProbeWhenBuildSideOutputTime: 48.500us - ProbeWhenProbeSideOutputTime: 122.91us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.528us - ProjectionTime: 283.352us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 4.602us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.107us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.44 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 144.60 KB - OpenTime: 40.353us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s767ms PipelineXTask (index=5):(Active: 1.276ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.134ms - CloseTime: 30.582us - GetBlockTime: 934.402us - OpenTime: 7.307us - PrepareTime: 100.330us - SinkTime: 131.158us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.234ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.282ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 139.284us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 12.291us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.914us - ExecTime: 861.487us - InitProbeSideTime: 50.419us - JoinFilterTimer: 538ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 28.398us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.196us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 488.53us - ProbeWhenBuildSideOutputTime: 58.961us - ProbeWhenProbeSideOutputTime: 141.288us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 40.659us - ProjectionTime: 286.856us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 12.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.778us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.25 KB - MemoryUsage: - Blocks: 145.75 KB - PeakMemoryUsage: 149.22 KB - OpenTime: 16.249us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=9):(Active: 1.336ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.187ms - CloseTime: 43.223us - GetBlockTime: 1.63ms - OpenTime: 4.46us - PrepareTime: 96.303us - SinkTime: 70.67us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.281ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.211ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.872us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.413us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 38.357us - ExecTime: 990.845us - InitProbeSideTime: 64.810us - JoinFilterTimer: 539ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 24.842us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.843us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 532.92us - ProbeWhenBuildSideOutputTime: 41.358us - ProbeWhenProbeSideOutputTime: 137.894us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.137us - ProjectionTime: 357.51us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 3.655us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.919us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.81 KB - MemoryUsage: - Blocks: 152.63 KB - PeakMemoryUsage: 154.22 KB - OpenTime: 18.732us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=13):(Active: 1.783ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.626ms - CloseTime: 40.704us - GetBlockTime: 1.418ms - OpenTime: 6.360us - PrepareTime: 103.850us - SinkTime: 115.507us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.728ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.38ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 109.652us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.335us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 26.722us - ExecTime: 1.288ms - InitProbeSideTime: 119.256us - JoinFilterTimer: 1.483us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 34.806us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.487us - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 752.252us - ProbeWhenBuildSideOutputTime: 70.893us - ProbeWhenProbeSideOutputTime: 217.376us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 60.68us - ProjectionTime: 416.261us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.806us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 143.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.13 KB - MemoryUsage: - Blocks: 150.88 KB - PeakMemoryUsage: 152.47 KB - OpenTime: 15.433us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s767ms PipelineXTask (index=17):(Active: 1.317ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.219ms - CloseTime: 16.230us - GetBlockTime: 1.78ms - OpenTime: 4.758us - PrepareTime: 72.740us - SinkTime: 89.0us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.294ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.830ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 85.858us - InputRows: 738 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.369us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 10.363us - ExecTime: 968.420us - InitProbeSideTime: 85.890us - JoinFilterTimer: 671ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 22.131us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.741us - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 521.319us - ProbeWhenBuildSideOutputTime: 45.178us - ProbeWhenProbeSideOutputTime: 121.901us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 33.96us - ProjectionTime: 381.69us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 4.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.716us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.81 KB - MemoryUsage: - Blocks: 179.81 KB - PeakMemoryUsage: 180.61 KB - OpenTime: 16.502us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s765ms PipelineXTask (index=21):(Active: 1.877ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.738ms - CloseTime: 35.991us - GetBlockTime: 1.536ms - OpenTime: 9.460us - PrepareTime: 87.563us - SinkTime: 119.301us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.829ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.283ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 116.941us - InputRows: 784 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.713us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 28.389us - ExecTime: 1.449ms - InitProbeSideTime: 107.473us - JoinFilterTimer: 1.770us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 27.34us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.396us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 938.529us - ProbeWhenBuildSideOutputTime: 105.807us - ProbeWhenProbeSideOutputTime: 271.654us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 73.837us - ProjectionTime: 404.320us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 5.503us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 125.35us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 172.88 KB - MemoryUsage: - Blocks: 164.75 KB - PeakMemoryUsage: 166.35 KB - OpenTime: 20.917us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=25):(Active: 1.235ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.102ms - CloseTime: 35.929us - GetBlockTime: 917.792us - OpenTime: 6.74us - PrepareTime: 84.922us - SinkTime: 102.228us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.181ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.884ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 99.590us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.381us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 27.377us - ExecTime: 863.686us - InitProbeSideTime: 56.123us - JoinFilterTimer: 563ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 24.4us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.390us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 500.457us - ProbeWhenBuildSideOutputTime: 58.394us - ProbeWhenProbeSideOutputTime: 133.980us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.28us - ProjectionTime: 266.706us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 6.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.31 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 143.80 KB - OpenTime: 12.424us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=29):(Active: 1.429ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.318ms - CloseTime: 13.729us - GetBlockTime: 1.113ms - OpenTime: 9.314us - PrepareTime: 82.572us - SinkTime: 128.434us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.403ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.834ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.544us - InputRows: 758 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.454us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 6.868us - ExecTime: 971.923us - InitProbeSideTime: 53.89us - JoinFilterTimer: 782ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 25.778us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.166us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 567.971us - ProbeWhenBuildSideOutputTime: 59.387us - ProbeWhenProbeSideOutputTime: 165.240us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 40.379us - ProjectionTime: 327.733us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.29us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 159.286us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 176.63 KB - MemoryUsage: - Blocks: 152.19 KB - PeakMemoryUsage: 152.19 KB - OpenTime: 19.143us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=33):(Active: 1.428ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.297ms - CloseTime: 30.393us - GetBlockTime: 1.71ms - OpenTime: 18.415us - PrepareTime: 76.157us - SinkTime: 131.597us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.384ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.332ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 128.45us - InputRows: 776 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.353us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 18.226us - ExecTime: 943.281us - InitProbeSideTime: 47.787us - JoinFilterTimer: 653ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 34.631us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.978us - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 568.271us - ProbeWhenBuildSideOutputTime: 59.376us - ProbeWhenProbeSideOutputTime: 158.230us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.517us - ProjectionTime: 275.402us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 10.183us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 150.886us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 173.69 KB - MemoryUsage: - Blocks: 145.75 KB - PeakMemoryUsage: 145.75 KB - OpenTime: 17.151us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s768ms PipelineXTask (index=37):(Active: 1.498ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.345ms - CloseTime: 36.692us - GetBlockTime: 1.135ms - OpenTime: 7.177us - PrepareTime: 105.112us - SinkTime: 148.99us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.452ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.348ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 144.192us - InputRows: 777 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.375us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 25.13us - ExecTime: 1.57ms - InitProbeSideTime: 73.488us - JoinFilterTimer: 601ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 37.883us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.298us - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 609.179us - ProbeWhenBuildSideOutputTime: 54.609us - ProbeWhenProbeSideOutputTime: 166.250us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.876us - ProjectionTime: 328.143us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 9.25us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.304us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 180.25 KB - MemoryUsage: - Blocks: 166.69 KB - PeakMemoryUsage: 167.49 KB - OpenTime: 18.581us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=41):(Active: 1.153ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.22ms - CloseTime: 34.855us - GetBlockTime: 871.360us - OpenTime: 7.160us - PrepareTime: 82.740us - SinkTime: 76.950us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.107ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.914ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 75.708us - InputRows: 754 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.43us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 23.93us - ExecTime: 819.341us - InitProbeSideTime: 66.575us - JoinFilterTimer: 636ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 25.640us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.368us - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 455.114us - ProbeWhenBuildSideOutputTime: 59.745us - ProbeWhenProbeSideOutputTime: 116.997us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.929us - ProjectionTime: 286.93us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.257us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.88 KB - MemoryUsage: - Blocks: 161.00 KB - PeakMemoryUsage: 163.40 KB - OpenTime: 16.704us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s766ms PipelineXTask (index=45):(Active: 1.291ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.166ms - CloseTime: 31.255us - GetBlockTime: 993.948us - OpenTime: 9.188us - PrepareTime: 78.763us - SinkTime: 102.880us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.251ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.168ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 99.967us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.387us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 20.207us - ExecTime: 900.523us - InitProbeSideTime: 65.620us - JoinFilterTimer: 442ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 29.808us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.945us - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 544.58us - ProbeWhenBuildSideOutputTime: 52.243us - ProbeWhenProbeSideOutputTime: 138.909us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.793us - ProjectionTime: 270.351us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 137.349us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 173.38 KB - MemoryUsage: - Blocks: 173.38 KB - PeakMemoryUsage: 174.97 KB - OpenTime: 14.43us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s765ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.519ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.436ms - CloseTime: 16.464us - GetBlockTime: 42.600us - OpenTime: 2.657us - PrepareTime: 59.27us - SinkTime: 1.356ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.493ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.687ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 2.865us - BuildRows: 8.218K (8218) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 769.273us - BuildTableInsertTime: 514.257us - BuildTableTime: 532.824us - CloseTime: 0ns - ExecTime: 1.367ms - InputRows: 8.217K (8217) - MemoryUsage: - BuildBlocks: 397.64 KB - BuildKeyArena: 192.00 KB - HashTable: 96.11 KB - PeakMemoryUsage: 681.74 KB - OpenTime: 11.742us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=202): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 13.898us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.148us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 607.75 KB - MemoryUsage: - Blocks: 307.75 KB - PeakMemoryUsage: 408.00 KB - OpenTime: 14.593us - ProjectionTime: 0ns - RowsProduced: 8.217K (8217) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 297.693ms PipelineXTask (index=6):(Active: 143.226us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.181us - CloseTime: 12.956us - GetBlockTime: 0ns - OpenTime: 2.790us - PrepareTime: 74.979us - SinkTime: 20.444us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.196us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.609ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.911us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.570us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.517ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.532us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 48.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 36.921us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 83.560us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.116us - CloseTime: 4.593us - GetBlockTime: 0ns - OpenTime: 1.759us - PrepareTime: 56.191us - SinkTime: 5.948us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.142us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 333.294us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.123us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.210us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.522ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.400us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.920us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 90.692us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.246us - CloseTime: 3.542us - GetBlockTime: 0ns - OpenTime: 3.286us - PrepareTime: 56.873us - SinkTime: 4.438us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.136us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.785us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.886us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.481us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.683ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.789us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.995us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.271us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 92.428us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.735us - CloseTime: 4.407us - GetBlockTime: 0ns - OpenTime: 2.467us - PrepareTime: 60.523us - SinkTime: 4.888us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.136us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 184.764us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.909us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.844us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.673ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.393us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.484us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.425us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 123.385us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.382us - CloseTime: 4.838us - GetBlockTime: 0ns - OpenTime: 1.825us - PrepareTime: 77.561us - SinkTime: 18.993us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.106us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.734us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.136us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.569us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.665ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.923us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.170us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 118.292us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.608us - CloseTime: 12.858us - GetBlockTime: 0ns - OpenTime: 2.557us - PrepareTime: 59.304us - SinkTime: 17.234us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.443us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.310ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 26.400us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.781us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.425ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.177us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.734us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.859us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 140.991us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.751us - CloseTime: 9.668us - GetBlockTime: 0ns - OpenTime: 2.464us - PrepareTime: 88.392us - SinkTime: 15.944us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.412us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.949ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.604us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.746us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.532ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.273us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.802us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.731us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 111.711us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.265us - CloseTime: 13.487us - GetBlockTime: 0ns - OpenTime: 2.471us - PrepareTime: 54.666us - SinkTime: 18.32us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.647us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 594.497us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.611us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.372us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.449ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.507us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 118.843us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.48us - CloseTime: 17.49us - GetBlockTime: 0ns - OpenTime: 1.545us - PrepareTime: 64.314us - SinkTime: 17.66us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.339us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.278ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.209us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.318us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.704ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.402us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.39us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=42):(Active: 112.852us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 39.79us - CloseTime: 13.727us - GetBlockTime: 0ns - OpenTime: 3.350us - PrepareTime: 52.825us - SinkTime: 23.424us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.690us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.686ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.426us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.161us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.719ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.25us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.419us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.620us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 94.710us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.649us - CloseTime: 4.784us - GetBlockTime: 0ns - OpenTime: 2.619us - PrepareTime: 48.874us - SinkTime: 5.919us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.749us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 632.753us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963340 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 21.48us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.324us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 312.439ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.650us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.491us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.842us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 405.255us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 323.843us - CloseTime: 7.129us - GetBlockTime: 96.557us - OpenTime: 2.858us - PrepareTime: 65.706us - SinkTime: 173.559us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 388.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.717ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.104us - BuildRows: 267 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 109.309us - BuildTableInsertTime: 20.640us - BuildTableTime: 25.735us - CloseTime: 0ns - ExecTime: 192.187us - InputRows: 266 - MemoryUsage: - BuildBlocks: 12.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.05 KB - PeakMemoryUsage: 23.99 KB - OpenTime: 21.28us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.111us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 114.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.94 KB - MemoryUsage: - Blocks: 17.88 KB - PeakMemoryUsage: 17.88 KB - OpenTime: 19.176us - ProjectionTime: 0ns - RowsProduced: 266 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s672ms PipelineXTask (index=7):(Active: 290.531us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 214.691us - CloseTime: 18.654us - GetBlockTime: 67.103us - OpenTime: 1.612us - PrepareTime: 51.517us - SinkTime: 109.5us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.195us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.542ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.347us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.41us - BuildTableInsertTime: 18.99us - BuildTableTime: 25.306us - CloseTime: 0ns - ExecTime: 115.410us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.74 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.84 KB - OpenTime: 8.933us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 16.557us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.896us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.63 KB - MemoryUsage: - Blocks: 7.13 KB - PeakMemoryUsage: 7.13 KB - OpenTime: 18.908us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s691ms PipelineXTask (index=11):(Active: 310.37us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 243.62us - CloseTime: 2.717us - GetBlockTime: 70.194us - OpenTime: 3.658us - PrepareTime: 53.764us - SinkTime: 132.712us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 295.759us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.804ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.165us - BuildRows: 285 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 80.87us - BuildTableInsertTime: 27.996us - BuildTableTime: 30.475us - CloseTime: 0ns - ExecTime: 142.163us - InputRows: 284 - MemoryUsage: - BuildBlocks: 13.81 KB - BuildKeyArena: 12.00 KB - HashTable: 3.12 KB - PeakMemoryUsage: 24.92 KB - OpenTime: 10.690us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.63us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.00 KB - MemoryUsage: - Blocks: 17.81 KB - PeakMemoryUsage: 17.81 KB - OpenTime: 23.855us - ProjectionTime: 0ns - RowsProduced: 284 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s672ms PipelineXTask (index=15):(Active: 278.565us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 220.229us - CloseTime: 4.868us - GetBlockTime: 55.874us - OpenTime: 3.220us - PrepareTime: 45.680us - SinkTime: 126.126us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.130us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.381ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.426us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.643us - BuildTableInsertTime: 19.532us - BuildTableTime: 23.638us - CloseTime: 0ns - ExecTime: 133.398us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.72 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.82 KB - OpenTime: 9.237us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.338us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.538us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.94 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 11.819us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s691ms PipelineXTask (index=19):(Active: 311.924us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 243.277us - CloseTime: 9.51us - GetBlockTime: 66.533us - OpenTime: 3.809us - PrepareTime: 50.920us - SinkTime: 133.661us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 293.220us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.625ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.476us - BuildRows: 277 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.178us - BuildTableInsertTime: 20.286us - BuildTableTime: 27.651us - CloseTime: 0ns - ExecTime: 143.145us - InputRows: 276 - MemoryUsage: - BuildBlocks: 13.41 KB - BuildKeyArena: 12.00 KB - HashTable: 3.09 KB - PeakMemoryUsage: 24.49 KB - OpenTime: 11.124us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.318us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.856us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.25 KB - MemoryUsage: - Blocks: 20.69 KB - PeakMemoryUsage: 20.69 KB - OpenTime: 14.570us - ProjectionTime: 0ns - RowsProduced: 276 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s677ms PipelineXTask (index=23):(Active: 304.967us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 229.432us - CloseTime: 4.765us - GetBlockTime: 60.646us - OpenTime: 3.273us - PrepareTime: 61.970us - SinkTime: 130.497us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 290.561us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.241ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.843us - BuildRows: 280 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.688us - BuildTableInsertTime: 17.554us - BuildTableTime: 22.570us - CloseTime: 0ns - ExecTime: 148.378us - InputRows: 279 - MemoryUsage: - BuildBlocks: 13.60 KB - BuildKeyArena: 12.00 KB - HashTable: 3.10 KB - PeakMemoryUsage: 24.69 KB - OpenTime: 20.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.393us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.392us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.13 KB - MemoryUsage: - Blocks: 19.94 KB - PeakMemoryUsage: 19.94 KB - OpenTime: 15.819us - ProjectionTime: 0ns - RowsProduced: 279 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s693ms PipelineXTask (index=27):(Active: 349.634us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 268.643us - CloseTime: 12.369us - GetBlockTime: 78.264us - OpenTime: 2.954us - PrepareTime: 59.753us - SinkTime: 139.20us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.223us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.816ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.21us - BuildRows: 267 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 75.735us - BuildTableInsertTime: 20.559us - BuildTableTime: 26.73us - CloseTime: 0ns - ExecTime: 147.574us - InputRows: 266 - MemoryUsage: - BuildBlocks: 12.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.05 KB - PeakMemoryUsage: 23.99 KB - OpenTime: 10.833us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.768us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.607us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.81 KB - MemoryUsage: - Blocks: 19.19 KB - PeakMemoryUsage: 19.19 KB - OpenTime: 21.206us - ProjectionTime: 0ns - RowsProduced: 266 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s680ms PipelineXTask (index=31):(Active: 250.885us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 181.238us - CloseTime: 4.265us - GetBlockTime: 59.789us - OpenTime: 2.782us - PrepareTime: 57.961us - SinkTime: 92.640us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 239.31us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.828ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.876us - BuildRows: 312 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 55.364us - BuildTableInsertTime: 17.891us - BuildTableTime: 21.319us - CloseTime: 0ns - ExecTime: 100.878us - InputRows: 311 - MemoryUsage: - BuildBlocks: 15.11 KB - BuildKeyArena: 12.00 KB - HashTable: 3.22 KB - PeakMemoryUsage: 26.33 KB - OpenTime: 9.274us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.900us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.452us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.69 KB - MemoryUsage: - Blocks: 22.56 KB - PeakMemoryUsage: 22.56 KB - OpenTime: 15.211us - ProjectionTime: 0ns - RowsProduced: 311 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s676ms PipelineXTask (index=35):(Active: 301.454us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 233.514us - CloseTime: 6.40us - GetBlockTime: 76.41us - OpenTime: 2.785us - PrepareTime: 47.978us - SinkTime: 109.19us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 279.876us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.904ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.405us - BuildRows: 281 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.14us - BuildTableInsertTime: 18.957us - BuildTableTime: 22.367us - CloseTime: 0ns - ExecTime: 117.636us - InputRows: 280 - MemoryUsage: - BuildBlocks: 13.64 KB - BuildKeyArena: 12.00 KB - HashTable: 3.10 KB - PeakMemoryUsage: 24.73 KB - OpenTime: 10.384us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.494us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.19 KB - MemoryUsage: - Blocks: 17.88 KB - PeakMemoryUsage: 17.88 KB - OpenTime: 12.38us - ProjectionTime: 0ns - RowsProduced: 280 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s672ms PipelineXTask (index=39):(Active: 240.907us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 167.179us - CloseTime: 5.693us - GetBlockTime: 48.621us - OpenTime: 1.511us - PrepareTime: 62.645us - SinkTime: 91.54us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.271us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.545ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.21us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.921us - BuildTableInsertTime: 14.993us - BuildTableTime: 17.511us - CloseTime: 0ns - ExecTime: 110.443us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.71 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.81 KB - OpenTime: 22.24us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.660us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.75 KB - MemoryUsage: - Blocks: 9.38 KB - PeakMemoryUsage: 9.38 KB - OpenTime: 15.242us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s691ms PipelineXTask (index=43):(Active: 298.211us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 224.845us - CloseTime: 2.576us - GetBlockTime: 63.95us - OpenTime: 3.611us - PrepareTime: 62.76us - SinkTime: 128.702us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 287.788us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.656ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.883us - BuildRows: 271 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 72.774us - BuildTableInsertTime: 22.784us - BuildTableTime: 25.133us - CloseTime: 0ns - ExecTime: 148.409us - InputRows: 270 - MemoryUsage: - BuildBlocks: 13.15 KB - BuildKeyArena: 12.00 KB - HashTable: 3.06 KB - PeakMemoryUsage: 24.20 KB - OpenTime: 21.221us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.233us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.31 KB - MemoryUsage: - Blocks: 12.56 KB - PeakMemoryUsage: 12.56 KB - OpenTime: 21.257us - ProjectionTime: 0ns - RowsProduced: 270 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s689ms PipelineXTask (index=47):(Active: 551.884us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 480.735us - CloseTime: 15.300us - GetBlockTime: 107.151us - OpenTime: 3.43us - PrepareTime: 46.586us - SinkTime: 271.582us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 501.821us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.780ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.422us - BuildRows: 288 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 158.977us - BuildTableInsertTime: 26.61us - BuildTableTime: 37.553us - CloseTime: 0ns - ExecTime: 276.688us - InputRows: 287 - MemoryUsage: - BuildBlocks: 13.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.13 KB - PeakMemoryUsage: 25.07 KB - OpenTime: 8.833us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 125.920us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.63 KB - MemoryUsage: - Blocks: 18.31 KB - PeakMemoryUsage: 18.31 KB - OpenTime: 15.74us - ProjectionTime: 0ns - RowsProduced: 287 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s697ms Fragment 23: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 5.870ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.643ms - CloseTime: 34.767us - GetBlockTime: 3.587ms - OpenTime: 7.330us - PrepareTime: 178.232us - SinkTime: 1.898ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.820ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.703ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.82us - CompressTime: 0ns - ExecTime: 1.999ms - InputRows: 7.187K (7187) - LocalBytesSent: 1.02 MB - LocalSendTime: 306.560us - LocalSentRows: 7.187K (7187) - MemoryUsage: - PeakMemoryUsage: 1.54 MB - MergeBlockTime: 0ns - OpenTime: 98.863us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.187K (7187) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.13ms - SplitBlockHashComputeTime: 299.546us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 24 - BuildOutputBlock: 0ns - CloseTime: 17.338us - ExecTime: 3.440ms - InitProbeSideTime: 256.529us - JoinFilterTimer: 3.122us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 26.310us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.4us - ProbeFindNextTime: 0ns - ProbeRows: 7.187K (7187) - ProbeTime: 2.660ms - ProbeWhenBuildSideOutputTime: 493.646us - ProbeWhenProbeSideOutputTime: 659.733us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 610.423us - ProjectionTime: 632.234us - RowsProduced: 7.187K (7187) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 24 - CloseTime: 0ns - ExecTime: 99.192us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 756.00 KB - OpenTime: 3.456us - ProjectionTime: 0ns - RowsProduced: 7.187K (7187) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s756ms PipelineXTask (index=8):(Active: 1.791ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.583ms - CloseTime: 25.302us - GetBlockTime: 945.212us - OpenTime: 10.849us - PrepareTime: 161.519us - SinkTime: 512.322us - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.741ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.606ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.136us - CompressTime: 0ns - ExecTime: 613.985us - InputRows: 116 - LocalBytesSent: 16.51 KB - LocalSendTime: 203.500us - LocalSentRows: 116 - MemoryUsage: - PeakMemoryUsage: 34.00 KB - MergeBlockTime: 0ns - OpenTime: 98.288us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 116 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.698us - SplitBlockHashComputeTime: 34.782us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 12.664us - ExecTime: 836.356us - InitProbeSideTime: 52.851us - JoinFilterTimer: 1.76us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 25.759us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.162us - ProbeFindNextTime: 0ns - ProbeRows: 116 - ProbeTime: 537.263us - ProbeWhenBuildSideOutputTime: 76.100us - ProbeWhenProbeSideOutputTime: 96.979us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.294us - ProjectionTime: 220.512us - RowsProduced: 116 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 80.909us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 29.75 KB - OpenTime: 775ns - ProjectionTime: 0ns - RowsProduced: 116 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=16):(Active: 1.762ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.566ms - CloseTime: 22.80us - GetBlockTime: 988.674us - OpenTime: 8.351us - PrepareTime: 153.782us - SinkTime: 448.467us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.719ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.418ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.205us - CompressTime: 0ns - ExecTime: 534.421us - InputRows: 123 - LocalBytesSent: 17.52 KB - LocalSendTime: 142.980us - LocalSentRows: 123 - MemoryUsage: - PeakMemoryUsage: 35.31 KB - MergeBlockTime: 0ns - OpenTime: 80.885us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 123 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 74.224us - SplitBlockHashComputeTime: 44.659us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.539us - ExecTime: 911.696us - InitProbeSideTime: 45.380us - JoinFilterTimer: 1.633us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.90us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.405us - ProbeFindNextTime: 0ns - ProbeRows: 123 - ProbeTime: 585.620us - ProbeWhenBuildSideOutputTime: 83.156us - ProbeWhenProbeSideOutputTime: 87.761us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.0us - ProjectionTime: 252.244us - RowsProduced: 123 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 51.739us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 16.13 KB - OpenTime: 786ns - ProjectionTime: 0ns - RowsProduced: 123 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=24):(Active: 6.409ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.182ms - CloseTime: 36.760us - GetBlockTime: 1.412ms - OpenTime: 4.402us - PrepareTime: 181.32us - SinkTime: 4.646ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.569ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.702ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.305us - CompressTime: 0ns - ExecTime: 4.733ms - InputRows: 762 - LocalBytesSent: 110.97 KB - LocalSendTime: 4.76ms - LocalSentRows: 762 - MemoryUsage: - PeakMemoryUsage: 173.25 KB - MergeBlockTime: 0ns - OpenTime: 80.931us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 762 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 240.268us - SplitBlockHashComputeTime: 83.166us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 19.174us - ExecTime: 1.360ms - InitProbeSideTime: 70.17us - JoinFilterTimer: 1.743us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 48.804us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.294us - ProbeFindNextTime: 0ns - ProbeRows: 762 - ProbeTime: 838.793us - ProbeWhenBuildSideOutputTime: 125.515us - ProbeWhenProbeSideOutputTime: 139.421us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 121.740us - ProjectionTime: 395.162us - RowsProduced: 762 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 49.510us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 115.31 KB - OpenTime: 697ns - ProjectionTime: 0ns - RowsProduced: 762 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s759ms PipelineXTask (index=32):(Active: 2.50ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.847ms - CloseTime: 29.434us - GetBlockTime: 1.69ms - OpenTime: 6.771us - PrepareTime: 160.177us - SinkTime: 609.515us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.993ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.925ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.684us - CompressTime: 0ns - ExecTime: 697.868us - InputRows: 123 - LocalBytesSent: 17.51 KB - LocalSendTime: 210.348us - LocalSentRows: 123 - MemoryUsage: - PeakMemoryUsage: 35.31 KB - MergeBlockTime: 0ns - OpenTime: 83.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 123 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.434us - SplitBlockHashComputeTime: 52.921us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 15.568us - ExecTime: 986.568us - InitProbeSideTime: 51.560us - JoinFilterTimer: 1.399us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.88us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.649us - ProbeFindNextTime: 0ns - ProbeRows: 123 - ProbeTime: 628.930us - ProbeWhenBuildSideOutputTime: 75.707us - ProbeWhenProbeSideOutputTime: 104.834us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 50.712us - ProjectionTime: 248.788us - RowsProduced: 123 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 65.858us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 12.00 KB - OpenTime: 669ns - ProjectionTime: 0ns - RowsProduced: 123 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=40):(Active: 1.841ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.694ms - CloseTime: 22.430us - GetBlockTime: 1.38ms - OpenTime: 5.38us - PrepareTime: 112.436us - SinkTime: 478.818us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.794ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.115ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.422us - CompressTime: 0ns - ExecTime: 551.838us - InputRows: 123 - LocalBytesSent: 17.49 KB - LocalSendTime: 164.322us - LocalSentRows: 123 - MemoryUsage: - PeakMemoryUsage: 34.06 KB - MergeBlockTime: 0ns - OpenTime: 67.830us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 123 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 98.197us - SplitBlockHashComputeTime: 50.960us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.200us - ExecTime: 929.146us - InitProbeSideTime: 38.700us - JoinFilterTimer: 1.400us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.577us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.359us - ProbeFindNextTime: 0ns - ProbeRows: 123 - ProbeTime: 588.474us - ProbeWhenBuildSideOutputTime: 93.99us - ProbeWhenProbeSideOutputTime: 92.773us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.822us - ProjectionTime: 259.51us - RowsProduced: 123 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 55.37us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 5.38 KB - OpenTime: 560ns - ProjectionTime: 0ns - RowsProduced: 123 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=48):(Active: 1.562ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.401ms - CloseTime: 24.395us - GetBlockTime: 786.848us - OpenTime: 5.895us - PrepareTime: 123.948us - SinkTime: 474.802us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.496ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.267ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.95us - CompressTime: 0ns - ExecTime: 551.210us - InputRows: 129 - LocalBytesSent: 18.36 KB - LocalSendTime: 205.461us - LocalSentRows: 129 - MemoryUsage: - PeakMemoryUsage: 39.31 KB - MergeBlockTime: 0ns - OpenTime: 69.582us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 129 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.7us - SplitBlockHashComputeTime: 34.891us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.420us - ExecTime: 726.27us - InitProbeSideTime: 36.67us - JoinFilterTimer: 1.103us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 17.242us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.936us - ProbeFindNextTime: 0ns - ProbeRows: 129 - ProbeTime: 478.473us - ProbeWhenBuildSideOutputTime: 83.516us - ProbeWhenProbeSideOutputTime: 79.718us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 33.119us - ProjectionTime: 186.755us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 43.242us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 9.00 KB - OpenTime: 540ns - ProjectionTime: 0ns - RowsProduced: 129 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=56):(Active: 2.3ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.805ms - CloseTime: 34.904us - GetBlockTime: 1.98ms - OpenTime: 8.277us - PrepareTime: 147.692us - SinkTime: 517.368us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.929ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.703ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.920us - CompressTime: 0ns - ExecTime: 589.726us - InputRows: 126 - LocalBytesSent: 17.93 KB - LocalSendTime: 134.826us - LocalSentRows: 126 - MemoryUsage: - PeakMemoryUsage: 39.19 KB - MergeBlockTime: 0ns - OpenTime: 59.31us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 126 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 94.49us - SplitBlockHashComputeTime: 66.353us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.29us - ExecTime: 1.1ms - InitProbeSideTime: 50.424us - JoinFilterTimer: 1.213us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.178us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.453us - ProbeFindNextTime: 0ns - ProbeRows: 126 - ProbeTime: 631.789us - ProbeWhenBuildSideOutputTime: 97.612us - ProbeWhenProbeSideOutputTime: 104.874us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 52.783us - ProjectionTime: 279.722us - RowsProduced: 126 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 54.552us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 16.00 KB - OpenTime: 519ns - ProjectionTime: 0ns - RowsProduced: 126 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=64):(Active: 1.682ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.511ms - CloseTime: 27.79us - GetBlockTime: 907.3us - OpenTime: 6.497us - PrepareTime: 133.386us - SinkTime: 460.344us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.635ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.205ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.444us - CompressTime: 0ns - ExecTime: 532.104us - InputRows: 128 - LocalBytesSent: 18.23 KB - LocalSendTime: 196.150us - LocalSentRows: 128 - MemoryUsage: - PeakMemoryUsage: 37.63 KB - MergeBlockTime: 0ns - OpenTime: 66.503us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 64.891us - SplitBlockHashComputeTime: 44.667us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 13.451us - ExecTime: 796.950us - InitProbeSideTime: 36.684us - JoinFilterTimer: 1.50us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 34.778us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.580us - ProbeFindNextTime: 0ns - ProbeRows: 128 - ProbeTime: 480.681us - ProbeWhenBuildSideOutputTime: 74.258us - ProbeWhenProbeSideOutputTime: 83.768us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.955us - ProjectionTime: 218.587us - RowsProduced: 128 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 77.978us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 11.69 KB - OpenTime: 553ns - ProjectionTime: 0ns - RowsProduced: 128 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s763ms PipelineXTask (index=72):(Active: 1.699ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.508ms - CloseTime: 36.984us - GetBlockTime: 879.715us - OpenTime: 6.709us - PrepareTime: 140.164us - SinkTime: 485.102us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.640ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.80ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.38us - CompressTime: 0ns - ExecTime: 562.232us - InputRows: 129 - LocalBytesSent: 18.36 KB - LocalSendTime: 225.426us - LocalSentRows: 129 - MemoryUsage: - PeakMemoryUsage: 38.88 KB - MergeBlockTime: 0ns - OpenTime: 70.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 129 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 66.195us - SplitBlockHashComputeTime: 29.292us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 23.34us - ExecTime: 819.371us - InitProbeSideTime: 39.269us - JoinFilterTimer: 1.24us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 40.755us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.634us - ProbeFindNextTime: 0ns - ProbeRows: 129 - ProbeTime: 518.357us - ProbeWhenBuildSideOutputTime: 87.887us - ProbeWhenProbeSideOutputTime: 82.840us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.337us - ProjectionTime: 192.884us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 50.38us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 5.38 KB - OpenTime: 692ns - ProjectionTime: 0ns - RowsProduced: 129 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=80):(Active: 14.49ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 13.837ms - CloseTime: 47.658us - GetBlockTime: 998.577us - OpenTime: 10.171us - PrepareTime: 148.321us - SinkTime: 12.695ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.853ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.34ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.99us - CompressTime: 0ns - ExecTime: 12.794ms - InputRows: 131 - LocalBytesSent: 18.65 KB - LocalSendTime: 219.919us - LocalSentRows: 131 - MemoryUsage: - PeakMemoryUsage: 38.00 KB - MergeBlockTime: 0ns - OpenTime: 88.560us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 131 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 78.392us - SplitBlockHashComputeTime: 43.113us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 28.500us - ExecTime: 910.28us - InitProbeSideTime: 36.388us - JoinFilterTimer: 1.174us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 17.661us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.438us - ProbeFindNextTime: 0ns - ProbeRows: 131 - ProbeTime: 573.446us - ProbeWhenBuildSideOutputTime: 84.893us - ProbeWhenProbeSideOutputTime: 87.478us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 33.261us - ProjectionTime: 244.254us - RowsProduced: 131 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 57.52us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 9.00 KB - OpenTime: 676ns - ProjectionTime: 0ns - RowsProduced: 131 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s763ms PipelineXTask (index=88):(Active: 1.413ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.229ms - CloseTime: 24.833us - GetBlockTime: 772.244us - OpenTime: 22.354us - PrepareTime: 131.255us - SinkTime: 341.588us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.373ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 738.856us DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.617us - CompressTime: 0ns - ExecTime: 415.477us - InputRows: 123 - LocalBytesSent: 17.50 KB - LocalSendTime: 111.752us - LocalSentRows: 123 - MemoryUsage: - PeakMemoryUsage: 33.19 KB - MergeBlockTime: 0ns - OpenTime: 63.439us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 123 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 61.924us - SplitBlockHashComputeTime: 28.758us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.430us - ExecTime: 718.484us - InitProbeSideTime: 43.612us - JoinFilterTimer: 996ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 28.206us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.759us - ProbeFindNextTime: 0ns - ProbeRows: 123 - ProbeTime: 451.130us - ProbeWhenBuildSideOutputTime: 54.978us - ProbeWhenProbeSideOutputTime: 75.618us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.539us - ProjectionTime: 177.381us - RowsProduced: 123 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 64.147us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 12.13 KB - OpenTime: 624ns - ProjectionTime: 0ns - RowsProduced: 123 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s763ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.490ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.385ms - CloseTime: 22.415us - GetBlockTime: 1.137ms - OpenTime: 8.883us - PrepareTime: 67.632us - SinkTime: 102.248us - GetBlockCounter: 34 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.586ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 100.559us - InputRows: 722 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.465us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 21.68us - ExecTime: 984.31us - InitProbeSideTime: 70.307us - JoinFilterTimer: 1.128us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 25.403us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.176us - ProbeFindNextTime: 0ns - ProbeRows: 722 - ProbeTime: 530.251us - ProbeWhenBuildSideOutputTime: 54.472us - ProbeWhenProbeSideOutputTime: 100.789us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 56.97us - ProjectionTime: 354.387us - RowsProduced: 722 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 93.27us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 621ns - ProjectionTime: 0ns - RowsProduced: 722 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=9):(Active: 1.351ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.232ms - CloseTime: 35.808us - GetBlockTime: 963.7us - OpenTime: 10.108us - PrepareTime: 66.253us - SinkTime: 147.284us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.612ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 142.793us - InputRows: 788 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.452us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 34.121us - ExecTime: 929.259us - InitProbeSideTime: 67.259us - JoinFilterTimer: 1.259us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 23.670us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.519us - ProbeFindNextTime: 0ns - ProbeRows: 788 - ProbeTime: 533.211us - ProbeWhenBuildSideOutputTime: 64.33us - ProbeWhenProbeSideOutputTime: 119.316us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 50.300us - ProjectionTime: 297.691us - RowsProduced: 788 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 48.34us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 609ns - ProjectionTime: 0ns - RowsProduced: 788 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms PipelineXTask (index=17):(Active: 1.474ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.354ms - CloseTime: 36.805us - GetBlockTime: 1.74ms - OpenTime: 7.35us - PrepareTime: 69.397us - SinkTime: 137.216us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.402ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.251ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 131.277us - InputRows: 763 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.403us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 34.439us - ExecTime: 1.12ms - InitProbeSideTime: 93.843us - JoinFilterTimer: 1.59us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 26.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.564us - ProbeFindNextTime: 0ns - ProbeRows: 763 - ProbeTime: 614.606us - ProbeWhenBuildSideOutputTime: 64.823us - ProbeWhenProbeSideOutputTime: 134.652us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 67.97us - ProjectionTime: 285.772us - RowsProduced: 763 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 56.327us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 622ns - ProjectionTime: 0ns - RowsProduced: 763 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=25):(Active: 1.232ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.139ms - CloseTime: 13.568us - GetBlockTime: 957.594us - OpenTime: 3.464us - PrepareTime: 70.676us - SinkTime: 74.82us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.792ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 66.757us - InputRows: 762 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.353us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.106us - ExecTime: 892.27us - InitProbeSideTime: 60.421us - JoinFilterTimer: 763ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 29.479us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.356us - ProbeFindNextTime: 0ns - ProbeRows: 762 - ProbeTime: 512.450us - ProbeWhenBuildSideOutputTime: 50.993us - ProbeWhenProbeSideOutputTime: 101.739us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 48.532us - ProjectionTime: 293.482us - RowsProduced: 762 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 39.507us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 587ns - ProjectionTime: 0ns - RowsProduced: 762 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=33):(Active: 1.737ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.603ms - CloseTime: 31.887us - GetBlockTime: 1.347ms - OpenTime: 3.193us - PrepareTime: 92.842us - SinkTime: 132.263us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.682ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.233ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 126.649us - InputRows: 760 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.577us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 30.347us - ExecTime: 1.272ms - InitProbeSideTime: 94.810us - JoinFilterTimer: 1.686us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 31.803us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.219us - ProbeFindNextTime: 0ns - ProbeRows: 760 - ProbeTime: 746.934us - ProbeWhenBuildSideOutputTime: 57.517us - ProbeWhenProbeSideOutputTime: 162.468us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.919us - ProjectionTime: 387.758us - RowsProduced: 760 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 57.26us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 481ns - ProjectionTime: 0ns - RowsProduced: 760 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms PipelineXTask (index=41):(Active: 1.330ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.244ms - CloseTime: 22.498us - GetBlockTime: 993.246us - OpenTime: 4.24us - PrepareTime: 56.198us - SinkTime: 117.381us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.261ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.109ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 112.953us - InputRows: 768 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.82us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 21.82us - ExecTime: 908.900us - InitProbeSideTime: 75.243us - JoinFilterTimer: 1.82us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 16.391us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.670us - ProbeFindNextTime: 0ns - ProbeRows: 768 - ProbeTime: 548.66us - ProbeWhenBuildSideOutputTime: 56.973us - ProbeWhenProbeSideOutputTime: 86.547us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 48.433us - ProjectionTime: 275.728us - RowsProduced: 768 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 62.360us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 478ns - ProjectionTime: 0ns - RowsProduced: 768 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=49):(Active: 1.31ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 943.684us - CloseTime: 19.129us - GetBlockTime: 725.321us - OpenTime: 9.447us - PrepareTime: 53.266us - SinkTime: 112.266us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 993.577us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.58ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 108.89us - InputRows: 135 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.262us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 18.211us - ExecTime: 674.24us - InitProbeSideTime: 32.943us - JoinFilterTimer: 1.159us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 20.963us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.210us - ProbeFindNextTime: 0ns - ProbeRows: 135 - ProbeTime: 387.85us - ProbeWhenBuildSideOutputTime: 40.766us - ProbeWhenProbeSideOutputTime: 67.444us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.787us - ProjectionTime: 210.55us - RowsProduced: 135 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 39.652us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 9.50 KB - OpenTime: 506ns - ProjectionTime: 0ns - RowsProduced: 135 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms PipelineXTask (index=57):(Active: 1.592ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.489ms - CloseTime: 32.960us - GetBlockTime: 1.274ms - OpenTime: 5.334us - PrepareTime: 59.638us - SinkTime: 112.158us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.507ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 847.693us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 105.414us - InputRows: 794 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.191us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 32.158us - ExecTime: 1.197ms - InitProbeSideTime: 94.611us - JoinFilterTimer: 1.664us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 22.577us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.958us - ProbeFindNextTime: 0ns - ProbeRows: 794 - ProbeTime: 677.65us - ProbeWhenBuildSideOutputTime: 67.508us - ProbeWhenProbeSideOutputTime: 156.985us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 48.508us - ProjectionTime: 407.213us - RowsProduced: 794 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 56.513us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 479ns - ProjectionTime: 0ns - RowsProduced: 794 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=65):(Active: 991.291us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 926.792us - CloseTime: 11.197us - GetBlockTime: 780.611us - OpenTime: 2.361us - PrepareTime: 47.437us - SinkTime: 80.724us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 970.750us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.844ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 81.976us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.365us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.574us - ExecTime: 724.95us - InitProbeSideTime: 58.163us - JoinFilterTimer: 1.125us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 14.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.324us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 403.397us - ProbeWhenBuildSideOutputTime: 47.30us - ProbeWhenProbeSideOutputTime: 79.308us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 41.642us - ProjectionTime: 254.491us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 42.378us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 493ns - ProjectionTime: 0ns - RowsProduced: 756 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=73):(Active: 1.179ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.109ms - CloseTime: 16.509us - GetBlockTime: 915.797us - OpenTime: 4.822us - PrepareTime: 44.134us - SinkTime: 92.780us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.142ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 648.494us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 76.307us - InputRows: 783 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.42us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 14.699us - ExecTime: 843.444us - InitProbeSideTime: 106.71us - JoinFilterTimer: 1.260us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 17.92us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.896us - ProbeFindNextTime: 0ns - ProbeRows: 783 - ProbeTime: 480.6us - ProbeWhenBuildSideOutputTime: 44.783us - ProbeWhenProbeSideOutputTime: 85.200us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.869us - ProjectionTime: 291.139us - RowsProduced: 783 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 51.432us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 473ns - ProjectionTime: 0ns - RowsProduced: 783 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s763ms PipelineXTask (index=81):(Active: 1.112ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.42ms - CloseTime: 10.250us - GetBlockTime: 902.664us - OpenTime: 2.738us - PrepareTime: 51.44us - SinkTime: 56.155us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.86ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.196ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.933us - InputRows: 768 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.78us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 9.80us - ExecTime: 842.279us - InitProbeSideTime: 69.187us - JoinFilterTimer: 1.228us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 17.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.476us - ProbeFindNextTime: 0ns - ProbeRows: 768 - ProbeTime: 455.686us - ProbeWhenBuildSideOutputTime: 46.901us - ProbeWhenProbeSideOutputTime: 66.557us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 41.108us - ProjectionTime: 301.830us - RowsProduced: 768 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 38.343us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 457ns - ProjectionTime: 0ns - RowsProduced: 768 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=89):(Active: 1.75ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 989.127us - CloseTime: 13.207us - GetBlockTime: 873.318us - OpenTime: 3.503us - PrepareTime: 64.551us - SinkTime: 45.226us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 648.860us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 42.705us - InputRows: 1.401K (1401) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.10us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.955us - ExecTime: 838.556us - InitProbeSideTime: 91.463us - JoinFilterTimer: 824ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 29.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.532us - ProbeFindNextTime: 0ns - ProbeRows: 1.401K (1401) - ProbeTime: 481.921us - ProbeWhenBuildSideOutputTime: 62.489us - ProbeWhenProbeSideOutputTime: 102.358us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 61.571us - ProjectionTime: 252.484us - RowsProduced: 1.401K (1401) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 37.863us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 476ns - ProjectionTime: 0ns - RowsProduced: 1.401K (1401) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s763ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 2.864ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.771ms - CloseTime: 14.938us - GetBlockTime: 2.406ms - OpenTime: 8.443us - PrepareTime: 63.708us - SinkTime: 252.835us - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.832ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.263ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 243.677us - InputRows: 7.807K (7807) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.191us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 24 - BuildOutputBlock: 0ns - CloseTime: 13.558us - ExecTime: 2.256ms - InitProbeSideTime: 189.244us - JoinFilterTimer: 2.247us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 23.738us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.412us - ProbeFindNextTime: 0ns - ProbeRows: 7.807K (7807) - ProbeTime: 1.489ms - ProbeWhenBuildSideOutputTime: 186.593us - ProbeWhenProbeSideOutputTime: 492.13us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 171.816us - ProjectionTime: 626.787us - RowsProduced: 7.807K (7807) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 24 - CloseTime: 0ns - ExecTime: 93.470us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 903.44 KB - OpenTime: 587ns - ProjectionTime: 0ns - RowsProduced: 7.807K (7807) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s756ms PipelineXTask (index=10):(Active: 1.482ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.397ms - CloseTime: 11.251us - GetBlockTime: 1.41ms - OpenTime: 8.373us - PrepareTime: 59.145us - SinkTime: 196.959us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.444ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.176ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 193.67us - InputRows: 124 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.911us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 8.775us - ExecTime: 928.749us - InitProbeSideTime: 40.900us - JoinFilterTimer: 1.356us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.575us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.731us - ProbeFindNextTime: 0ns - ProbeRows: 124 - ProbeTime: 466.217us - ProbeWhenBuildSideOutputTime: 39.632us - ProbeWhenProbeSideOutputTime: 98.494us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.797us - ProjectionTime: 364.425us - RowsProduced: 124 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 74.578us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 6.00 KB - OpenTime: 582ns - ProjectionTime: 0ns - RowsProduced: 124 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms PipelineXTask (index=18):(Active: 835.58us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 728.116us - CloseTime: 29.557us - GetBlockTime: 589.704us - OpenTime: 7.18us - PrepareTime: 63.511us - SinkTime: 54.9us - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 783.59us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.50ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 52.783us - InputRows: 127 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.637us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 28.128us - ExecTime: 542.906us - InitProbeSideTime: 32.188us - JoinFilterTimer: 712ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 17.605us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.237us - ProbeFindNextTime: 0ns - ProbeRows: 127 - ProbeTime: 268.966us - ProbeWhenBuildSideOutputTime: 21.239us - ProbeWhenProbeSideOutputTime: 51.714us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.208us - ProjectionTime: 192.416us - RowsProduced: 127 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 48.194us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 22.06 KB - OpenTime: 666ns - ProjectionTime: 0ns - RowsProduced: 127 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s757ms PipelineXTask (index=26):(Active: 977.116us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 884.469us - CloseTime: 21.981us - GetBlockTime: 714.909us - OpenTime: 5.62us - PrepareTime: 59.843us - SinkTime: 90.827us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 937.363us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.856ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 87.307us - InputRows: 128 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.104us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 20.56us - ExecTime: 653.581us - InitProbeSideTime: 45.884us - JoinFilterTimer: 1.14us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.12us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.545us - ProbeFindNextTime: 0ns - ProbeRows: 128 - ProbeTime: 356.419us - ProbeWhenBuildSideOutputTime: 26.121us - ProbeWhenProbeSideOutputTime: 65.213us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.823us - ProjectionTime: 221.843us - RowsProduced: 128 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 49.935us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 7.81 KB - OpenTime: 628ns - ProjectionTime: 0ns - RowsProduced: 128 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms PipelineXTask (index=34):(Active: 870.729us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 780.422us - CloseTime: 16.44us - GetBlockTime: 578.584us - OpenTime: 6.911us - PrepareTime: 61.413us - SinkTime: 92.222us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 830.818us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.501ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 89.608us - InputRows: 116 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 969ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.670us - ExecTime: 529.651us - InitProbeSideTime: 36.564us - JoinFilterTimer: 916ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.996us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.718us - ProbeFindNextTime: 0ns - ProbeRows: 116 - ProbeTime: 289.334us - ProbeWhenBuildSideOutputTime: 22.880us - ProbeWhenProbeSideOutputTime: 59.180us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.452us - ProjectionTime: 172.373us - RowsProduced: 116 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 37.418us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 12.06 KB - OpenTime: 822ns - ProjectionTime: 0ns - RowsProduced: 116 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=42):(Active: 786.432us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 708.502us - CloseTime: 12.381us - GetBlockTime: 556.797us - OpenTime: 3.662us - PrepareTime: 56.860us - SinkTime: 74.894us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 756.257us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.530ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 71.356us - InputRows: 125 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 966ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.773us - ExecTime: 495.797us - InitProbeSideTime: 33.223us - JoinFilterTimer: 792ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.871us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.963us - ProbeFindNextTime: 0ns - ProbeRows: 125 - ProbeTime: 278.736us - ProbeWhenBuildSideOutputTime: 24.197us - ProbeWhenProbeSideOutputTime: 53.250us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.934us - ProjectionTime: 150.233us - RowsProduced: 125 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 38.236us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 11.94 KB - OpenTime: 488ns - ProjectionTime: 0ns - RowsProduced: 125 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=50):(Active: 973.843us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 885.158us - CloseTime: 30.344us - GetBlockTime: 708.1us - OpenTime: 7.20us - PrepareTime: 45.601us - SinkTime: 93.477us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 929.948us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.627ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 88.901us - InputRows: 130 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1000ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 28.305us - ExecTime: 657.131us - InitProbeSideTime: 28.346us - JoinFilterTimer: 890ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.888us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.455us - ProbeFindNextTime: 0ns - ProbeRows: 130 - ProbeTime: 363.854us - ProbeWhenBuildSideOutputTime: 30.907us - ProbeWhenProbeSideOutputTime: 88.657us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.231us - ProjectionTime: 196.248us - RowsProduced: 130 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 55.848us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 6.44 KB - OpenTime: 510ns - ProjectionTime: 0ns - RowsProduced: 130 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=58):(Active: 816.252us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 742.224us - CloseTime: 17.111us - GetBlockTime: 591.793us - OpenTime: 5.264us - PrepareTime: 45.683us - SinkTime: 46.419us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 777.213us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.786ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 44.209us - InputRows: 127 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.224us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 15.858us - ExecTime: 530.803us - InitProbeSideTime: 29.316us - JoinFilterTimer: 3.975us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.991us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.991us - ProbeFindNextTime: 0ns - ProbeRows: 127 - ProbeTime: 295.955us - ProbeWhenBuildSideOutputTime: 21.621us - ProbeWhenProbeSideOutputTime: 51.67us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.354us - ProjectionTime: 164.751us - RowsProduced: 127 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 42.200us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 6.00 KB - OpenTime: 477ns - ProjectionTime: 0ns - RowsProduced: 127 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=66):(Active: 957.163us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 874.280us - CloseTime: 12.543us - GetBlockTime: 646.367us - OpenTime: 3.671us - PrepareTime: 44.427us - SinkTime: 76.374us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 909.714us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.189ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 69.741us - InputRows: 143 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 866ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 8.797us - ExecTime: 540.298us - InitProbeSideTime: 37.418us - JoinFilterTimer: 1.18us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.226us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.96us - ProbeFindNextTime: 0ns - ProbeRows: 143 - ProbeTime: 307.343us - ProbeWhenBuildSideOutputTime: 24.661us - ProbeWhenProbeSideOutputTime: 53.447us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.738us - ProjectionTime: 169.377us - RowsProduced: 143 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 53.289us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 15.19 KB - OpenTime: 1.781us - ProjectionTime: 0ns - RowsProduced: 143 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=74):(Active: 664.277us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 600.477us - CloseTime: 7.608us - GetBlockTime: 480.412us - OpenTime: 3.737us - PrepareTime: 48.787us - SinkTime: 40.794us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 643.539us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.308ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 38.638us - InputRows: 115 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 908ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 6.918us - ExecTime: 418.886us - InitProbeSideTime: 32.315us - JoinFilterTimer: 890ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.735us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.153us - ProbeFindNextTime: 0ns - ProbeRows: 115 - ProbeTime: 232.204us - ProbeWhenBuildSideOutputTime: 20.487us - ProbeWhenProbeSideOutputTime: 43.605us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.553us - ProjectionTime: 131.755us - RowsProduced: 115 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 31.235us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 14.50 KB - OpenTime: 483ns - ProjectionTime: 0ns - RowsProduced: 115 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=82):(Active: 838.457us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 758.468us - CloseTime: 17.708us - GetBlockTime: 587.337us - OpenTime: 4.483us - PrepareTime: 51.316us - SinkTime: 67.298us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 789.406us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.242us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 63.554us - InputRows: 128 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 998ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 15.382us - ExecTime: 536.7us - InitProbeSideTime: 34.887us - JoinFilterTimer: 961ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.71us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.494us - ProbeFindNextTime: 0ns - ProbeRows: 128 - ProbeTime: 284.997us - ProbeWhenBuildSideOutputTime: 25.440us - ProbeWhenProbeSideOutputTime: 51.129us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.338us - ProjectionTime: 178.439us - RowsProduced: 128 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 51.655us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - OpenTime: 458ns - ProjectionTime: 0ns - RowsProduced: 128 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s762ms PipelineXTask (index=90):(Active: 1.43ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 981.405us - CloseTime: 6.939us - GetBlockTime: 785.316us - OpenTime: 2.111us - PrepareTime: 48.818us - SinkTime: 89.691us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.23ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 697.376us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 85.44us - InputRows: 130 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.251us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 5.329us - ExecTime: 695.682us - InitProbeSideTime: 51.17us - JoinFilterTimer: 1.290us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.997us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.383us - ProbeFindNextTime: 0ns - ProbeRows: 130 - ProbeTime: 409.117us - ProbeWhenBuildSideOutputTime: 41.228us - ProbeWhenProbeSideOutputTime: 79.664us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.689us - ProjectionTime: 214.509us - RowsProduced: 130 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 55.473us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 8.50 KB - OpenTime: 450ns - ProjectionTime: 0ns - RowsProduced: 130 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s761ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 1.471ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.367ms - CloseTime: 17.839us - GetBlockTime: 1.136ms - OpenTime: 10.80us - PrepareTime: 69.493us - SinkTime: 126.448us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.432ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.491ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 118.105us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.189us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.543us - ExecTime: 1.20ms - InitProbeSideTime: 51.633us - JoinFilterTimer: 794ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 24.354us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.541us - ProbeFindNextTime: 0ns - ProbeRows: 327 - ProbeTime: 639.337us - ProbeWhenBuildSideOutputTime: 96.202us - ProbeWhenProbeSideOutputTime: 30.84us - ProbeWhenProcessHashTableTime: 123.225us - ProbeWhenSearchHashTableTime: 46.199us - ProjectionTime: 272.357us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.39us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.75 KB - MemoryUsage: - Blocks: 4.63 KB - PeakMemoryUsage: 5.88 KB - OpenTime: 23.26us - ProjectionTime: 0ns - RowsProduced: 327 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s756ms PipelineXTask (index=11):(Active: 1.67ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 948.985us - CloseTime: 19.156us - GetBlockTime: 793.366us - OpenTime: 20.714us - PrepareTime: 71.25us - SinkTime: 77.708us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.36ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.954ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 74.160us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.105us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.477us - ExecTime: 739.832us - InitProbeSideTime: 37.317us - JoinFilterTimer: 958ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 27.668us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.162us - ProbeFindNextTime: 0ns - ProbeRows: 304 - ProbeTime: 423.909us - ProbeWhenBuildSideOutputTime: 81.13us - ProbeWhenProbeSideOutputTime: 16.314us - ProbeWhenProcessHashTableTime: 77.281us - ProbeWhenSearchHashTableTime: 35.772us - ProjectionTime: 228.14us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.823us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.25 KB - MemoryUsage: - Blocks: 13.50 KB - PeakMemoryUsage: 13.50 KB - OpenTime: 15.860us - ProjectionTime: 0ns - RowsProduced: 304 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s754ms PipelineXTask (index=19):(Active: 1.39ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 936.33us - CloseTime: 16.236us - GetBlockTime: 793.247us - OpenTime: 5.409us - PrepareTime: 75.39us - SinkTime: 75.892us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.241ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 72.460us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.90us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.950us - ExecTime: 731.296us - InitProbeSideTime: 58.557us - JoinFilterTimer: 867ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.941us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.904us - ProbeFindNextTime: 0ns - ProbeRows: 314 - ProbeTime: 451.911us - ProbeWhenBuildSideOutputTime: 99.255us - ProbeWhenProbeSideOutputTime: 14.253us - ProbeWhenProcessHashTableTime: 61.431us - ProbeWhenSearchHashTableTime: 43.792us - ProjectionTime: 202.953us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.729us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.385us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.00 KB - MemoryUsage: - Blocks: 14.50 KB - PeakMemoryUsage: 14.50 KB - OpenTime: 23.26us - ProjectionTime: 0ns - RowsProduced: 314 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s754ms PipelineXTask (index=27):(Active: 1.322ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.219ms - CloseTime: 14.734us - GetBlockTime: 942.338us - OpenTime: 6.553us - PrepareTime: 75.936us - SinkTime: 173.680us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.283ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.159ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 167.902us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.77us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.427us - ExecTime: 854.673us - InitProbeSideTime: 58.501us - JoinFilterTimer: 793ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.398us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.139us - ProbeFindNextTime: 0ns - ProbeRows: 321 - ProbeTime: 543.884us - ProbeWhenBuildSideOutputTime: 108.297us - ProbeWhenProbeSideOutputTime: 26.689us - ProbeWhenProcessHashTableTime: 67.749us - ProbeWhenSearchHashTableTime: 54.715us - ProjectionTime: 225.470us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.867us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.00 KB - MemoryUsage: - Blocks: 4.63 KB - PeakMemoryUsage: 4.63 KB - OpenTime: 21.813us - ProjectionTime: 0ns - RowsProduced: 321 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s758ms PipelineXTask (index=35):(Active: 1.424ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.336ms - CloseTime: 15.589us - GetBlockTime: 1.108ms - OpenTime: 7.871us - PrepareTime: 57.996us - SinkTime: 118.734us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.78ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 111.953us - InputRows: 738 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 930ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.990us - ExecTime: 1.22ms - InitProbeSideTime: 54.27us - JoinFilterTimer: 1.362us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.643us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.581us - ProbeFindNextTime: 0ns - ProbeRows: 306 - ProbeTime: 623.857us - ProbeWhenBuildSideOutputTime: 141.701us - ProbeWhenProbeSideOutputTime: 37.969us - ProbeWhenProcessHashTableTime: 77.994us - ProbeWhenSearchHashTableTime: 60.728us - ProjectionTime: 295.930us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.209us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.74us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.38 KB - MemoryUsage: - Blocks: 4.25 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 12.973us - ProjectionTime: 0ns - RowsProduced: 306 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s757ms PipelineXTask (index=43):(Active: 1.472ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.379ms - CloseTime: 17.920us - GetBlockTime: 1.211ms - OpenTime: 5.419us - PrepareTime: 64.667us - SinkTime: 95.492us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.191ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 88.973us - InputRows: 784 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 920ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 9.613us - ExecTime: 1.145ms - InitProbeSideTime: 60.221us - JoinFilterTimer: 1.449us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 24.963us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.139us - ProbeFindNextTime: 0ns - ProbeRows: 315 - ProbeTime: 686.511us - ProbeWhenBuildSideOutputTime: 120.206us - ProbeWhenProbeSideOutputTime: 21.243us - ProbeWhenProcessHashTableTime: 99.152us - ProbeWhenSearchHashTableTime: 46.810us - ProjectionTime: 308.670us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.819us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.10us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.75 KB - MemoryUsage: - Blocks: 15.75 KB - PeakMemoryUsage: 15.75 KB - OpenTime: 16.112us - ProjectionTime: 0ns - RowsProduced: 315 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s754ms PipelineXTask (index=51):(Active: 1.106ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.8ms - CloseTime: 14.729us - GetBlockTime: 836.112us - OpenTime: 6.566us - PrepareTime: 71.691us - SinkTime: 82.658us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.72ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.440ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 80.103us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.522us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 9.240us - ExecTime: 781.632us - InitProbeSideTime: 61.375us - JoinFilterTimer: 896ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.54us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.162us - ProbeFindNextTime: 0ns - ProbeRows: 297 - ProbeTime: 475.251us - ProbeWhenBuildSideOutputTime: 92.583us - ProbeWhenProbeSideOutputTime: 23.684us - ProbeWhenProcessHashTableTime: 78.197us - ProbeWhenSearchHashTableTime: 34.212us - ProjectionTime: 232.948us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.95us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.973us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.00 KB - MemoryUsage: - Blocks: 4.25 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 21.697us - ProjectionTime: 0ns - RowsProduced: 297 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s758ms PipelineXTask (index=59):(Active: 1.70ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 978.515us - CloseTime: 14.470us - GetBlockTime: 836.904us - OpenTime: 5.954us - PrepareTime: 66.498us - SinkTime: 70.821us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.40ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.31ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.418us - InputRows: 758 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 913ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.996us - ExecTime: 774.770us - InitProbeSideTime: 42.209us - JoinFilterTimer: 716ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.959us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.375us - ProbeFindNextTime: 0ns - ProbeRows: 305 - ProbeTime: 454.573us - ProbeWhenBuildSideOutputTime: 87.138us - ProbeWhenProbeSideOutputTime: 17.803us - ProbeWhenProcessHashTableTime: 78.749us - ProbeWhenSearchHashTableTime: 31.349us - ProjectionTime: 224.948us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.629us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.498us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.00 KB - MemoryUsage: - Blocks: 14.38 KB - PeakMemoryUsage: 14.38 KB - OpenTime: 19.8us - ProjectionTime: 0ns - RowsProduced: 305 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s754ms PipelineXTask (index=67):(Active: 1.443ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.332ms - CloseTime: 14.38us - GetBlockTime: 1.147ms - OpenTime: 6.366us - PrepareTime: 86.490us - SinkTime: 110.988us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.422ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.621ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.566us - InputRows: 776 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 16.320us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.636us - ExecTime: 1.77ms - InitProbeSideTime: 63.671us - JoinFilterTimer: 1.632us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 21.846us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.725us - ProbeFindNextTime: 0ns - ProbeRows: 302 - ProbeTime: 694.657us - ProbeWhenBuildSideOutputTime: 94.314us - ProbeWhenProbeSideOutputTime: 34.884us - ProbeWhenProcessHashTableTime: 188.198us - ProbeWhenSearchHashTableTime: 51.594us - ProjectionTime: 271.261us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.70us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.140us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.00 KB - MemoryUsage: - Blocks: 16.00 KB - PeakMemoryUsage: 16.00 KB - OpenTime: 14.22us - ProjectionTime: 0ns - RowsProduced: 302 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s754ms PipelineXTask (index=75):(Active: 1.241ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.119ms - CloseTime: 37.405us - GetBlockTime: 862.284us - OpenTime: 3.511us - PrepareTime: 61.582us - SinkTime: 139.572us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.186ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.757ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 136.81us - InputRows: 777 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.500us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 25.376us - ExecTime: 808.137us - InitProbeSideTime: 52.857us - JoinFilterTimer: 816ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.790us - ProbeFindNextTime: 0ns - ProbeRows: 305 - ProbeTime: 473.128us - ProbeWhenBuildSideOutputTime: 92.400us - ProbeWhenProbeSideOutputTime: 22.210us - ProbeWhenProcessHashTableTime: 63.786us - ProbeWhenSearchHashTableTime: 38.218us - ProjectionTime: 227.676us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.458us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.413us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 4.00 KB - PeakMemoryUsage: 4.00 KB - OpenTime: 14.465us - ProjectionTime: 0ns - RowsProduced: 305 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s757ms PipelineXTask (index=83):(Active: 1.411ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.332ms - CloseTime: 13.345us - GetBlockTime: 1.145ms - OpenTime: 5.734us - PrepareTime: 56.204us - SinkTime: 81.175us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.922ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 76.429us - InputRows: 754 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.926us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.466us - ExecTime: 1.58ms - InitProbeSideTime: 68.825us - JoinFilterTimer: 1.549us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.570us - ProbeFindNextTime: 0ns - ProbeRows: 317 - ProbeTime: 631.149us - ProbeWhenBuildSideOutputTime: 135.56us - ProbeWhenProbeSideOutputTime: 30.153us - ProbeWhenProcessHashTableTime: 104.483us - ProbeWhenSearchHashTableTime: 41.533us - ProjectionTime: 326.555us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.60us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.496us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.75 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 5.25 KB - OpenTime: 19.570us - ProjectionTime: 0ns - RowsProduced: 317 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s756ms PipelineXTask (index=91):(Active: 1.575ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.484ms - CloseTime: 15.37us - GetBlockTime: 1.240ms - OpenTime: 6.565us - PrepareTime: 63.550us - SinkTime: 127.357us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.535ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.838ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 122.468us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.373us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.48us - ExecTime: 1.161ms - InitProbeSideTime: 59.735us - JoinFilterTimer: 1.271us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.106us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.794us - ProbeFindNextTime: 0ns - ProbeRows: 309 - ProbeTime: 684.548us - ProbeWhenBuildSideOutputTime: 136.945us - ProbeWhenProbeSideOutputTime: 26.512us - ProbeWhenProcessHashTableTime: 74.900us - ProbeWhenSearchHashTableTime: 56.361us - ProjectionTime: 366.986us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.501us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.383us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 6.50 KB - PeakMemoryUsage: 6.50 KB - OpenTime: 16.853us - ProjectionTime: 0ns - RowsProduced: 309 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s758ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 900.829us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 828.823us - CloseTime: 8.500us - GetBlockTime: 124.709us - OpenTime: 2.843us - PrepareTime: 55.324us - SinkTime: 641.926us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 879.577us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 152.429ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 8.486us - BuildRows: 4.965K (4965) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 396.894us - BuildTableInsertTime: 162.249us - BuildTableTime: 173.311us - CloseTime: 0ns - ExecTime: 652.79us - InputRows: 4.964K (4964) - MemoryUsage: - BuildBlocks: 318.79 KB - BuildKeyArena: 116.00 KB - HashTable: 51.40 KB - PeakMemoryUsage: 482.18 KB - OpenTime: 14.52us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=252): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.976us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.553us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 514.00 KB - MemoryUsage: - Blocks: 219.50 KB - PeakMemoryUsage: 163.50 KB - OpenTime: 18.492us - ProjectionTime: 0ns - RowsProduced: 4.964K (4964) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s441ms PipelineXTask (index=12):(Active: 124.324us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.140us - CloseTime: 11.698us - GetBlockTime: 0ns - OpenTime: 2.337us - PrepareTime: 68.909us - SinkTime: 19.932us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.706us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.184ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.52us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.194us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.309us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.603us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 124.341us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 41.296us - CloseTime: 6.253us - GetBlockTime: 0ns - OpenTime: 3.226us - PrepareTime: 65.946us - SinkTime: 18.141us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.105ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.363us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.383us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.555us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.54us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.697us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 90.121us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.608us - CloseTime: 5.120us - GetBlockTime: 0ns - OpenTime: 2.652us - PrepareTime: 55.994us - SinkTime: 6.278us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.359us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 610.797us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.153us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.759us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.75us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.21us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.87us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=36):(Active: 90.319us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.780us - CloseTime: 5.130us - GetBlockTime: 0ns - OpenTime: 2.566us - PrepareTime: 55.527us - SinkTime: 5.607us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.125ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.853us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.402us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.765us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.700us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.221us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 105.360us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.985us - CloseTime: 5.792us - GetBlockTime: 0ns - OpenTime: 2.686us - PrepareTime: 56.779us - SinkTime: 16.185us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.596us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.198us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.307us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.152us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.850us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.659us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=52):(Active: 90.410us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.62us - CloseTime: 6.224us - GetBlockTime: 0ns - OpenTime: 2.355us - PrepareTime: 46.531us - SinkTime: 13.225us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.33us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 478.731us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.515us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.645us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.483us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.991us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.750us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=60):(Active: 97.595us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 39.72us - CloseTime: 12.843us - GetBlockTime: 0ns - OpenTime: 2.22us - PrepareTime: 39.202us - SinkTime: 17.477us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.942us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.554ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.489us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.195us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.393us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=68):(Active: 102.914us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.576us - CloseTime: 5.96us - GetBlockTime: 0ns - OpenTime: 2.714us - PrepareTime: 66.726us - SinkTime: 6.689us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.72us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.587ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.963us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.874us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.681us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.801us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.193us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=76):(Active: 85.456us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.585us - CloseTime: 6.247us - GetBlockTime: 0ns - OpenTime: 2.516us - PrepareTime: 47.334us - SinkTime: 7.469us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 73.166us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 479.661us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.60us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.685us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.993us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.629us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.820us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=84):(Active: 98.658us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.366us - CloseTime: 6.738us - GetBlockTime: 0ns - OpenTime: 2.631us - PrepareTime: 51.382us - SinkTime: 14.340us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.869us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.473ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.97us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.955us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.303us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.281us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.145us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=92):(Active: 109.361us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.34us - CloseTime: 12.987us - GetBlockTime: 0ns - OpenTime: 2.325us - PrepareTime: 55.301us - SinkTime: 19.518us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.887us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.38ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 26.858us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.660us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s594ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.283us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.220us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :5 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=5):(Active: 51.612ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 51.536ms - CloseTime: 13.48us - GetBlockTime: 51.149ms - OpenTime: 2.665us - PrepareTime: 53.488us - SinkTime: 338.354us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 594.491us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 597.647ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 3.817us - BuildRows: 2.138K (2138) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 155.19us - BuildTableInsertTime: 98.843us - BuildTableTime: 105.991us - CloseTime: 0ns - ExecTime: 341.209us - InputRows: 2.137K (2137) - MemoryUsage: - BuildBlocks: 84.85 KB - BuildKeyArena: 56.00 KB - HashTable: 24.36 KB - PeakMemoryUsage: 161.20 KB - OpenTime: 6.873us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=263): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.716us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 51.175ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 153.00 KB - MemoryUsage: - Blocks: 102.00 KB - PeakMemoryUsage: 78.00 KB - OpenTime: 21.35us - ProjectionTime: 0ns - RowsProduced: 2.137K (2137) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 963.339ms PipelineXTask (index=13):(Active: 132.708us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.632us - CloseTime: 17.111us - GetBlockTime: 0ns - OpenTime: 2.652us - PrepareTime: 56.370us - SinkTime: 26.52us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 223.468ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.145us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.747us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.486us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.870us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.284us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=21):(Active: 93.309us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.797us - CloseTime: 8.379us - GetBlockTime: 0ns - OpenTime: 2.240us - PrepareTime: 52.570us - SinkTime: 10.464us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.640us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.171ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.660us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.908us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.756us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.977us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 107.981us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 40.651us - CloseTime: 10.503us - GetBlockTime: 0ns - OpenTime: 2.529us - PrepareTime: 49.621us - SinkTime: 23.732us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.905us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.235ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.604us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.983us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.187us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.741us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=37):(Active: 102.638us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 43.211us - CloseTime: 13.553us - GetBlockTime: 0ns - OpenTime: 2.228us - PrepareTime: 38.482us - SinkTime: 23.869us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.467us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.367ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.124us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.644us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.874us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.77us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=45):(Active: 83.432us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.447us - CloseTime: 6.418us - GetBlockTime: 0ns - OpenTime: 1.891us - PrepareTime: 46.229us - SinkTime: 11.677us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.443us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.226ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.943us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.565us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.855us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.835us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.283us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 80.261us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 28.406us - CloseTime: 6.77us - GetBlockTime: 0ns - OpenTime: 1.653us - PrepareTime: 39.504us - SinkTime: 6.654us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.821us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.269ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.482us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.877us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.28us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.655us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.115us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=61):(Active: 94.186us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.510us - CloseTime: 3.989us - GetBlockTime: 0ns - OpenTime: 2.166us - PrepareTime: 57.608us - SinkTime: 8.628us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.314us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.432ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.972us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.549us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.15us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.260us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.494us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=69):(Active: 77.353us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.611us - CloseTime: 5.52us - GetBlockTime: 0ns - OpenTime: 2.61us - PrepareTime: 41.267us - SinkTime: 4.872us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.513us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.496ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 10.625us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.949us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.220us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.498us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.583us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=77):(Active: 101.76us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.258us - CloseTime: 18.771us - GetBlockTime: 0ns - OpenTime: 1.874us - PrepareTime: 39.831us - SinkTime: 17.227us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.936us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.597ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.480us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.756us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.340us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.285us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.438us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=85):(Active: 100.327us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.875us - CloseTime: 13.210us - GetBlockTime: 0ns - OpenTime: 2.205us - PrepareTime: 35.187us - SinkTime: 24.939us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.176us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 260.715ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.798us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 4.642us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.630us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.49us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.617us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=93):(Active: 276.581us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.983us - CloseTime: 6.820us - GetBlockTime: 0ns - OpenTime: 3.486us - PrepareTime: 217.993us - SinkTime: 6.155us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 244.982us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.457ms HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.846us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.913us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s612ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.928us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 191.487us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 184.507us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :6 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=6):(Active: 438.982us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 351.459us - CloseTime: 12.557us - GetBlockTime: 109.120us - OpenTime: 3.115us - PrepareTime: 65.721us - SinkTime: 171.223us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 408.605us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 694.661ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 11.189us - BuildRows: 44 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.809us - BuildTableInsertTime: 26.700us - BuildTableTime: 33.160us - CloseTime: 0ns - ExecTime: 179.627us - InputRows: 43 - MemoryUsage: - BuildBlocks: 1.29 KB - BuildKeyArena: 4.00 KB - HashTable: 436.00 B - PeakMemoryUsage: 1.71 KB - OpenTime: 11.937us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=277): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.568us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.881us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.38 KB - MemoryUsage: - Blocks: 2.31 KB - PeakMemoryUsage: 2.31 KB - OpenTime: 26.479us - ProjectionTime: 0ns - RowsProduced: 43 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 817.420ms PipelineXTask (index=14):(Active: 135.304us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.172us - CloseTime: 24.787us - GetBlockTime: 0ns - OpenTime: 3.200us - PrepareTime: 57.338us - SinkTime: 19.405us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.400us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 300.44ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.427us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.618us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 21.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.592us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.47us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 112.801us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.835us - CloseTime: 22.193us - GetBlockTime: 0ns - OpenTime: 1.176us - PrepareTime: 46.883us - SinkTime: 17.71us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.703us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 258.413ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.355us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.834us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.819us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.531us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 114.26us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.387us - CloseTime: 16.494us - GetBlockTime: 0ns - OpenTime: 1.554us - PrepareTime: 50.354us - SinkTime: 16.238us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.249us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.594ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.5us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.427us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.534us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.995us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 106.418us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 45.80us - CloseTime: 11.174us - GetBlockTime: 0ns - OpenTime: 1.760us - PrepareTime: 43.816us - SinkTime: 26.806us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 261.646ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.714us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.709us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.895us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.536us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 73.338us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.433us - CloseTime: 6.618us - GetBlockTime: 0ns - OpenTime: 1.517us - PrepareTime: 39.667us - SinkTime: 7.978us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.968us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 258.474ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.830us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.27us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.313us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.926us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 101.536us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.601us - CloseTime: 11.474us - GetBlockTime: 0ns - OpenTime: 2.437us - PrepareTime: 39.741us - SinkTime: 22.540us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.181us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.275ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.388us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.819us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.132us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.383us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.642us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=62):(Active: 115.168us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 46.425us - CloseTime: 14.501us - GetBlockTime: 0ns - OpenTime: 2.157us - PrepareTime: 47.781us - SinkTime: 29.205us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.369us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.478ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.565us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.89us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.794us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.848us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.231us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=70):(Active: 74.377us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.560us - CloseTime: 4.881us - GetBlockTime: 0ns - OpenTime: 1.718us - PrepareTime: 40.831us - SinkTime: 6.968us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.119us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.551ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.60us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.266us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.764us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.248us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.886us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=78):(Active: 105.150us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.414us - CloseTime: 10.504us - GetBlockTime: 0ns - OpenTime: 2.360us - PrepareTime: 42.513us - SinkTime: 6.744us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.173us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.324ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.310us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.670us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.244us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.587us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.516us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=86):(Active: 110.247us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.296us - CloseTime: 11.656us - GetBlockTime: 0ns - OpenTime: 1.473us - PrepareTime: 45.431us - SinkTime: 19.409us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.381us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.285ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.749us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.946us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.676us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.369us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.31us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=94):(Active: 109.925us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.859us - CloseTime: 14.685us - GetBlockTime: 0ns - OpenTime: 2.438us - PrepareTime: 52.276us - SinkTime: 18.4us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.139us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 328.735ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963334 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.778us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.725us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s512ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.839us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.748us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.71us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :7 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=7):(Active: 335.586us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 265.66us - CloseTime: 19.473us - GetBlockTime: 27.517us - OpenTime: 2.916us - PrepareTime: 43.240us - SinkTime: 191.591us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 292.956us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.42ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.694us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 42.802us - BuildTableInsertTime: 76.64us - BuildTableTime: 80.604us - CloseTime: 0ns - ExecTime: 197.733us - InputRows: 770 - MemoryUsage: - BuildBlocks: 53.40 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 81.16 KB - OpenTime: 6.523us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 16.941us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.264us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 76.88 KB - OpenTime: 16.663us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s922ms PipelineXTask (index=15):(Active: 346.788us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 275.424us - CloseTime: 13.64us - GetBlockTime: 24.935us - OpenTime: 2.3us - PrepareTime: 51.283us - SinkTime: 210.369us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 323.471us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.860ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.570us - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 75.591us - BuildTableInsertTime: 55.517us - BuildTableTime: 60.603us - CloseTime: 0ns - ExecTime: 219.375us - InputRows: 756 - MemoryUsage: - BuildBlocks: 52.21 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 79.90 KB - OpenTime: 10.979us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.591us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.65us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 73.86 KB - OpenTime: 11.998us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s952ms PipelineXTask (index=23):(Active: 237.686us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 154.262us - CloseTime: 5.838us - GetBlockTime: 12.128us - OpenTime: 1.448us - PrepareTime: 71.944us - SinkTime: 125.489us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 225.794us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.92ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.366us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 43.412us - BuildTableInsertTime: 46.42us - BuildTableTime: 47.803us - CloseTime: 0ns - ExecTime: 145.831us - InputRows: 770 - MemoryUsage: - BuildBlocks: 53.27 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 81.03 KB - OpenTime: 20.757us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.806us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.882us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 77.74 KB - OpenTime: 25.237us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s981ms PipelineXTask (index=31):(Active: 272.339us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 207.840us - CloseTime: 8.441us - GetBlockTime: 40.399us - OpenTime: 2.420us - PrepareTime: 48.419us - SinkTime: 140.899us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 254.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.678ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 872ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.554us - BuildTableInsertTime: 65.603us - BuildTableTime: 68.323us - CloseTime: 0ns - ExecTime: 151.19us - InputRows: 785 - MemoryUsage: - BuildBlocks: 54.44 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 82.28 KB - OpenTime: 10.793us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.703us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.467us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 84.88 KB - OpenTime: 17.263us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s948ms PipelineXTask (index=39):(Active: 296.237us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 222.55us - CloseTime: 21.102us - GetBlockTime: 25.967us - OpenTime: 2.591us - PrepareTime: 45.653us - SinkTime: 166.203us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 268.84us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.849ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.474us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.344us - BuildTableInsertTime: 59.868us - BuildTableTime: 64.823us - CloseTime: 0ns - ExecTime: 171.432us - InputRows: 738 - MemoryUsage: - BuildBlocks: 50.88 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 78.48 KB - OpenTime: 5.997us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.796us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 61.740us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 76.88 KB - OpenTime: 28.467us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s982ms PipelineXTask (index=47):(Active: 323.587us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 255.359us - CloseTime: 13.325us - GetBlockTime: 23.625us - OpenTime: 2.680us - PrepareTime: 46.885us - SinkTime: 169.755us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 276.926us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.32ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.551us - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.299us - BuildTableInsertTime: 62.386us - BuildTableTime: 67.307us - CloseTime: 0ns - ExecTime: 175.437us - InputRows: 784 - MemoryUsage: - BuildBlocks: 54.29 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 82.12 KB - OpenTime: 6.246us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.863us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.730us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 84.01 KB - OpenTime: 9.998us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s981ms PipelineXTask (index=55):(Active: 270.419us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 210.924us - CloseTime: 5.412us - GetBlockTime: 18.525us - OpenTime: 1.765us - PrepareTime: 47.736us - SinkTime: 168.393us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 258.200us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.127ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.572us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.614us - BuildTableInsertTime: 63.48us - BuildTableTime: 64.859us - CloseTime: 0ns - ExecTime: 174.837us - InputRows: 765 - MemoryUsage: - BuildBlocks: 53.06 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 80.79 KB - OpenTime: 7.163us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.14us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.948us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 74.29 KB - OpenTime: 16.581us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s966ms PipelineXTask (index=63):(Active: 241.713us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 179.908us - CloseTime: 11.15us - GetBlockTime: 14.729us - OpenTime: 3.280us - PrepareTime: 44.623us - SinkTime: 146.30us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 226.38us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.448ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.268us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 50.610us - BuildTableInsertTime: 56.235us - BuildTableTime: 59.461us - CloseTime: 0ns - ExecTime: 161.484us - InputRows: 758 - MemoryUsage: - BuildBlocks: 52.18 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 79.88 KB - OpenTime: 15.520us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.91us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.804us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 77.74 KB - OpenTime: 11.190us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s991ms PipelineXTask (index=71):(Active: 208.121us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 150.794us - CloseTime: 5.215us - GetBlockTime: 15.785us - OpenTime: 2.102us - PrepareTime: 45.37us - SinkTime: 111.676us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.507us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.969ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.780us - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.399us - BuildTableInsertTime: 53.75us - BuildTableTime: 55.260us - CloseTime: 0ns - ExecTime: 120.32us - InputRows: 776 - MemoryUsage: - BuildBlocks: 53.82 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 81.61 KB - OpenTime: 8.824us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.612us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.794us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 82.72 KB - OpenTime: 17.165us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s991ms PipelineXTask (index=79):(Active: 237.998us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 187.149us - CloseTime: 5.800us - GetBlockTime: 30.178us - OpenTime: 2.17us - PrepareTime: 38.434us - SinkTime: 133.576us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 224.390us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.809ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.2us - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.417us - BuildTableInsertTime: 61.506us - BuildTableTime: 63.442us - CloseTime: 0ns - ExecTime: 144.602us - InputRows: 777 - MemoryUsage: - BuildBlocks: 53.81 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 81.61 KB - OpenTime: 11.318us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.308us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.384us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 84.88 KB - OpenTime: 11.285us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s924ms PipelineXTask (index=87):(Active: 238.117us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 182.232us - CloseTime: 12.493us - GetBlockTime: 25.564us - OpenTime: 1.749us - PrepareTime: 37.809us - SinkTime: 126.112us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 218.402us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.619ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.408us - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.227us - BuildTableInsertTime: 58.253us - BuildTableTime: 63.57us - CloseTime: 0ns - ExecTime: 130.815us - InputRows: 754 - MemoryUsage: - BuildBlocks: 52.22 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 79.90 KB - OpenTime: 5.329us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.584us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.593us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 73.43 KB - OpenTime: 14.710us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s991ms PipelineXTask (index=95):(Active: 282.460us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 229.483us - CloseTime: 3.985us - GetBlockTime: 21.509us - OpenTime: 2.291us - PrepareTime: 41.717us - SinkTime: 179.84us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 270.35us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.278ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.755us - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.560us - BuildTableInsertTime: 48.947us - BuildTableTime: 50.810us - CloseTime: 0ns - ExecTime: 186.726us - InputRows: 767 - MemoryUsage: - BuildBlocks: 52.97 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 80.71 KB - OpenTime: 8.252us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.559us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.299us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 73.86 KB - OpenTime: 15.356us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s978ms Fragment 24: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 464.922us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 328.828us - CloseTime: 15.760us - GetBlockTime: 81.737us - OpenTime: 2.714us - PrepareTime: 110.611us - SinkTime: 224.722us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 440.685us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 999.36us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.284us - CompressTime: 0ns - ExecTime: 308.128us - InputRows: 306 - LocalBytesSent: 9.56 KB - LocalSendTime: 99.746us - LocalSentRows: 306 - MemoryUsage: - PeakMemoryUsage: 16.50 KB - MergeBlockTime: 0ns - OpenTime: 70.441us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 306 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 29.348us - SplitBlockHashComputeTime: 16.834us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 730ns - DeserializeAndMergeTime: 0ns - ExecTime: 87.985us - GetResultsTime: 30.674us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.864us - HashTableSize: 306 - InsertKeysToColumnTime: 17.817us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.502us - ProjectionTime: 38.858us - RowsProduced: 306 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s753ms PipelineXTask (index=2):(Active: 502.190us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 366.473us - CloseTime: 15.917us - GetBlockTime: 113.926us - OpenTime: 3.255us - PrepareTime: 110.759us - SinkTime: 224.711us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 478.459us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.487ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.517us - CompressTime: 0ns - ExecTime: 312.906us - InputRows: 299 - LocalBytesSent: 9.39 KB - LocalSendTime: 76.82us - LocalSentRows: 299 - MemoryUsage: - PeakMemoryUsage: 16.25 KB - MergeBlockTime: 0ns - OpenTime: 75.338us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 299 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 35.549us - SplitBlockHashComputeTime: 11.167us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 666ns - DeserializeAndMergeTime: 0ns - ExecTime: 119.585us - GetResultsTime: 55.946us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 10.674us - HashTableSize: 299 - InsertKeysToColumnTime: 20.175us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.728us - ProjectionTime: 47.498us - RowsProduced: 299 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s753ms PipelineXTask (index=4):(Active: 537.985us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 422.414us - CloseTime: 15.168us - GetBlockTime: 142.898us - OpenTime: 3.227us - PrepareTime: 91.721us - SinkTime: 249.622us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 512.641us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.599ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.342us - CompressTime: 0ns - ExecTime: 326.427us - InputRows: 293 - LocalBytesSent: 9.20 KB - LocalSendTime: 90.189us - LocalSentRows: 293 - MemoryUsage: - PeakMemoryUsage: 16.00 KB - MergeBlockTime: 0ns - OpenTime: 63.927us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 293 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 44.608us - SplitBlockHashComputeTime: 15.517us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 629ns - DeserializeAndMergeTime: 0ns - ExecTime: 152.882us - GetResultsTime: 65.761us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.263us - HashTableSize: 293 - InsertKeysToColumnTime: 43.804us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.430us - ProjectionTime: 68.465us - RowsProduced: 293 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s755ms PipelineXTask (index=6):(Active: 580.249us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 458.720us - CloseTime: 24.440us - GetBlockTime: 157.615us - OpenTime: 2.329us - PrepareTime: 89.21us - SinkTime: 278.678us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 547.388us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.192ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.928us - CompressTime: 0ns - ExecTime: 358.734us - InputRows: 312 - LocalBytesSent: 9.72 KB - LocalSendTime: 97.797us - LocalSentRows: 312 - MemoryUsage: - PeakMemoryUsage: 17.00 KB - MergeBlockTime: 0ns - OpenTime: 58.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 312 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.106us - SplitBlockHashComputeTime: 16.270us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 632ns - DeserializeAndMergeTime: 0ns - ExecTime: 166.241us - GetResultsTime: 78.532us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.831us - HashTableSize: 312 - InsertKeysToColumnTime: 57.635us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.17us - ProjectionTime: 69.924us - RowsProduced: 312 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s752ms PipelineXTask (index=8):(Active: 600.748us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 472.330us - CloseTime: 20.788us - GetBlockTime: 171.611us - OpenTime: 2.900us - PrepareTime: 99.323us - SinkTime: 276.275us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 570.237us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.404ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.545us - CompressTime: 0ns - ExecTime: 361.515us - InputRows: 292 - LocalBytesSent: 9.17 KB - LocalSendTime: 97.710us - LocalSentRows: 292 - MemoryUsage: - PeakMemoryUsage: 16.25 KB - MergeBlockTime: 0ns - OpenTime: 67.418us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 292 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.487us - SplitBlockHashComputeTime: 21.386us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 518ns - DeserializeAndMergeTime: 0ns - ExecTime: 178.476us - GetResultsTime: 95.5us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.282us - HashTableSize: 292 - InsertKeysToColumnTime: 60.370us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.366us - ProjectionTime: 68.287us - RowsProduced: 292 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s753ms PipelineXTask (index=10):(Active: 528.948us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 401.871us - CloseTime: 16.723us - GetBlockTime: 125.409us - OpenTime: 2.500us - PrepareTime: 102.414us - SinkTime: 254.62us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 503.994us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.878ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.740us - CompressTime: 0ns - ExecTime: 328.897us - InputRows: 342 - LocalBytesSent: 10.73 KB - LocalSendTime: 83.56us - LocalSentRows: 342 - MemoryUsage: - PeakMemoryUsage: 18.50 KB - MergeBlockTime: 0ns - OpenTime: 60.914us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 342 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.594us - SplitBlockHashComputeTime: 16.165us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 314ns - DeserializeAndMergeTime: 0ns - ExecTime: 132.166us - GetResultsTime: 49.449us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 8.415us - HashTableSize: 342 - InsertKeysToColumnTime: 27.979us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.865us - ProjectionTime: 56.242us - RowsProduced: 342 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s756ms PipelineXTask (index=12):(Active: 614.79us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 475.962us - CloseTime: 22.817us - GetBlockTime: 153.304us - OpenTime: 23.663us - PrepareTime: 85.395us - SinkTime: 277.420us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 581.936us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.125ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.876us - CompressTime: 0ns - ExecTime: 356.961us - InputRows: 328 - LocalBytesSent: 10.24 KB - LocalSendTime: 83.766us - LocalSentRows: 328 - MemoryUsage: - PeakMemoryUsage: 18.38 KB - MergeBlockTime: 0ns - OpenTime: 59.417us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 328 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 62.756us - SplitBlockHashComputeTime: 15.341us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 420ns - DeserializeAndMergeTime: 0ns - ExecTime: 161.617us - GetResultsTime: 65.666us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.542us - HashTableSize: 328 - InsertKeysToColumnTime: 41.563us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.746us - ProjectionTime: 80.173us - RowsProduced: 328 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s753ms PipelineXTask (index=14):(Active: 368.560us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 243.203us - CloseTime: 12.217us - GetBlockTime: 80.988us - OpenTime: 2.726us - PrepareTime: 105.204us - SinkTime: 143.302us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 350.302us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 851.861us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.103us - CompressTime: 0ns - ExecTime: 229.132us - InputRows: 300 - LocalBytesSent: 9.40 KB - LocalSendTime: 45.608us - LocalSentRows: 300 - MemoryUsage: - PeakMemoryUsage: 16.13 KB - MergeBlockTime: 0ns - OpenTime: 75.109us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 300 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.414us - SplitBlockHashComputeTime: 8.787us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 322ns - DeserializeAndMergeTime: 0ns - ExecTime: 88.661us - GetResultsTime: 41.713us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.737us - HashTableSize: 300 - InsertKeysToColumnTime: 24.981us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.79us - ProjectionTime: 33.120us - RowsProduced: 300 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s753ms PipelineXTask (index=16):(Active: 400.693us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 282.720us - CloseTime: 14.216us - GetBlockTime: 65.47us - OpenTime: 2.400us - PrepareTime: 95.20us - SinkTime: 196.669us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 378.97us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.36us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.762us - CompressTime: 0ns - ExecTime: 276.680us - InputRows: 309 - LocalBytesSent: 9.65 KB - LocalSendTime: 61.677us - LocalSentRows: 309 - MemoryUsage: - PeakMemoryUsage: 16.38 KB - MergeBlockTime: 0ns - OpenTime: 68.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 309 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.388us - SplitBlockHashComputeTime: 11.332us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 929ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.823us - GetResultsTime: 29.372us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.426us - HashTableSize: 309 - InsertKeysToColumnTime: 17.945us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.706us - ProjectionTime: 29.659us - RowsProduced: 309 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s756ms PipelineXTask (index=18):(Active: 490.560us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 369.291us - CloseTime: 18.663us - GetBlockTime: 95.717us - OpenTime: 2.612us - PrepareTime: 94.405us - SinkTime: 253.205us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 464.158us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.886us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.725us - CompressTime: 0ns - ExecTime: 329.235us - InputRows: 309 - LocalBytesSent: 9.74 KB - LocalSendTime: 90.65us - LocalSentRows: 309 - MemoryUsage: - PeakMemoryUsage: 16.88 KB - MergeBlockTime: 0ns - OpenTime: 62.982us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 309 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 46.100us - SplitBlockHashComputeTime: 14.697us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 358ns - DeserializeAndMergeTime: 0ns - ExecTime: 102.992us - GetResultsTime: 46.215us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.97us - HashTableSize: 309 - InsertKeysToColumnTime: 32.340us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.703us - ProjectionTime: 41.275us - RowsProduced: 309 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s760ms PipelineXTask (index=20):(Active: 599.65us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 451.816us - CloseTime: 15.846us - GetBlockTime: 152.248us - OpenTime: 4.255us - PrepareTime: 120.892us - SinkTime: 268.13us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 573.109us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.79ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.737us - CompressTime: 0ns - ExecTime: 357.462us - InputRows: 317 - LocalBytesSent: 9.93 KB - LocalSendTime: 101.844us - LocalSentRows: 317 - MemoryUsage: - PeakMemoryUsage: 17.38 KB - MergeBlockTime: 0ns - OpenTime: 76.404us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 317 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.951us - SplitBlockHashComputeTime: 20.100us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 354ns - DeserializeAndMergeTime: 0ns - ExecTime: 156.810us - GetResultsTime: 91.670us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.608us - HashTableSize: 317 - InsertKeysToColumnTime: 48.497us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.289us - ProjectionTime: 50.496us - RowsProduced: 317 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s757ms PipelineXTask (index=22):(Active: 457.342us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 324.795us - CloseTime: 12.91us - GetBlockTime: 99.581us - OpenTime: 2.355us - PrepareTime: 112.231us - SinkTime: 196.120us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 437.545us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.775ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.484us - CompressTime: 0ns - ExecTime: 266.658us - InputRows: 315 - LocalBytesSent: 9.86 KB - LocalSendTime: 63.443us - LocalSentRows: 315 - MemoryUsage: - PeakMemoryUsage: 17.75 KB - MergeBlockTime: 0ns - OpenTime: 60.749us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 315 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.616us - SplitBlockHashComputeTime: 14.226us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 247ns - DeserializeAndMergeTime: 0ns - ExecTime: 107.102us - GetResultsTime: 52.487us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.847us - HashTableSize: 315 - InsertKeysToColumnTime: 25.447us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.430us - ProjectionTime: 39.193us - RowsProduced: 315 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s752ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.222ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.111ms - CloseTime: 11.576us - GetBlockTime: 103.38us - OpenTime: 3.969us - PrepareTime: 90.628us - SinkTime: 963.627us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.201ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.411ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 895ns - DeserializeAndMergeTime: 683.307us - ExecTime: 984.448us - ExprTime: 0ns - HashTableComputeTime: 244.721us - HashTableEmplaceTime: 126.353us - HashTableInputCount: 1.79K (1790) - InputRows: 1.79K (1790) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 950.312us - OpenTime: 23.322us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 143.469us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 36.151us - ProjectionTime: 0ns - RowsProduced: 1.79K (1790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s744ms PipelineXTask (index=3):(Active: 1.79ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.0ms - CloseTime: 6.580us - GetBlockTime: 74.443us - OpenTime: 3.130us - PrepareTime: 63.514us - SinkTime: 866.659us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.60ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.43ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 977ns - DeserializeAndMergeTime: 610.479us - ExecTime: 886.469us - ExprTime: 0ns - HashTableComputeTime: 221.545us - HashTableEmplaceTime: 128.655us - HashTableInputCount: 1.705K (1705) - InputRows: 1.705K (1705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 853.663us - OpenTime: 21.456us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.29us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.723us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 12.119us - ProjectionTime: 0ns - RowsProduced: 1.705K (1705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s748ms PipelineXTask (index=5):(Active: 1.30ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 935.598us - CloseTime: 7.943us - GetBlockTime: 88.195us - OpenTime: 17.388us - PrepareTime: 63.991us - SinkTime: 794.601us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.877ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.667us - DeserializeAndMergeTime: 550.84us - ExecTime: 813.628us - ExprTime: 0ns - HashTableComputeTime: 210.282us - HashTableEmplaceTime: 115.809us - HashTableInputCount: 1.637K (1637) - InputRows: 1.637K (1637) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 779.268us - OpenTime: 20.186us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 117.505us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 28.90us - ProjectionTime: 0ns - RowsProduced: 1.637K (1637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s743ms PipelineXTask (index=7):(Active: 999.627us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 918.123us - CloseTime: 5.262us - GetBlockTime: 68.329us - OpenTime: 3.31us - PrepareTime: 68.518us - SinkTime: 803.2us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 984.834us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.712ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.461us - DeserializeAndMergeTime: 572.863us - ExecTime: 833.912us - ExprTime: 0ns - HashTableComputeTime: 202.212us - HashTableEmplaceTime: 108.532us - HashTableInputCount: 1.65K (1650) - InputRows: 1.65K (1650) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 793.568us - OpenTime: 31.162us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.612us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 16.376us - ProjectionTime: 0ns - RowsProduced: 1.65K (1650) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s744ms PipelineXTask (index=9):(Active: 1.15ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 961.287us - CloseTime: 4.34us - GetBlockTime: 84.394us - OpenTime: 2.500us - PrepareTime: 42.741us - SinkTime: 835.5us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.0ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.966ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 994ns - DeserializeAndMergeTime: 579.449us - ExecTime: 852.231us - ExprTime: 0ns - HashTableComputeTime: 213.746us - HashTableEmplaceTime: 139.820us - HashTableInputCount: 1.665K (1665) - InputRows: 1.665K (1665) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 823.724us - OpenTime: 18.390us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.677us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.378us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 185.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 12.764us - ProjectionTime: 0ns - RowsProduced: 1.665K (1665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s747ms PipelineXTask (index=11):(Active: 1.395ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.319ms - CloseTime: 9.35us - GetBlockTime: 83.995us - OpenTime: 2.871us - PrepareTime: 58.923us - SinkTime: 1.174ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.369ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.115ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.142us - DeserializeAndMergeTime: 853.915us - ExecTime: 1.197ms - ExprTime: 0ns - HashTableComputeTime: 270.558us - HashTableEmplaceTime: 175.923us - HashTableInputCount: 1.922K (1922) - InputRows: 1.922K (1922) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 1.157ms - OpenTime: 25.473us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.560us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 202.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 17.699us - ProjectionTime: 0ns - RowsProduced: 1.922K (1922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s747ms PipelineXTask (index=13):(Active: 1.121ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.45ms - CloseTime: 3.508us - GetBlockTime: 68.235us - OpenTime: 2.899us - PrepareTime: 63.635us - SinkTime: 930.768us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.758ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 729ns - DeserializeAndMergeTime: 684.851us - ExecTime: 951.37us - ExprTime: 0ns - HashTableComputeTime: 216.362us - HashTableEmplaceTime: 131.963us - HashTableInputCount: 1.838K (1838) - InputRows: 1.838K (1838) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 920.192us - OpenTime: 22.157us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.411us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.131us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 194.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 17.579us - ProjectionTime: 0ns - RowsProduced: 1.838K (1838) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s747ms PipelineXTask (index=15):(Active: 1.188ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.129ms - CloseTime: 4.436us - GetBlockTime: 111.150us - OpenTime: 2.506us - PrepareTime: 47.350us - SinkTime: 968.879us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.174ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.436ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 552ns - DeserializeAndMergeTime: 694.783us - ExecTime: 984.299us - ExprTime: 0ns - HashTableComputeTime: 203.184us - HashTableEmplaceTime: 110.459us - HashTableInputCount: 1.674K (1674) - InputRows: 1.674K (1674) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 948.631us - OpenTime: 18.161us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.454us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 11.72us - ProjectionTime: 0ns - RowsProduced: 1.674K (1674) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s744ms PipelineXTask (index=17):(Active: 1.99ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.32ms - CloseTime: 5.988us - GetBlockTime: 106.859us - OpenTime: 2.29us - PrepareTime: 54.347us - SinkTime: 887.358us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.84ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.743ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.27us - DeserializeAndMergeTime: 602.885us - ExecTime: 909.486us - ExprTime: 0ns - HashTableComputeTime: 245.344us - HashTableEmplaceTime: 130.263us - HashTableInputCount: 1.708K (1708) - InputRows: 1.708K (1708) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 873.513us - OpenTime: 24.455us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.205us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 17.176us - ProjectionTime: 0ns - RowsProduced: 1.708K (1708) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s742ms PipelineXTask (index=19):(Active: 1.110ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.44ms - CloseTime: 9.33us - GetBlockTime: 66.842us - OpenTime: 3.33us - PrepareTime: 49.231us - SinkTime: 931.690us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.89ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.710ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.456us - DeserializeAndMergeTime: 658.955us - ExecTime: 946.732us - ExprTime: 0ns - HashTableComputeTime: 239.987us - HashTableEmplaceTime: 143.462us - HashTableInputCount: 1.821K (1821) - InputRows: 1.821K (1821) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 916.875us - OpenTime: 16.79us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.570us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.334us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 15.571us - ProjectionTime: 0ns - RowsProduced: 1.821K (1821) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s747ms PipelineXTask (index=21):(Active: 1.37ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 966.882us - CloseTime: 6.648us - GetBlockTime: 64.908us - OpenTime: 3.551us - PrepareTime: 55.228us - SinkTime: 842.449us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.20ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.997ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 688ns - DeserializeAndMergeTime: 580.16us - ExecTime: 856.368us - ExprTime: 0ns - HashTableComputeTime: 214.191us - HashTableEmplaceTime: 131.62us - HashTableInputCount: 1.681K (1681) - InputRows: 1.681K (1681) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 829.921us - OpenTime: 16.1us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.165us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.25us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 21.764us - ProjectionTime: 0ns - RowsProduced: 1.681K (1681) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s747ms PipelineXTask (index=23):(Active: 1.42ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 965.797us - CloseTime: 12.944us - GetBlockTime: 66.80us - OpenTime: 2.705us - PrepareTime: 54.933us - SinkTime: 862.182us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.546ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 4.915us - DeserializeAndMergeTime: 606.5us - ExecTime: 880.516us - ExprTime: 0ns - HashTableComputeTime: 228.785us - HashTableEmplaceTime: 132.408us - HashTableInputCount: 1.731K (1731) - InputRows: 1.731K (1731) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 852.507us - OpenTime: 15.641us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.490us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.00 KB - MemoryUsage: - Blocks: 77.50 KB - PeakMemoryUsage: 77.50 KB - OpenTime: 21.287us - ProjectionTime: 0ns - RowsProduced: 1.731K (1731) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s745ms Fragment 25: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 33.49ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 32.560ms - CloseTime: 275.699us - GetBlockTime: 31.735ms - OpenTime: 9.816us - PrepareTime: 191.920us - SinkTime: 407.325us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 968.166ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.27us - CompressTime: 0ns - ExecTime: 492.802us - InputRows: 1.729K (1729) - LocalBytesSent: 132.38 KB - LocalSendTime: 92.974us - LocalSentRows: 1.729K (1729) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 72.763us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.729K (1729) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 183.525us - SplitBlockHashComputeTime: 40.55us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.214ms - CloseTime: 222.812us - DeserializeAndMergeTime: 0ns - ExecTime: 4.74ms - ExprTime: 49.992us - GetResultsTime: 526.645us - HashTableComputeTime: 1.454ms - HashTableEmplaceTime: 1.105ms - HashTableInputCount: 5.987K (5987) - HashTableIterateTime: 10.324us - HashTableSize: 1.729K (1729) - InsertKeysToColumnTime: 84.475us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 25.872us - ProjectionTime: 0ns - RowsProduced: 1.729K (1729) - SerializeDataTime: 409.765us - SerializeKeyTime: 0ns - SerializeResultTime: 529.766us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 16.236us - ExecTime: 5.808ms - InitProbeSideTime: 546.523us - JoinFilterTimer: 5.228us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 19.690us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.123us - ProbeFindNextTime: 0ns - ProbeRows: 5.55K (5550) - ProbeTime: 4.640ms - ProbeWhenBuildSideOutputTime: 145.717us - ProbeWhenProbeSideOutputTime: 384.944us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.480ms - ProjectionTime: 971.226us - RowsProduced: 5.987K (5987) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s175ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 7.681us - ExecTime: 20.777ms - InitProbeSideTime: 8.624ms - JoinFilterTimer: 7.170us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.595us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 37.302us - ProbeFindNextTime: 0ns - ProbeRows: 317.101K (317101) - ProbeTime: 20.35ms - ProbeWhenBuildSideOutputTime: 1.71ms - ProbeWhenProbeSideOutputTime: 90.901us - ProbeWhenProcessHashTableTime: 56.868us - ProbeWhenSearchHashTableTime: 9.292ms - ProjectionTime: 400.420us - RowsProduced: 5.55K (5550) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 505.287ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 10.310us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 832.647us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.28 MB - MemoryUsage: - Blocks: 2.67 MB - PeakMemoryUsage: 2.67 MB - OpenTime: 16.169us - ProjectionTime: 0ns - RowsProduced: 317.101K (317101) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s61ms PipelineXTask (index=3):(Active: 478.628ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 478.74ms - CloseTime: 313.510us - GetBlockTime: 472.223ms - OpenTime: 13.929us - PrepareTime: 218.248us - SinkTime: 466.398us - GetBlockCounter: 2.745K (2745) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 21 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 387.558ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 283.447ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.99us - CompressTime: 0ns - ExecTime: 561.181us - InputRows: 1.767K (1767) - LocalBytesSent: 136.50 KB - LocalSendTime: 106.352us - LocalSentRows: 1.767K (1767) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 79.379us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.767K (1767) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 211.337us - SplitBlockHashComputeTime: 42.991us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 6.355ms - CloseTime: 256.527us - DeserializeAndMergeTime: 0ns - ExecTime: 8.69ms - ExprTime: 406.637us - GetResultsTime: 626.930us - HashTableComputeTime: 2.856ms - HashTableEmplaceTime: 2.28ms - HashTableInputCount: 6.42K (6420) - HashTableIterateTime: 15.635us - HashTableSize: 1.767K (1767) - InsertKeysToColumnTime: 90.998us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 26.730us - ProjectionTime: 0ns - RowsProduced: 1.767K (1767) - SerializeDataTime: 495.760us - SerializeKeyTime: 0ns - SerializeResultTime: 630.607us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 856 - BuildOutputBlock: 0ns - CloseTime: 14.738us - ExecTime: 23.266ms - InitProbeSideTime: 1.297ms - JoinFilterTimer: 46.124us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 16.870us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 193.632us - ProbeFindNextTime: 0ns - ProbeRows: 5.739K (5739) - ProbeTime: 14.15ms - ProbeWhenBuildSideOutputTime: 699.250us - ProbeWhenProbeSideOutputTime: 1.148ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.383ms - ProjectionTime: 7.776ms - RowsProduced: 6.42K (6420) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s173ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 943 - BuildOutputBlock: 0ns - CloseTime: 9.238us - ExecTime: 398.870ms - InitProbeSideTime: 262.339ms - JoinFilterTimer: 208.778us - MemoryUsage: - PeakMemoryUsage: 504.00 KB - ProbeKeyArena: 504.00 KB - OpenTime: 13.871us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 491.801us - ProbeFindNextTime: 0ns - ProbeRows: 19.364209M (19364209) - ProbeTime: 385.235ms - ProbeWhenBuildSideOutputTime: 3.992ms - ProbeWhenProbeSideOutputTime: 1.141ms - ProbeWhenProcessHashTableTime: 62.987us - ProbeWhenSearchHashTableTime: 100.902ms - ProjectionTime: 4.697ms - RowsProduced: 5.739K (5739) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 935.474ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 2.743K (2743) - BytesReceived: 0.00 - CloseTime: 11.417us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.969ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 119.09 MB - MemoryUsage: - Blocks: 19.66 MB - PeakMemoryUsage: 19.66 MB - OpenTime: 17.380us - ProjectionTime: 0ns - RowsProduced: 19.364209M (19364209) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 872.406ms PipelineXTask (index=6):(Active: 73.981ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 73.414ms - CloseTime: 325.856us - GetBlockTime: 72.504ms - OpenTime: 9.463us - PrepareTime: 221.297us - SinkTime: 484.558us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.976ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 827.476ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.589us - CompressTime: 0ns - ExecTime: 582.489us - InputRows: 1.717K (1717) - LocalBytesSent: 134.49 KB - LocalSendTime: 85.281us - LocalSentRows: 1.717K (1717) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 81.173us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.717K (1717) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 233.615us - SplitBlockHashComputeTime: 47.465us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.347ms - CloseTime: 255.268us - DeserializeAndMergeTime: 0ns - ExecTime: 4.317ms - ExprTime: 61.474us - GetResultsTime: 607.374us - HashTableComputeTime: 1.510ms - HashTableEmplaceTime: 1.131ms - HashTableInputCount: 6.115K (6115) - HashTableIterateTime: 10.937us - HashTableSize: 1.717K (1717) - InsertKeysToColumnTime: 86.973us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 29.563us - ProjectionTime: 0ns - RowsProduced: 1.717K (1717) - SerializeDataTime: 488.918us - SerializeKeyTime: 0ns - SerializeResultTime: 610.233us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 19.848us - ExecTime: 30.131ms - InitProbeSideTime: 549.968us - JoinFilterTimer: 4.588us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 12.645us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.286us - ProbeFindNextTime: 0ns - ProbeRows: 6.052K (6052) - ProbeTime: 28.966ms - ProbeWhenBuildSideOutputTime: 129.70us - ProbeWhenProbeSideOutputTime: 451.25us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.577ms - ProjectionTime: 960.460us - RowsProduced: 6.115K (6115) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s300ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 17.493us - ExecTime: 37.105ms - InitProbeSideTime: 8.857ms - JoinFilterTimer: 5.871us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 7.935us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.917us - ProbeFindNextTime: 0ns - ProbeRows: 316.829K (316829) - ProbeTime: 36.378ms - ProbeWhenBuildSideOutputTime: 1.100ms - ProbeWhenProbeSideOutputTime: 77.195us - ProbeWhenProcessHashTableTime: 95.291us - ProbeWhenSearchHashTableTime: 25.350ms - ProjectionTime: 374.939us - RowsProduced: 6.052K (6052) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 485.262ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 9.842us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 833.739us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.21 MB - MemoryUsage: - Blocks: 3.68 MB - PeakMemoryUsage: 3.68 MB - OpenTime: 18.106us - ProjectionTime: 0ns - RowsProduced: 316.829K (316829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s60ms PipelineXTask (index=9):(Active: 43.634ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 42.934ms - CloseTime: 465.596us - GetBlockTime: 41.824ms - OpenTime: 10.129us - PrepareTime: 216.183us - SinkTime: 661.611us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.589ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 557.948ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.465us - CompressTime: 0ns - ExecTime: 752.466us - InputRows: 1.721K (1721) - LocalBytesSent: 133.70 KB - LocalSendTime: 114.405us - LocalSentRows: 1.721K (1721) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 72.485us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.721K (1721) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 315.400us - SplitBlockHashComputeTime: 61.600us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.461ms - CloseTime: 386.767us - DeserializeAndMergeTime: 0ns - ExecTime: 4.876ms - ExprTime: 63.94us - GetResultsTime: 914.350us - HashTableComputeTime: 1.511ms - HashTableEmplaceTime: 1.117ms - HashTableInputCount: 6.056K (6056) - HashTableIterateTime: 19.792us - HashTableSize: 1.721K (1721) - InsertKeysToColumnTime: 173.133us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 25.344us - ProjectionTime: 0ns - RowsProduced: 1.721K (1721) - SerializeDataTime: 668.579us - SerializeKeyTime: 0ns - SerializeResultTime: 919.640us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 17.660us - ExecTime: 6.105ms - InitProbeSideTime: 564.591us - JoinFilterTimer: 4.926us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 21.916us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.83us - ProbeFindNextTime: 0ns - ProbeRows: 5.77K (5770) - ProbeTime: 4.870ms - ProbeWhenBuildSideOutputTime: 134.22us - ProbeWhenProbeSideOutputTime: 433.598us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.678ms - ProjectionTime: 1.8ms - RowsProduced: 6.056K (6056) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s432ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 21.772us - ExecTime: 30.46ms - InitProbeSideTime: 8.36ms - JoinFilterTimer: 6.106us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.37us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.360us - ProbeFindNextTime: 0ns - ProbeRows: 316.024K (316024) - ProbeTime: 29.299ms - ProbeWhenBuildSideOutputTime: 1.183ms - ProbeWhenProbeSideOutputTime: 79.774us - ProbeWhenProcessHashTableTime: 124.992us - ProbeWhenSearchHashTableTime: 18.938ms - ProjectionTime: 396.120us - RowsProduced: 5.77K (5770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 572.274ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 12.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 761.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.21 MB - MemoryUsage: - Blocks: 3.53 MB - PeakMemoryUsage: 3.53 MB - OpenTime: 20.988us - ProjectionTime: 0ns - RowsProduced: 316.024K (316024) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s145ms PipelineXTask (index=12):(Active: 58.448ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 57.926ms - CloseTime: 298.948us - GetBlockTime: 57.62ms - OpenTime: 10.991us - PrepareTime: 205.237us - SinkTime: 406.210us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.886ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 620.139ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.239us - CompressTime: 0ns - ExecTime: 481.388us - InputRows: 1.725K (1725) - LocalBytesSent: 133.99 KB - LocalSendTime: 70.105us - LocalSentRows: 1.725K (1725) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 61.937us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.725K (1725) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 182.503us - SplitBlockHashComputeTime: 42.748us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.369ms - CloseTime: 227.593us - DeserializeAndMergeTime: 0ns - ExecTime: 4.208ms - ExprTime: 47.679us - GetResultsTime: 505.604us - HashTableComputeTime: 1.529ms - HashTableEmplaceTime: 1.126ms - HashTableInputCount: 6.043K (6043) - HashTableIterateTime: 9.94us - HashTableSize: 1.725K (1725) - InsertKeysToColumnTime: 74.927us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 23.340us - ProjectionTime: 0ns - RowsProduced: 1.725K (1725) - SerializeDataTime: 399.837us - SerializeKeyTime: 0ns - SerializeResultTime: 507.155us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 23.602us - ExecTime: 25.893ms - InitProbeSideTime: 20.692ms - JoinFilterTimer: 4.598us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 18.824us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.318us - ProbeFindNextTime: 0ns - ProbeRows: 5.684K (5684) - ProbeTime: 24.745ms - ProbeWhenBuildSideOutputTime: 132.605us - ProbeWhenProbeSideOutputTime: 450.78us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.439ms - ProjectionTime: 945.974us - RowsProduced: 6.043K (6043) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s151ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 23.528us - ExecTime: 26.9ms - InitProbeSideTime: 8.145ms - JoinFilterTimer: 5.513us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.470us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.515us - ProbeFindNextTime: 0ns - ProbeRows: 316.0K (316000) - ProbeTime: 25.321ms - ProbeWhenBuildSideOutputTime: 1.181ms - ProbeWhenProbeSideOutputTime: 75.864us - ProbeWhenProcessHashTableTime: 60.956us - ProbeWhenSearchHashTableTime: 14.945ms - ProjectionTime: 366.316us - RowsProduced: 5.684K (5684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 812.93ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 6.113us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 745.380us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.20 MB - MemoryUsage: - Blocks: 3.52 MB - PeakMemoryUsage: 3.52 MB - OpenTime: 24.177us - ProjectionTime: 0ns - RowsProduced: 316.0K (316000) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s101ms PipelineXTask (index=15):(Active: 66.571ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 66.85ms - CloseTime: 254.893us - GetBlockTime: 65.308ms - OpenTime: 17.708us - PrepareTime: 203.761us - SinkTime: 394.636us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.666ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 736.930ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.752us - CompressTime: 0ns - ExecTime: 468.949us - InputRows: 1.772K (1772) - LocalBytesSent: 137.68 KB - LocalSendTime: 78.933us - LocalSentRows: 1.772K (1772) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 64.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.772K (1772) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 182.247us - SplitBlockHashComputeTime: 40.433us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.258ms - CloseTime: 190.563us - DeserializeAndMergeTime: 0ns - ExecTime: 4.42ms - ExprTime: 46.551us - GetResultsTime: 485.563us - HashTableComputeTime: 1.507ms - HashTableEmplaceTime: 1.124ms - HashTableInputCount: 6.897K (6897) - HashTableIterateTime: 11.778us - HashTableSize: 1.772K (1772) - InsertKeysToColumnTime: 77.620us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 37.462us - ProjectionTime: 0ns - RowsProduced: 1.772K (1772) - SerializeDataTime: 376.806us - SerializeKeyTime: 0ns - SerializeResultTime: 487.285us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 12.818us - ExecTime: 5.674ms - InitProbeSideTime: 530.13us - JoinFilterTimer: 4.604us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.407us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.270us - ProbeFindNextTime: 0ns - ProbeRows: 6.522K (6522) - ProbeTime: 4.547ms - ProbeWhenBuildSideOutputTime: 133.826us - ProbeWhenProbeSideOutputTime: 474.910us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.500ms - ProjectionTime: 964.927us - RowsProduced: 6.897K (6897) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s263ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 9.82us - ExecTime: 20.5ms - InitProbeSideTime: 8.342ms - JoinFilterTimer: 5.845us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 16.240us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.339us - ProbeFindNextTime: 0ns - ProbeRows: 316.529K (316529) - ProbeTime: 19.319ms - ProbeWhenBuildSideOutputTime: 1.88ms - ProbeWhenProbeSideOutputTime: 75.24us - ProbeWhenProcessHashTableTime: 95.948us - ProbeWhenSearchHashTableTime: 8.953ms - ProjectionTime: 387.972us - RowsProduced: 6.522K (6522) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 606.524ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 27.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.515ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.18 MB - MemoryUsage: - Blocks: 4.01 MB - PeakMemoryUsage: 4.01 MB - OpenTime: 17.227us - ProjectionTime: 0ns - RowsProduced: 316.529K (316529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s69ms PipelineXTask (index=18):(Active: 80.913ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 80.198ms - CloseTime: 487.85us - GetBlockTime: 78.875ms - OpenTime: 7.582us - PrepareTime: 212.382us - SinkTime: 770.480us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 38.218ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 673.660ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.253us - CompressTime: 0ns - ExecTime: 856.222us - InputRows: 1.781K (1781) - LocalBytesSent: 137.25 KB - LocalSendTime: 91.612us - LocalSentRows: 1.781K (1781) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 67.393us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.781K (1781) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 402.412us - SplitBlockHashComputeTime: 80.755us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.697ms - CloseTime: 387.421us - DeserializeAndMergeTime: 0ns - ExecTime: 5.66ms - ExprTime: 74.959us - GetResultsTime: 846.75us - HashTableComputeTime: 1.690ms - HashTableEmplaceTime: 1.274ms - HashTableInputCount: 6.219K (6219) - HashTableIterateTime: 20.163us - HashTableSize: 1.781K (1781) - InsertKeysToColumnTime: 169.729us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 37.458us - ProjectionTime: 0ns - RowsProduced: 1.781K (1781) - SerializeDataTime: 626.545us - SerializeKeyTime: 0ns - SerializeResultTime: 850.550us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 57.442us - ExecTime: 19.502ms - InitProbeSideTime: 622.211us - JoinFilterTimer: 4.497us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 15.937us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.311us - ProbeFindNextTime: 0ns - ProbeRows: 5.851K (5851) - ProbeTime: 5.40ms - ProbeWhenBuildSideOutputTime: 142.350us - ProbeWhenProbeSideOutputTime: 451.622us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.652ms - ProjectionTime: 14.190ms - RowsProduced: 6.219K (6219) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s184ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 10.759us - ExecTime: 24.224ms - InitProbeSideTime: 9.365ms - JoinFilterTimer: 5.856us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.433us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.20us - ProbeFindNextTime: 0ns - ProbeRows: 315.944K (315944) - ProbeTime: 23.342ms - ProbeWhenBuildSideOutputTime: 1.255ms - ProbeWhenProbeSideOutputTime: 83.369us - ProbeWhenProcessHashTableTime: 99.822us - ProbeWhenSearchHashTableTime: 11.497ms - ProjectionTime: 494.114us - RowsProduced: 5.851K (5851) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 623.934ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 5.868us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.904ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 MB - MemoryUsage: - Blocks: 2.55 MB - PeakMemoryUsage: 2.55 MB - OpenTime: 19.198us - ProjectionTime: 0ns - RowsProduced: 315.944K (315944) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s185ms PipelineXTask (index=21):(Active: 37.281ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 36.725ms - CloseTime: 327.3us - GetBlockTime: 35.801ms - OpenTime: 12.888us - PrepareTime: 205.653us - SinkTime: 466.161us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.464ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 619.978ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.148us - CompressTime: 0ns - ExecTime: 553.93us - InputRows: 1.728K (1728) - LocalBytesSent: 133.71 KB - LocalSendTime: 76.725us - LocalSentRows: 1.728K (1728) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 73.543us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.728K (1728) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 209.825us - SplitBlockHashComputeTime: 44.940us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.321ms - CloseTime: 245.337us - DeserializeAndMergeTime: 0ns - ExecTime: 4.244ms - ExprTime: 50.211us - GetResultsTime: 558.457us - HashTableComputeTime: 1.487ms - HashTableEmplaceTime: 1.141ms - HashTableInputCount: 6.244K (6244) - HashTableIterateTime: 11.455us - HashTableSize: 1.728K (1728) - InsertKeysToColumnTime: 86.201us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 23.707us - ProjectionTime: 0ns - RowsProduced: 1.728K (1728) - SerializeDataTime: 430.443us - SerializeKeyTime: 0ns - SerializeResultTime: 561.96us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 40.757us - ExecTime: 5.948ms - InitProbeSideTime: 581.180us - JoinFilterTimer: 5.445us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 10.853us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.601us - ProbeFindNextTime: 0ns - ProbeRows: 5.743K (5743) - ProbeTime: 4.686ms - ProbeWhenBuildSideOutputTime: 134.409us - ProbeWhenProbeSideOutputTime: 457.403us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.465ms - ProjectionTime: 1.47ms - RowsProduced: 6.244K (6244) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s402ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 10.178us - ExecTime: 24.587ms - InitProbeSideTime: 12.246ms - JoinFilterTimer: 7.823us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 9.597us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.381us - ProbeFindNextTime: 0ns - ProbeRows: 316.968K (316968) - ProbeTime: 23.842ms - ProbeWhenBuildSideOutputTime: 1.178ms - ProbeWhenProbeSideOutputTime: 81.151us - ProbeWhenProcessHashTableTime: 56.273us - ProbeWhenSearchHashTableTime: 9.319ms - ProjectionTime: 415.319us - RowsProduced: 5.743K (5743) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 640.67ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 10.331us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 864.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.37 MB - MemoryUsage: - Blocks: 3.55 MB - PeakMemoryUsage: 3.55 MB - OpenTime: 22.746us - ProjectionTime: 0ns - RowsProduced: 316.968K (316968) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s48ms PipelineXTask (index=24):(Active: 45.513ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 45.3ms - CloseTime: 274.738us - GetBlockTime: 44.151ms - OpenTime: 15.200us - PrepareTime: 211.293us - SinkTime: 354.623us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.175ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 577.280ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.215us - CompressTime: 0ns - ExecTime: 439.694us - InputRows: 1.685K (1685) - LocalBytesSent: 131.29 KB - LocalSendTime: 65.903us - LocalSentRows: 1.685K (1685) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 74.466us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.685K (1685) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 156.771us - SplitBlockHashComputeTime: 41.150us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.340ms - CloseTime: 221.301us - DeserializeAndMergeTime: 0ns - ExecTime: 4.255ms - ExprTime: 71.925us - GetResultsTime: 584.12us - HashTableComputeTime: 1.409ms - HashTableEmplaceTime: 1.91ms - HashTableInputCount: 5.947K (5947) - HashTableIterateTime: 14.215us - HashTableSize: 1.685K (1685) - InsertKeysToColumnTime: 73.905us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 24.686us - ProjectionTime: 0ns - RowsProduced: 1.685K (1685) - SerializeDataTime: 474.935us - SerializeKeyTime: 0ns - SerializeResultTime: 585.841us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 15.619us - ExecTime: 5.820ms - InitProbeSideTime: 564.956us - JoinFilterTimer: 4.302us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 13.90us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.819us - ProbeFindNextTime: 0ns - ProbeRows: 5.633K (5633) - ProbeTime: 4.638ms - ProbeWhenBuildSideOutputTime: 129.764us - ProbeWhenProbeSideOutputTime: 456.570us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.447ms - ProjectionTime: 972.887us - RowsProduced: 5.947K (5947) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s442ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 7.919us - ExecTime: 33.84ms - InitProbeSideTime: 8.141ms - JoinFilterTimer: 6.309us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.930us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.763us - ProbeFindNextTime: 0ns - ProbeRows: 316.937K (316937) - ProbeTime: 32.390ms - ProbeWhenBuildSideOutputTime: 1.113ms - ProbeWhenProbeSideOutputTime: 70.19us - ProbeWhenProcessHashTableTime: 60.419us - ProbeWhenSearchHashTableTime: 22.111ms - ProjectionTime: 371.480us - RowsProduced: 5.633K (5633) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 456.272ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 14.465us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 733.123us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.19 MB - MemoryUsage: - Blocks: 2.53 MB - PeakMemoryUsage: 2.53 MB - OpenTime: 32.275us - ProjectionTime: 0ns - RowsProduced: 316.937K (316937) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s222ms PipelineXTask (index=27):(Active: 43.613ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 32.327ms - CloseTime: 11.37ms - GetBlockTime: 31.281ms - OpenTime: 36.311us - PrepareTime: 201.844us - SinkTime: 616.202us - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 734.677ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.484us - CompressTime: 0ns - ExecTime: 706.380us - InputRows: 1.755K (1755) - LocalBytesSent: 136.17 KB - LocalSendTime: 93.107us - LocalSentRows: 1.755K (1755) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 69.348us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.755K (1755) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 283.142us - SplitBlockHashComputeTime: 73.808us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.422ms - CloseTime: 420.512us - DeserializeAndMergeTime: 0ns - ExecTime: 4.621ms - ExprTime: 45.385us - GetResultsTime: 680.398us - HashTableComputeTime: 1.586ms - HashTableEmplaceTime: 1.143ms - HashTableInputCount: 7.289K (7289) - HashTableIterateTime: 13.295us - HashTableSize: 1.755K (1755) - InsertKeysToColumnTime: 119.998us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 22.282us - ProjectionTime: 0ns - RowsProduced: 1.755K (1755) - SerializeDataTime: 525.351us - SerializeKeyTime: 0ns - SerializeResultTime: 683.403us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 26.769us - ExecTime: 5.899ms - InitProbeSideTime: 586.477us - JoinFilterTimer: 4.883us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 23.297us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.243us - ProbeFindNextTime: 0ns - ProbeRows: 6.153K (6153) - ProbeTime: 4.677ms - ProbeWhenBuildSideOutputTime: 129.590us - ProbeWhenProbeSideOutputTime: 488.320us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.482ms - ProjectionTime: 1.6ms - RowsProduced: 7.289K (7289) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s281ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 20.78us - ExecTime: 19.929ms - InitProbeSideTime: 7.977ms - JoinFilterTimer: 6.208us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 7.886us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.800us - ProbeFindNextTime: 0ns - ProbeRows: 316.786K (316786) - ProbeTime: 19.232ms - ProbeWhenBuildSideOutputTime: 1.146ms - ProbeWhenProbeSideOutputTime: 63.985us - ProbeWhenProcessHashTableTime: 131.166us - ProbeWhenSearchHashTableTime: 9.32ms - ProjectionTime: 389.628us - RowsProduced: 6.153K (6153) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 559.205ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 82 - BytesReceived: 0.00 - CloseTime: 10.539ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 11.418ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.38 MB - MemoryUsage: - Blocks: 4.82 MB - PeakMemoryUsage: 4.82 MB - OpenTime: 15.14us - ProjectionTime: 0ns - RowsProduced: 316.786K (316786) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s135ms PipelineXTask (index=30):(Active: 62.933ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 49.715ms - CloseTime: 13.22ms - GetBlockTime: 48.855ms - OpenTime: 6.704us - PrepareTime: 182.851us - SinkTime: 433.722us - GetBlockCounter: 85 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.624ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 573.2ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.915us - CompressTime: 0ns - ExecTime: 513.466us - InputRows: 1.72K (1720) - LocalBytesSent: 133.67 KB - LocalSendTime: 90.256us - LocalSentRows: 1.72K (1720) - MemoryUsage: - PeakMemoryUsage: 185.00 KB - MergeBlockTime: 0ns - OpenTime: 70.176us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.72K (1720) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 194.25us - SplitBlockHashComputeTime: 39.948us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.250ms - CloseTime: 258.747us - DeserializeAndMergeTime: 0ns - ExecTime: 4.105ms - ExprTime: 70.319us - GetResultsTime: 482.434us - HashTableComputeTime: 1.456ms - HashTableEmplaceTime: 1.82ms - HashTableInputCount: 5.933K (5933) - HashTableIterateTime: 9.162us - HashTableSize: 1.72K (1720) - InsertKeysToColumnTime: 81.385us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 22.954us - ProjectionTime: 0ns - RowsProduced: 1.72K (1720) - SerializeDataTime: 359.812us - SerializeKeyTime: 0ns - SerializeResultTime: 484.460us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 19.653us - ExecTime: 6.78ms - InitProbeSideTime: 589.566us - JoinFilterTimer: 8.493us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 10.834us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.897us - ProbeFindNextTime: 0ns - ProbeRows: 5.735K (5735) - ProbeTime: 4.760ms - ProbeWhenBuildSideOutputTime: 149.739us - ProbeWhenProbeSideOutputTime: 460.232us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.449ms - ProjectionTime: 1.108ms - RowsProduced: 5.933K (5933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s403ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 17.575us - ExecTime: 37.638ms - InitProbeSideTime: 8.856ms - JoinFilterTimer: 8.590us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 13.155us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.359us - ProbeFindNextTime: 0ns - ProbeRows: 316.956K (316956) - ProbeTime: 36.840ms - ProbeWhenBuildSideOutputTime: 1.241ms - ProbeWhenProbeSideOutputTime: 81.491us - ProbeWhenProcessHashTableTime: 67.185us - ProbeWhenSearchHashTableTime: 25.633ms - ProjectionTime: 425.55us - RowsProduced: 5.735K (5735) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 637.818ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 83 - BytesReceived: 0.00 - CloseTime: 12.706ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.575ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.26 MB - MemoryUsage: - Blocks: 4.89 MB - PeakMemoryUsage: 4.89 MB - OpenTime: 16.397us - ProjectionTime: 0ns - RowsProduced: 316.956K (316956) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s79ms PipelineXTask (index=33):(Active: 55.834ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 55.338ms - CloseTime: 251.579us - GetBlockTime: 54.387ms - OpenTime: 29.998us - PrepareTime: 204.530us - SinkTime: 451.98us - GetBlockCounter: 85 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.983ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 688.815ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.262us - CompressTime: 0ns - ExecTime: 533.701us - InputRows: 1.722K (1722) - LocalBytesSent: 133.99 KB - LocalSendTime: 67.625us - LocalSentRows: 1.722K (1722) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 71.81us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.722K (1722) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 220.160us - SplitBlockHashComputeTime: 46.438us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.519ms - CloseTime: 206.832us - DeserializeAndMergeTime: 0ns - ExecTime: 4.489ms - ExprTime: 67.218us - GetResultsTime: 645.900us - HashTableComputeTime: 1.588ms - HashTableEmplaceTime: 1.183ms - HashTableInputCount: 7.059K (7059) - HashTableIterateTime: 11.511us - HashTableSize: 1.722K (1722) - InsertKeysToColumnTime: 113.180us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 24.709us - ProjectionTime: 0ns - RowsProduced: 1.722K (1722) - SerializeDataTime: 488.500us - SerializeKeyTime: 0ns - SerializeResultTime: 648.570us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 12.9us - ExecTime: 6.71ms - InitProbeSideTime: 559.161us - JoinFilterTimer: 5.82us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 27.185us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.582us - ProbeFindNextTime: 0ns - ProbeRows: 5.684K (5684) - ProbeTime: 4.761ms - ProbeWhenBuildSideOutputTime: 152.7us - ProbeWhenProbeSideOutputTime: 459.776us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.524ms - ProjectionTime: 1.99ms - RowsProduced: 7.059K (7059) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s345ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 10.917us - ExecTime: 21.321ms - InitProbeSideTime: 8.771ms - JoinFilterTimer: 7.114us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 12.150us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.123us - ProbeFindNextTime: 0ns - ProbeRows: 317.096K (317096) - ProbeTime: 20.561ms - ProbeWhenBuildSideOutputTime: 1.76ms - ProbeWhenProbeSideOutputTime: 78.856us - ProbeWhenProcessHashTableTime: 63.757us - ProbeWhenSearchHashTableTime: 9.615ms - ProjectionTime: 417.37us - RowsProduced: 5.684K (5684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 584.285ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 83 - BytesReceived: 0.00 - CloseTime: 4.642us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.311ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.18 MB - MemoryUsage: - Blocks: 2.52 MB - PeakMemoryUsage: 2.52 MB - OpenTime: 31.186us - ProjectionTime: 0ns - RowsProduced: 317.096K (317096) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s74ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 215.966ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 215.839ms - CloseTime: 31.97us - GetBlockTime: 14.506ms - OpenTime: 2.508us - PrepareTime: 86.337us - SinkTime: 200.924ms - GetBlockCounter: 104 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.823ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s63ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 61.122us - BuildRows: 403.727K (403727) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 107.827ms - BuildTableInsertTime: 33.728ms - BuildTableTime: 34.107ms - CloseTime: 0ns - ExecTime: 200.916ms - InputRows: 403.726K (403726) - MemoryUsage: - BuildBlocks: 40.81 MB - BuildKeyArena: 12.33 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.68 MB - OpenTime: 38.908us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 944.287us - RuntimeFilterComputeTime: 56.794ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 103 - BytesReceived: 0.00 - CloseTime: 26.546us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.462ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.85 MB - MemoryUsage: - Blocks: 12.32 MB - PeakMemoryUsage: 12.32 MB - OpenTime: 9.41us - ProjectionTime: 0ns - RowsProduced: 403.726K (403726) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s695ms PipelineXTask (index=4):(Active: 133.683ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 133.596ms - CloseTime: 16.356us - GetBlockTime: 2.617ms - OpenTime: 2.341us - PrepareTime: 60.710us - SinkTime: 130.621ms - GetBlockCounter: 109 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.865ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s464ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 49.743us - BuildRows: 413.714K (413714) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.804ms - BuildTableInsertTime: 21.418ms - BuildTableTime: 21.811ms - CloseTime: 0ns - ExecTime: 130.597ms - InputRows: 413.713K (413713) - MemoryUsage: - BuildBlocks: 41.59 MB - BuildKeyArena: 12.63 MB - HashTable: 3.58 MB - PeakMemoryUsage: 57.80 MB - OpenTime: 25.199us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.62ms - RuntimeFilterComputeTime: 53.832ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 108 - BytesReceived: 0.00 - CloseTime: 12.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.550ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 67.94 MB - MemoryUsage: - Blocks: 11.89 MB - PeakMemoryUsage: 11.89 MB - OpenTime: 14.794us - ProjectionTime: 0ns - RowsProduced: 413.713K (413713) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s398ms PipelineXTask (index=7):(Active: 131.682ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 131.603ms - CloseTime: 15.109us - GetBlockTime: 2.665ms - OpenTime: 2.397us - PrepareTime: 52.114us - SinkTime: 128.504ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.308ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s115ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 60.118us - BuildRows: 402.736K (402736) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.590ms - BuildTableInsertTime: 22.903ms - BuildTableTime: 23.285ms - CloseTime: 0ns - ExecTime: 128.476ms - InputRows: 402.735K (402735) - MemoryUsage: - BuildBlocks: 40.71 MB - BuildKeyArena: 12.30 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.54 MB - OpenTime: 16.181us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.59ms - RuntimeFilterComputeTime: 29.403ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 11.405us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.613ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.32 MB - MemoryUsage: - Blocks: 11.15 MB - PeakMemoryUsage: 11.15 MB - OpenTime: 15.820us - ProjectionTime: 0ns - RowsProduced: 402.735K (402735) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s782ms PipelineXTask (index=10):(Active: 145.670ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 145.583ms - CloseTime: 11.966us - GetBlockTime: 2.823ms - OpenTime: 2.755us - PrepareTime: 65.904us - SinkTime: 142.340ms - GetBlockCounter: 105 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 130.132ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s474ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 64.633us - BuildRows: 403.532K (403532) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 82.380ms - BuildTableInsertTime: 28.3ms - BuildTableTime: 28.355ms - CloseTime: 0ns - ExecTime: 142.314ms - InputRows: 403.531K (403531) - MemoryUsage: - BuildBlocks: 40.79 MB - BuildKeyArena: 12.32 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.65 MB - OpenTime: 15.57us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.1ms - RuntimeFilterComputeTime: 27.835ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 104 - BytesReceived: 0.00 - CloseTime: 9.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.770ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.88 MB - MemoryUsage: - Blocks: 18.94 MB - PeakMemoryUsage: 18.94 MB - OpenTime: 31.943us - ProjectionTime: 0ns - RowsProduced: 403.531K (403531) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s395ms PipelineXTask (index=13):(Active: 170.381ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 170.309ms - CloseTime: 13.755us - GetBlockTime: 27.34ms - OpenTime: 2.389us - PrepareTime: 48.722us - SinkTime: 142.863ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.490ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s397ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 56.267us - BuildRows: 402.19K (402190) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 90.577ms - BuildTableInsertTime: 16.912ms - BuildTableTime: 20.530ms - CloseTime: 0ns - ExecTime: 142.822ms - InputRows: 402.189K (402189) - MemoryUsage: - BuildBlocks: 40.66 MB - BuildKeyArena: 12.28 MB - HashTable: 3.53 MB - PeakMemoryUsage: 56.47 MB - OpenTime: 10.781us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.444us - RuntimeFilterComputeTime: 30.29ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 10.487us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.968ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.50 MB - MemoryUsage: - Blocks: 20.26 MB - PeakMemoryUsage: 20.26 MB - OpenTime: 14.591us - ProjectionTime: 0ns - RowsProduced: 402.189K (402189) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s367ms PipelineXTask (index=16):(Active: 119.366ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 119.283ms - CloseTime: 13.523us - GetBlockTime: 2.480ms - OpenTime: 3.658us - PrepareTime: 56.819us - SinkTime: 116.366ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.157ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s75ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 53.569us - BuildRows: 403.963K (403963) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.289ms - BuildTableInsertTime: 17.258ms - BuildTableTime: 17.637ms - CloseTime: 0ns - ExecTime: 116.337ms - InputRows: 403.962K (403962) - MemoryUsage: - BuildBlocks: 40.84 MB - BuildKeyArena: 12.33 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.71 MB - OpenTime: 16.69us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 923.483us - RuntimeFilterComputeTime: 29.17ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 10.313us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.428ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.15 MB - MemoryUsage: - Blocks: 9.24 MB - PeakMemoryUsage: 9.24 MB - OpenTime: 16.674us - ProjectionTime: 0ns - RowsProduced: 403.962K (403962) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s830ms PipelineXTask (index=19):(Active: 177.337ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 177.252ms - CloseTime: 16.824us - GetBlockTime: 2.870ms - OpenTime: 2.674us - PrepareTime: 57.660us - SinkTime: 173.967ms - GetBlockCounter: 103 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.116ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s273ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 53.639us - BuildRows: 403.274K (403274) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 111.454ms - BuildTableInsertTime: 20.759ms - BuildTableTime: 21.239ms - CloseTime: 0ns - ExecTime: 173.941ms - InputRows: 403.273K (403273) - MemoryUsage: - BuildBlocks: 40.77 MB - BuildKeyArena: 12.31 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.61 MB - OpenTime: 24.374us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.181ms - RuntimeFilterComputeTime: 37.271ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 102 - BytesReceived: 0.00 - CloseTime: 12.782us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.832ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.70 MB - MemoryUsage: - Blocks: 12.63 MB - PeakMemoryUsage: 12.63 MB - OpenTime: 18.174us - ProjectionTime: 0ns - RowsProduced: 403.273K (403273) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s531ms PipelineXTask (index=22):(Active: 120.485ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 120.403ms - CloseTime: 10.333us - GetBlockTime: 2.371ms - OpenTime: 1.940us - PrepareTime: 59.12us - SinkTime: 117.572ms - GetBlockCounter: 103 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.252ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s155ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 68.852us - BuildRows: 404.418K (404418) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.379ms - BuildTableInsertTime: 16.782ms - BuildTableTime: 17.137ms - CloseTime: 0ns - ExecTime: 117.545ms - InputRows: 404.417K (404417) - MemoryUsage: - BuildBlocks: 40.88 MB - BuildKeyArena: 12.35 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.77 MB - OpenTime: 23.197us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.36ms - RuntimeFilterComputeTime: 27.817ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 102 - BytesReceived: 0.00 - CloseTime: 7.698us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.312ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.72 MB - MemoryUsage: - Blocks: 7.34 MB - PeakMemoryUsage: 7.34 MB - OpenTime: 11.106us - ProjectionTime: 0ns - RowsProduced: 404.417K (404417) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s745ms PipelineXTask (index=25):(Active: 144.147ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 144.66ms - CloseTime: 20.836us - GetBlockTime: 2.504ms - OpenTime: 2.431us - PrepareTime: 51.252us - SinkTime: 141.109ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 863.196ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 55.728us - BuildRows: 402.544K (402544) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 90.582ms - BuildTableInsertTime: 19.430ms - BuildTableTime: 19.817ms - CloseTime: 0ns - ExecTime: 141.76ms - InputRows: 402.543K (402543) - MemoryUsage: - BuildBlocks: 40.69 MB - BuildKeyArena: 12.29 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.51 MB - OpenTime: 13.826us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 983.559us - RuntimeFilterComputeTime: 28.602ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 16.47us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.460ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.65 MB - MemoryUsage: - Blocks: 16.30 MB - PeakMemoryUsage: 16.30 MB - OpenTime: 14.626us - ProjectionTime: 0ns - RowsProduced: 402.543K (402543) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s955ms PipelineXTask (index=28):(Active: 99.188ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 99.91ms - CloseTime: 23.300us - GetBlockTime: 2.547ms - OpenTime: 3.688us - PrepareTime: 49.823us - SinkTime: 96.68ms - GetBlockCounter: 103 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s219ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 62.675us - BuildRows: 403.97K (403970) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 50.316ms - BuildTableInsertTime: 16.953ms - BuildTableTime: 17.305ms - CloseTime: 0ns - ExecTime: 96.26ms - InputRows: 403.969K (403969) - MemoryUsage: - BuildBlocks: 40.84 MB - BuildKeyArena: 12.34 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.71 MB - OpenTime: 13.580us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.348ms - RuntimeFilterComputeTime: 24.14ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 102 - BytesReceived: 0.00 - CloseTime: 19.575us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.479ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 66.20 MB - MemoryUsage: - Blocks: 6.61 MB - PeakMemoryUsage: 6.61 MB - OpenTime: 13.72us - ProjectionTime: 0ns - RowsProduced: 403.969K (403969) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s748ms PipelineXTask (index=31):(Active: 146.278ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 146.203ms - CloseTime: 8.311us - GetBlockTime: 2.617ms - OpenTime: 3.140us - PrepareTime: 55.855us - SinkTime: 143.173ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.957ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s360ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 57.745us - BuildRows: 403.496K (403496) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 90.550ms - BuildTableInsertTime: 27.440ms - BuildTableTime: 27.793ms - CloseTime: 0ns - ExecTime: 143.146ms - InputRows: 403.495K (403495) - MemoryUsage: - BuildBlocks: 40.79 MB - BuildKeyArena: 12.32 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.64 MB - OpenTime: 18.594us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 888.175us - RuntimeFilterComputeTime: 22.600ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 101 - BytesReceived: 0.00 - CloseTime: 5.874us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.558ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.87 MB - MemoryUsage: - Blocks: 6.61 MB - PeakMemoryUsage: 6.61 MB - OpenTime: 15.488us - ProjectionTime: 0ns - RowsProduced: 403.495K (403495) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s561ms PipelineXTask (index=34):(Active: 118.528ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 118.414ms - CloseTime: 24.162us - GetBlockTime: 2.497ms - OpenTime: 2.660us - PrepareTime: 76.252us - SinkTime: 115.443ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 32 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.287ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 910.3ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 63.724us - BuildRows: 402.724K (402724) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 63.38ms - BuildTableInsertTime: 22.637ms - BuildTableTime: 22.997ms - CloseTime: 0ns - ExecTime: 115.418ms - InputRows: 402.723K (402723) - MemoryUsage: - BuildBlocks: 40.71 MB - BuildKeyArena: 12.30 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.54 MB - OpenTime: 27.155us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 994.742us - RuntimeFilterComputeTime: 27.292ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 20.371us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.465ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 66.51 MB - MemoryUsage: - Blocks: 6.61 MB - PeakMemoryUsage: 6.61 MB - OpenTime: 29.609us - ProjectionTime: 0ns - RowsProduced: 402.723K (402723) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s911ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.616ms - CloseTime: 12.322us - GetBlockTime: 41.634us - OpenTime: 3.237us - PrepareTime: 73.676us - SinkTime: 1.534ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.687ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 472.531ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.448us - BuildRows: 5.551K (5551) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 614.711us - BuildTableInsertTime: 384.956us - BuildTableTime: 389.149us - CloseTime: 0ns - ExecTime: 1.569ms - InputRows: 5.55K (5550) - MemoryUsage: - BuildBlocks: 307.16 KB - BuildKeyArena: 184.00 KB - HashTable: 59.11 KB - PeakMemoryUsage: 546.26 KB - OpenTime: 37.536us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 59.89us - RuntimeFilterComputeTime: 180.913us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 10.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 63.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 15.749us - ProjectionTime: 0ns - RowsProduced: 5.55K (5550) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s75ms PipelineXTask (index=5):(Active: 1.353ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.278ms - CloseTime: 15.469us - GetBlockTime: 49.260us - OpenTime: 3.264us - PrepareTime: 51.462us - SinkTime: 1.193ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.328ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 541.228ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.457us - BuildRows: 5.74K (5740) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 347.370us - BuildTableInsertTime: 367.914us - BuildTableTime: 371.958us - CloseTime: 0ns - ExecTime: 1.205ms - InputRows: 5.739K (5739) - MemoryUsage: - BuildBlocks: 317.68 KB - BuildKeyArena: 192.00 KB - HashTable: 60.03 KB - PeakMemoryUsage: 565.70 KB - OpenTime: 13.190us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 56.117us - RuntimeFilterComputeTime: 148.221us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 12.973us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.98us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 16.604us - ProjectionTime: 0ns - RowsProduced: 5.739K (5739) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s183ms PipelineXTask (index=8):(Active: 1.557ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.498ms - CloseTime: 12.529us - GetBlockTime: 51.105us - OpenTime: 3.97us - PrepareTime: 38.984us - SinkTime: 1.397ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.531ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.121ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.820us - BuildRows: 6.053K (6053) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 507.960us - BuildTableInsertTime: 382.109us - BuildTableTime: 386.840us - CloseTime: 0ns - ExecTime: 1.406ms - InputRows: 6.052K (6052) - MemoryUsage: - BuildBlocks: 334.91 KB - BuildKeyArena: 200.00 KB - HashTable: 61.56 KB - PeakMemoryUsage: 592.46 KB - OpenTime: 11.329us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 56.168us - RuntimeFilterComputeTime: 182.486us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 10.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.470us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 468.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 11.662us - ProjectionTime: 0ns - RowsProduced: 6.052K (6052) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s277ms PipelineXTask (index=11):(Active: 3.18ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.952ms - CloseTime: 13.320us - GetBlockTime: 36.250us - OpenTime: 2.155us - PrepareTime: 45.854us - SinkTime: 2.877ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.506ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 129.762ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.574us - BuildRows: 5.771K (5771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 609.276us - BuildTableInsertTime: 311.19us - BuildTableTime: 324.949us - CloseTime: 0ns - ExecTime: 2.891ms - InputRows: 5.77K (5770) - MemoryUsage: - BuildBlocks: 319.27 KB - BuildKeyArena: 192.00 KB - HashTable: 60.18 KB - PeakMemoryUsage: 567.44 KB - OpenTime: 14.556us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 36.205us - RuntimeFilterComputeTime: 175.889us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 10.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.478us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 400.00 KB - MemoryUsage: - Blocks: 136.00 KB - PeakMemoryUsage: 136.00 KB - OpenTime: 10.889us - ProjectionTime: 0ns - RowsProduced: 5.77K (5770) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s276ms PipelineXTask (index=14):(Active: 1.779ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.711ms - CloseTime: 11.421us - GetBlockTime: 34.54us - OpenTime: 2.920us - PrepareTime: 47.770us - SinkTime: 1.640ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.755ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 542.454ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.702us - BuildRows: 5.685K (5685) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 325.887us - BuildTableInsertTime: 335.881us - BuildTableTime: 339.449us - CloseTime: 0ns - ExecTime: 1.649ms - InputRows: 5.684K (5684) - MemoryUsage: - BuildBlocks: 314.71 KB - BuildKeyArena: 188.00 KB - HashTable: 59.76 KB - PeakMemoryUsage: 558.46 KB - OpenTime: 11.43us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 542.630us - RuntimeFilterComputeTime: 167.425us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 9.521us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 14.718us - ProjectionTime: 0ns - RowsProduced: 5.684K (5684) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s183ms PipelineXTask (index=17):(Active: 1.691ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.615ms - CloseTime: 13.574us - GetBlockTime: 39.932us - OpenTime: 2.323us - PrepareTime: 55.342us - SinkTime: 1.549ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.670ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 604.585ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.402us - BuildRows: 6.523K (6523) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 673.970us - BuildTableInsertTime: 377.885us - BuildTableTime: 387.636us - CloseTime: 0ns - ExecTime: 1.569ms - InputRows: 6.522K (6522) - MemoryUsage: - BuildBlocks: 361.06 KB - BuildKeyArena: 216.00 KB - HashTable: 63.85 KB - PeakMemoryUsage: 636.91 KB - OpenTime: 22.76us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 56.61us - RuntimeFilterComputeTime: 187.761us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.74us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 60.792us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 504.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 504.00 KB - OpenTime: 12.511us - ProjectionTime: 0ns - RowsProduced: 6.522K (6522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 921.757ms PipelineXTask (index=20):(Active: 1.622ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.553ms - CloseTime: 14.582us - GetBlockTime: 48.684us - OpenTime: 2.593us - PrepareTime: 46.104us - SinkTime: 1.467ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.597ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 597.92ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.459us - BuildRows: 5.852K (5852) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 644.119us - BuildTableInsertTime: 305.472us - BuildTableTime: 310.365us - CloseTime: 0ns - ExecTime: 1.482ms - InputRows: 5.851K (5851) - MemoryUsage: - BuildBlocks: 323.67 KB - BuildKeyArena: 196.00 KB - HashTable: 60.58 KB - PeakMemoryUsage: 576.25 KB - OpenTime: 16.582us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 59.917us - RuntimeFilterComputeTime: 175.495us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.811us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.169us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 400.00 KB - MemoryUsage: - Blocks: 268.00 KB - PeakMemoryUsage: 268.00 KB - OpenTime: 16.842us - ProjectionTime: 0ns - RowsProduced: 5.851K (5851) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s18ms PipelineXTask (index=23):(Active: 1.450ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.387ms - CloseTime: 7.261us - GetBlockTime: 43.428us - OpenTime: 3.18us - PrepareTime: 46.950us - SinkTime: 1.308ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.431ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 610.485ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.38us - BuildRows: 5.744K (5744) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 383.450us - BuildTableInsertTime: 450.443us - BuildTableTime: 453.718us - CloseTime: 0ns - ExecTime: 1.320ms - InputRows: 5.743K (5743) - MemoryUsage: - BuildBlocks: 317.86 KB - BuildKeyArena: 192.00 KB - HashTable: 60.05 KB - PeakMemoryUsage: 565.91 KB - OpenTime: 13.280us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 30.829us - RuntimeFilterComputeTime: 158.438us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.32us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 432.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 10.792us - ProjectionTime: 0ns - RowsProduced: 5.743K (5743) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 939.460ms PipelineXTask (index=26):(Active: 1.417ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.335ms - CloseTime: 14.191us - GetBlockTime: 33.312us - OpenTime: 1.429us - PrepareTime: 62.873us - SinkTime: 1.274ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.396ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 264.39ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.123us - BuildRows: 5.634K (5634) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 541.121us - BuildTableInsertTime: 287.422us - BuildTableTime: 291.482us - CloseTime: 0ns - ExecTime: 1.281ms - InputRows: 5.633K (5633) - MemoryUsage: - BuildBlocks: 311.81 KB - BuildKeyArena: 188.00 KB - HashTable: 59.51 KB - PeakMemoryUsage: 555.32 KB - OpenTime: 8.673us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.291us - RuntimeFilterComputeTime: 170.519us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.160us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.468us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 400.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 30.652us - ProjectionTime: 0ns - RowsProduced: 5.633K (5633) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s123ms PipelineXTask (index=29):(Active: 1.677ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.615ms - CloseTime: 7.623us - GetBlockTime: 49.486us - OpenTime: 2.411us - PrepareTime: 47.370us - SinkTime: 1.526ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.659ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.501ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.288us - BuildRows: 6.154K (6154) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 805.643us - BuildTableInsertTime: 357.274us - BuildTableTime: 360.968us - CloseTime: 0ns - ExecTime: 1.537ms - InputRows: 6.153K (6153) - MemoryUsage: - BuildBlocks: 340.77 KB - BuildKeyArena: 204.00 KB - HashTable: 62.05 KB - PeakMemoryUsage: 602.81 KB - OpenTime: 12.993us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 25.680us - RuntimeFilterComputeTime: 175.584us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.534us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 63.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 436.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 14.131us - ProjectionTime: 0ns - RowsProduced: 6.153K (6153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s276ms PipelineXTask (index=32):(Active: 1.118ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.39ms - CloseTime: 15.710us - GetBlockTime: 43.23us - OpenTime: 1.740us - PrepareTime: 56.687us - SinkTime: 952.412us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.92ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 463.318ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.817us - BuildRows: 5.736K (5736) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 437.835us - BuildTableInsertTime: 201.633us - BuildTableTime: 206.332us - CloseTime: 0ns - ExecTime: 976.263us - InputRows: 5.735K (5735) - MemoryUsage: - BuildBlocks: 317.51 KB - BuildKeyArena: 192.00 KB - HashTable: 60.01 KB - PeakMemoryUsage: 565.51 KB - OpenTime: 25.957us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 56.75us - RuntimeFilterComputeTime: 159.855us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 13.607us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.475us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 13.599us - ProjectionTime: 0ns - RowsProduced: 5.735K (5735) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s10ms PipelineXTask (index=35):(Active: 1.443ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.388ms - CloseTime: 7.926us - GetBlockTime: 38.755us - OpenTime: 2.938us - PrepareTime: 40.128us - SinkTime: 1.325ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.428ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 606.36ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.926us - BuildRows: 5.685K (5685) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 389.38us - BuildTableInsertTime: 488.902us - BuildTableTime: 492.165us - CloseTime: 0ns - ExecTime: 1.339ms - InputRows: 5.684K (5684) - MemoryUsage: - BuildBlocks: 314.58 KB - BuildKeyArena: 188.00 KB - HashTable: 59.76 KB - PeakMemoryUsage: 558.34 KB - OpenTime: 15.63us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 29.103us - RuntimeFilterComputeTime: 150.196us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.968us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.278us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 11.746us - ProjectionTime: 0ns - RowsProduced: 5.684K (5684) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 921.941ms Fragment 26: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 569.866ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 569.344ms - CloseTime: 101.926us - GetBlockTime: 3.962ms - OpenTime: 168.761us - PrepareTime: 237.389us - SinkTime: 563.357ms - GetBlockCounter: 649 - NumBlockedBySinkTimes: 16 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 24 - NumScheduleTimes: 27 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 142.526ms - WaitBfTime: 699.505ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 443.115ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 472 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.106us - CompressTime: 0ns - ExecTime: 563.242ms - InputRows: 2.613721M (2613721) - LocalBytesSent: 32.22 MB - LocalSendTime: 2.190ms - LocalSentRows: 2.613721M (2613721) - MemoryUsage: - PeakMemoryUsage: 40.44 MB - MergeBlockTime: 0ns - OpenTime: 82.776us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.613721M (2613721) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 363.652ms - SplitBlockHashComputeTime: 160.209ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 10.260us - BlocksProduced: 649 - CloseTime: 91.2us - ExecTime: 168.284ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 262.689us - ProcessConjunctTime: 35.664us - ProjectionTime: 0ns - RowsProduced: 2.613721M (2613721) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 328.264ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 164.193ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [231.063ms, 333.720ms, 78.633ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [35.848ms, 155.348ms, 137.066ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 523.179ms - MemoryUsage: - FreeBlocks: 28.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.14ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 31.260us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 245.743ms - ScannerCtxSchedTime: 328.248ms - ScannerFilterTime: 95.640ms - ScannerGetBlockTime: 547.254ms - ScannerInitTime: 93.903us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 5.531us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 20.868us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 165.133us - BlockLoadTime: 524.525ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 632 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 985.600us - FirstReadTime: 521.187ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.920us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 197.493us - OutputIndexResultColumnTimer: 113.873us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 632 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 79.828ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 79.344ms - CloseTime: 74.596us - GetBlockTime: 3.384ms - OpenTime: 198.811us - PrepareTime: 200.554us - SinkTime: 74.752ms - GetBlockCounter: 529 - NumBlockedBySinkTimes: 11 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.717ms - WaitBfTime: 921.913ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 903.133ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 366 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.782us - CompressTime: 0ns - ExecTime: 74.719ms - InputRows: 2.12247M (2122470) - LocalBytesSent: 22.67 MB - LocalSendTime: 1.147ms - LocalSentRows: 2.12247M (2122470) - MemoryUsage: - PeakMemoryUsage: 28.26 MB - MergeBlockTime: 0ns - OpenTime: 69.35us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.12247M (2122470) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 26.15ms - SplitBlockHashComputeTime: 35.946ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.471us - BlocksProduced: 529 - CloseTime: 56.830us - ExecTime: 303.434ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 270.219us - ProcessConjunctTime: 25.356us - ProjectionTime: 0ns - RowsProduced: 2.12247M (2122470) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 270.621ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 299.831ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [131.322ms, 274.693ms, 52.474ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [92.619ms, 96.382ms, 81.619ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 313.533ms - MemoryUsage: - FreeBlocks: 29.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.153ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.337us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 274.825ms - ScannerCtxSchedTime: 270.607ms - ScannerFilterTime: 142.238ms - ScannerGetBlockTime: 315.724ms - ScannerInitTime: 132.880us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 3.924us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.16us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 13.142ms - BlockLoadTime: 328.15ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 618 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 1.196ms - FirstReadTime: 311.710ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.986us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 233.927us - OutputIndexResultColumnTimer: 109.436us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 618 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 128.736ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 128.207ms - CloseTime: 66.823us - GetBlockTime: 3.135ms - OpenTime: 273.768us - PrepareTime: 167.951us - SinkTime: 123.660ms - GetBlockCounter: 644 - NumBlockedBySinkTimes: 9 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.766ms - WaitBfTime: 1s364ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s99ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 366 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.692us - CompressTime: 0ns - ExecTime: 123.606ms - InputRows: 2.60712M (2607120) - LocalBytesSent: 17.58 MB - LocalSendTime: 1.142ms - LocalSentRows: 2.60712M (2607120) - MemoryUsage: - PeakMemoryUsage: 19.73 MB - MergeBlockTime: 0ns - OpenTime: 60.104us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.60712M (2607120) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 47.108ms - SplitBlockHashComputeTime: 48.841ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.621us - BlocksProduced: 644 - CloseTime: 50.970us - ExecTime: 152.282ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 316.44us - ProcessConjunctTime: 38.608us - ProjectionTime: 0ns - RowsProduced: 2.60712M (2607120) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.252ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.891ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [136.382ms, 55.709ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [2.886ms, 3.366ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 154.897ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 672.575us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.864us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.116ms - ScannerCtxSchedTime: 6.247ms - ScannerFilterTime: 24.156ms - ScannerGetBlockTime: 156.623ms - ScannerInitTime: 165.25us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.676us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.194us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 79.774us - BlockLoadTime: 155.648ms - BlocksLoad: 865 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 760.922us - FirstReadTime: 153.823ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.346us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 103.64us - OutputIndexResultColumnTimer: 52.18us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 161.884ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 161.524ms - CloseTime: 75.540us - GetBlockTime: 2.871ms - OpenTime: 102.251us - PrepareTime: 174.382us - SinkTime: 157.476ms - GetBlockCounter: 643 - NumBlockedBySinkTimes: 12 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 72.479ms - WaitBfTime: 922.97ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 869.490ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 365 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.420us - CompressTime: 0ns - ExecTime: 157.438ms - InputRows: 2.605441M (2605441) - LocalBytesSent: 17.56 MB - LocalSendTime: 1.0ms - LocalSentRows: 2.605441M (2605441) - MemoryUsage: - PeakMemoryUsage: 19.73 MB - MergeBlockTime: 0ns - OpenTime: 64.416us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.605441M (2605441) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.199ms - SplitBlockHashComputeTime: 65.541ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.663us - BlocksProduced: 643 - CloseTime: 49.803us - ExecTime: 184.770ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 161.670us - ProcessConjunctTime: 10.592us - ProjectionTime: 0ns - RowsProduced: 2.605441M (2605441) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 169.181ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 181.789ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [183.382ms, 129.226ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [82.504ms, 86.677ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 218.746ms - MemoryUsage: - FreeBlocks: 20.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 680.782us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.15us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.77ms - ScannerCtxSchedTime: 169.173ms - ScannerFilterTime: 91.634ms - ScannerGetBlockTime: 220.626ms - ScannerInitTime: 64.224us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.596us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.286us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 78.183us - BlockLoadTime: 219.388ms - BlocksLoad: 863 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 724.965us - FirstReadTime: 217.229ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.967us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 121.493us - OutputIndexResultColumnTimer: 64.764us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 107 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 38.166ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 37.888ms - CloseTime: 42.920us - GetBlockTime: 4.66ms - OpenTime: 54.137us - PrepareTime: 173.897us - SinkTime: 33.242ms - GetBlockCounter: 130 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 35.179ms - WaitBfTime: 922.170ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 712.306ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 110 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.322us - CompressTime: 0ns - ExecTime: 33.260ms - InputRows: 505.584K (505584) - LocalBytesSent: 7.76 MB - LocalSendTime: 655.696us - LocalSentRows: 505.584K (505584) - MemoryUsage: - PeakMemoryUsage: 9.82 MB - MergeBlockTime: 0ns - OpenTime: 64.161us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 505.584K (505584) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.306ms - SplitBlockHashComputeTime: 13.556ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.300us - BlocksProduced: 130 - CloseTime: 28.137us - ExecTime: 431.740ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 111.167us - ProcessConjunctTime: 7.155us - ProjectionTime: 0ns - RowsProduced: 505.584K (505584) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 110.139ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 427.589ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [313.893ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [110.139ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 199.219ms - MemoryUsage: - FreeBlocks: 13.21 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 562.514us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.611us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 157.968ms - ScannerCtxSchedTime: 110.127ms - ScannerFilterTime: 113.287ms - ScannerGetBlockTime: 200.340ms - ScannerInitTime: 31.312us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 752ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.135us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 28.106us - BlockLoadTime: 199.531ms - BlocksLoad: 558 - CachedPagesNum: 593 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 451.503us - FirstReadTime: 198.102ms - IOTimer: 0ns - InvertedIndexFilterTime: 974ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 107.383us - OutputIndexResultColumnTimer: 50.865us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 593 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 101.816ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 101.425ms - CloseTime: 39.187us - GetBlockTime: 1.399ms - OpenTime: 140.872us - PrepareTime: 185.349us - SinkTime: 99.116ms - GetBlockCounter: 227 - NumBlockedBySinkTimes: 17 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 53.974ms - WaitBfTime: 689.55ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s208ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 191 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.260us - CompressTime: 0ns - ExecTime: 99.118ms - InputRows: 903.566K (903566) - LocalBytesSent: 13.94 MB - LocalSendTime: 914.355us - LocalSentRows: 903.566K (903566) - MemoryUsage: - PeakMemoryUsage: 17.94 MB - MergeBlockTime: 0ns - OpenTime: 70.539us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 903.566K (903566) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 72.382ms - SplitBlockHashComputeTime: 18.283ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.705us - BlocksProduced: 227 - CloseTime: 24.850us - ExecTime: 391.339ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 201.268us - ProcessConjunctTime: 23.523us - ProjectionTime: 0ns - RowsProduced: 903.566K (903566) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 132.9ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 389.777ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [254.847ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [132.009ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 188.566ms - MemoryUsage: - FreeBlocks: 13.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.252ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.285us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.295ms - ScannerCtxSchedTime: 131.999ms - ScannerFilterTime: 65.98ms - ScannerGetBlockTime: 189.529ms - ScannerInitTime: 73.51us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 711ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.654us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 25.18us - BlockLoadTime: 189.575ms - BlocksLoad: 558 - CachedPagesNum: 593 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 804.46us - FirstReadTime: 188.200ms - IOTimer: 0ns - InvertedIndexFilterTime: 784ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 92.346us - OutputIndexResultColumnTimer: 58.42us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 593 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 26.478ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 26.196ms - CloseTime: 37.935us - GetBlockTime: 644.622us - OpenTime: 53.236us - PrepareTime: 182.688us - SinkTime: 25.201ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 15 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.367ms - WaitBfTime: 922.218ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 976.63ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 75 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.548us - CompressTime: 0ns - ExecTime: 25.252ms - InputRows: 307.192K (307192) - LocalBytesSent: 7.73 MB - LocalSendTime: 420.968us - LocalSentRows: 307.192K (307192) - MemoryUsage: - PeakMemoryUsage: 10.21 MB - MergeBlockTime: 0ns - OpenTime: 64.642us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 307.192K (307192) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 12.849ms - SplitBlockHashComputeTime: 9.432ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.91us - BlocksProduced: 78 - CloseTime: 24.694us - ExecTime: 186.40ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 116.325us - ProcessConjunctTime: 8.120us - ProjectionTime: 0ns - RowsProduced: 307.192K (307192) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 90.255ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 185.278ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [92.830ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [90.255ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 65.867ms - MemoryUsage: - FreeBlocks: 10.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 968.49us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.545us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 71.417ms - ScannerCtxSchedTime: 90.249ms - ScannerFilterTime: 26.491ms - ScannerGetBlockTime: 66.255ms - ScannerInitTime: 24.535us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 370ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.670us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 22.680us - BlockLoadTime: 66.713ms - BlocksLoad: 217 - CachedPagesNum: 255 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 669.111us - FirstReadTime: 66.146ms - IOTimer: 0ns - InvertedIndexFilterTime: 412ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 37.594us - OutputIndexResultColumnTimer: 19.523us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 255 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 31.818ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 31.505ms - CloseTime: 35.980us - GetBlockTime: 619.0us - OpenTime: 88.597us - PrepareTime: 178.961us - SinkTime: 30.548ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 12 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.754ms - WaitBfTime: 1s364ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s337ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 75 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.322us - CompressTime: 0ns - ExecTime: 30.614ms - InputRows: 307.402K (307402) - LocalBytesSent: 7.72 MB - LocalSendTime: 336.986us - LocalSentRows: 307.402K (307402) - MemoryUsage: - PeakMemoryUsage: 10.32 MB - MergeBlockTime: 0ns - OpenTime: 74.431us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 307.402K (307402) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 9.53ms - SplitBlockHashComputeTime: 19.68ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.2us - BlocksProduced: 78 - CloseTime: 23.892us - ExecTime: 137.894ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 149.13us - ProcessConjunctTime: 10.695us - ProjectionTime: 0ns - RowsProduced: 307.402K (307402) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.699ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.121ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [117.636ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [11.699ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 71.871ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 564.986us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.759us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 95.733ms - ScannerCtxSchedTime: 11.694ms - ScannerFilterTime: 45.135ms - ScannerGetBlockTime: 72.376ms - ScannerInitTime: 40.198us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 342ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.919us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 19.220us - BlockLoadTime: 72.202ms - BlocksLoad: 217 - CachedPagesNum: 254 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 294.41us - FirstReadTime: 71.448ms - IOTimer: 0ns - InvertedIndexFilterTime: 621ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 52.317us - OutputIndexResultColumnTimer: 26.842us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 254 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 137.809ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 137.381ms - CloseTime: 48.348us - GetBlockTime: 2.404ms - OpenTime: 196.825us - PrepareTime: 175.567us - SinkTime: 133.858ms - GetBlockCounter: 573 - NumBlockedBySinkTimes: 8 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 70.599ms - WaitBfTime: 904.813ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 931.34ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 341 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.191us - CompressTime: 0ns - ExecTime: 133.818ms - InputRows: 2.321363M (2321363) - LocalBytesSent: 17.35 MB - LocalSendTime: 979.664us - LocalSentRows: 2.321363M (2321363) - MemoryUsage: - PeakMemoryUsage: 20.24 MB - MergeBlockTime: 0ns - OpenTime: 64.339us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.321363M (2321363) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.458ms - SplitBlockHashComputeTime: 90.443ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.757us - BlocksProduced: 573 - CloseTime: 36.637us - ExecTime: 122.64ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 258.215us - ProcessConjunctTime: 39.565us - ProjectionTime: 0ns - RowsProduced: 2.321363M (2321363) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 164.688ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.465ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [119.279ms, 81.662ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [82.919ms, 81.768ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 160.879ms - MemoryUsage: - FreeBlocks: 20.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.80ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.749us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.855ms - ScannerCtxSchedTime: 164.679ms - ScannerFilterTime: 38.440ms - ScannerGetBlockTime: 162.168ms - ScannerInitTime: 109.8us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.245us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.858us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 61.913us - BlockLoadTime: 161.598ms - BlocksLoad: 838 - CachedPagesNum: 162 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 811.970us - FirstReadTime: 159.510ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.351us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 126.760us - OutputIndexResultColumnTimer: 62.653us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 162 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 110.885ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 110.564ms - CloseTime: 66.477us - GetBlockTime: 3.633ms - OpenTime: 73.455us - PrepareTime: 172.963us - SinkTime: 105.585ms - GetBlockCounter: 575 - NumBlockedBySinkTimes: 8 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.957ms - WaitBfTime: 905.28ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 651.878ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 342 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.748us - CompressTime: 0ns - ExecTime: 105.516ms - InputRows: 2.329527M (2329527) - LocalBytesSent: 17.44 MB - LocalSendTime: 1.397ms - LocalSentRows: 2.329527M (2329527) - MemoryUsage: - PeakMemoryUsage: 20.25 MB - MergeBlockTime: 0ns - OpenTime: 58.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.329527M (2329527) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.308ms - SplitBlockHashComputeTime: 64.375ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 19.191us - BlocksProduced: 575 - CloseTime: 49.964us - ExecTime: 131.67ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 142.538us - ProcessConjunctTime: 10.332us - ProjectionTime: 0ns - RowsProduced: 2.329527M (2329527) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 172.437ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 127.359ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [83.516ms, 38.172ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [85.279ms, 87.157ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 86.840ms - MemoryUsage: - FreeBlocks: 20.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 950.971us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.941us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 128.448ms - ScannerCtxSchedTime: 172.431ms - ScannerFilterTime: 33.71ms - ScannerGetBlockTime: 88.231ms - ScannerInitTime: 28.796us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.155us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.713us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 53.522us - BlockLoadTime: 87.460ms - BlocksLoad: 838 - CachedPagesNum: 163 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 820.158us - FirstReadTime: 85.386ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.528us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 128.730us - OutputIndexResultColumnTimer: 66.799us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 163 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 175.197ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 174.814ms - CloseTime: 67.791us - GetBlockTime: 3.900ms - OpenTime: 105.957us - PrepareTime: 199.423us - SinkTime: 169.235ms - GetBlockCounter: 764 - NumBlockedBySinkTimes: 12 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 108.368ms - WaitBfTime: 699.616ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 523.92ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 470 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.888us - CompressTime: 0ns - ExecTime: 169.124ms - InputRows: 3.095993M (3095993) - LocalBytesSent: 24.12 MB - LocalSendTime: 1.766ms - LocalSentRows: 3.095993M (3095993) - MemoryUsage: - PeakMemoryUsage: 28.28 MB - MergeBlockTime: 0ns - OpenTime: 66.462us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.095993M (3095993) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.939ms - SplitBlockHashComputeTime: 58.354ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s786ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.249us - BlocksProduced: 764 - CloseTime: 54.33us - ExecTime: 152.629ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 176.938us - ProcessConjunctTime: 13.865us - ProjectionTime: 0ns - RowsProduced: 3.095993M (3095993) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.775ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.646ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [136.986ms, 235.644ms, 48.245ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [35.631ms, 39.216ms, 34.926ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 345.449ms - MemoryUsage: - FreeBlocks: 20.19 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.406ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.808us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 210.761ms - ScannerCtxSchedTime: 109.768ms - ScannerFilterTime: 71.192ms - ScannerGetBlockTime: 349.85ms - ScannerInitTime: 67.286us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.952us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.522us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 126.21us - BlockLoadTime: 347.595ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 236 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 1.911ms - FirstReadTime: 344.254ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.677us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 199.683us - OutputIndexResultColumnTimer: 105.992us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 236 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 358.889ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 358.484ms - CloseTime: 90.274us - GetBlockTime: 37.170ms - OpenTime: 118.297us - PrepareTime: 187.280us - SinkTime: 319.836ms - GetBlockCounter: 773 - NumBlockedBySinkTimes: 11 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 16 - NumScheduleTimes: 18 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 106.989ms - WaitBfTime: 922.264ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s41ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 474 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.360us - CompressTime: 0ns - ExecTime: 319.746ms - InputRows: 3.128M (3128000) - LocalBytesSent: 24.31 MB - LocalSendTime: 1.546ms - LocalSentRows: 3.128M (3128000) - MemoryUsage: - PeakMemoryUsage: 28.57 MB - MergeBlockTime: 0ns - OpenTime: 73.113us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.128M (3128000) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 106.520ms - SplitBlockHashComputeTime: 170.571ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s846ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 96, type = minmax), RuntimeFilter: (id = 97, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.504us - BlocksProduced: 773 - CloseTime: 73.524us - ExecTime: 196.915ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 180.966us - ProcessConjunctTime: 7.937us - ProjectionTime: 0ns - RowsProduced: 3.128M (3128000) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 270.694ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 192.992ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 11.588531M (11588531) - expr_input_rows: 18.087238M (18087238) RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 16.700608M (16700608) - expr_input_rows: 16.749234M (16749234) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [109.425ms, 205.039ms, 88.675ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [92.151ms, 90.086ms, 88.455ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 274.125ms - MemoryUsage: - FreeBlocks: 25.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.456ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.344us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 186.276ms - ScannerCtxSchedTime: 270.685ms - ScannerFilterTime: 105.546ms - ScannerGetBlockTime: 297.136ms - ScannerInitTime: 86.989us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.168us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.105us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 136.204us - BlockLoadTime: 295.992ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 242 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 21.504ms - FirstReadTime: 293.310ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.335us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 149.828us - OutputIndexResultColumnTimer: 88.786us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 242 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 27: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 19.488ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.558ms - CloseTime: 11.454ms - GetBlockTime: 3.315ms - OpenTime: 200.552us - PrepareTime: 263.740us - SinkTime: 3.975ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.20ms - WaitBfTime: 693.509ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.166ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.155us - CompressTime: 0ns - ExecTime: 4.56ms - InputRows: 24.68K (24680) - LocalBytesSent: 1.33 MB - LocalSendTime: 96.486us - LocalSentRows: 24.68K (24680) - MemoryUsage: - PeakMemoryUsage: 1.70 MB - MergeBlockTime: 0ns - OpenTime: 73.638us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 24.68K (24680) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.855ms - SplitBlockHashComputeTime: 595.547us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=320): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.400ms - ExecTime: 14.595ms - InitProbeSideTime: 609.741us - JoinFilterTimer: 1.265us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 14.547us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.431us - ProbeFindNextTime: 0ns - ProbeRows: 24.68K (24680) - ProbeTime: 2.758ms - ProbeWhenBuildSideOutputTime: 532.125us - ProbeWhenProbeSideOutputTime: 829.852us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 616.218us - ProjectionTime: 397.965us - RowsProduced: 24.68K (24680) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=319. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 98, type = minmax), RuntimeFilter: (id = 99, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}, {JOIN_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15206] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.799us - BlocksProduced: 7 - CloseTime: 37.655us - ExecTime: 137.296ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 287.31us - ProcessConjunctTime: 97.975us - ProjectionTime: 599.93us - RowsProduced: 24.68K (24680) - RowsRead: 24.68K (24680) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.811ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 136.239ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 98, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 99, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE, JOIN_TIME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false ComparisonPredicateBase(DATETIMEV2, GE), column_id=6, opposite=false - PerScannerRunningTime: [68.956ms, ] - PerScannerRowsRead: [24.68K, ] - PerScannerWaitTime: [11.811ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 68.557ms - MemoryUsage: - FreeBlocks: 2.19 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 52.261ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 387ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.362ms - ScannerCtxSchedTime: 11.807ms - ScannerFilterTime: 65.115us - ScannerGetBlockTime: 68.830ms - ScannerInitTime: 55.934us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.276us - BlockConditionsFilteredBloomFilterTime: 3.780us - BlockConditionsFilteredDictTime: 1.96us - BlockConditionsFilteredTime: 146.44us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 126.402us - BlockInitSeekCount: 9 - BlockInitSeekTime: 189.609us - BlockInitTime: 416.932us - BlockLoadTime: 120.418ms - BlocksLoad: 94 - CachedPagesNum: 259 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 14.945ms - FirstReadSeekCount: 279 - FirstReadSeekTime: 49.853ms - FirstReadTime: 77.582ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.688us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.196ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 24.506ms - OutputIndexResultColumnTimer: 15.431us - RawRowsRead: 377.618K (377618) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 591 - RowsShortCircuitPredInput: 312.654K (312654) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 64.964K (64964) - RowsVectorPredInput: 377.618K (377618) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 324.141us - TotalPagesNum: 259 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 678.180us PipelineXTask (index=2):(Active: 8.520ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.917ms - CloseTime: 123.909us - GetBlockTime: 3.380ms - OpenTime: 203.496us - PrepareTime: 265.623us - SinkTime: 4.254ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.373ms - WaitBfTime: 697.725ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 259.840ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.798us - CompressTime: 0ns - ExecTime: 4.349ms - InputRows: 22.426K (22426) - LocalBytesSent: 1.21 MB - LocalSendTime: 121.757us - LocalSentRows: 22.426K (22426) - MemoryUsage: - PeakMemoryUsage: 1.58 MB - MergeBlockTime: 0ns - OpenTime: 84.882us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 22.426K (22426) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.830ms - SplitBlockHashComputeTime: 805.658us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=320): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 28.771us - ExecTime: 3.260ms - InitProbeSideTime: 884.106us - JoinFilterTimer: 1.311us - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 22.283us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.543us - ProbeFindNextTime: 0ns - ProbeRows: 22.426K (22426) - ProbeTime: 2.919ms - ProbeWhenBuildSideOutputTime: 560.515us - ProbeWhenProbeSideOutputTime: 395.479us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 869.478us - ProjectionTime: 251.460us - RowsProduced: 22.426K (22426) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=319. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 98, type = minmax), RuntimeFilter: (id = 99, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}, {JOIN_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.812us - BlocksProduced: 6 - CloseTime: 76.48us - ExecTime: 184.167ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 267.813us - ProcessConjunctTime: 77.425us - ProjectionTime: 480.522us - RowsProduced: 22.426K (22426) - RowsRead: 22.426K (22426) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 21.707ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.173ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 98, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 99, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE, JOIN_TIME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false ComparisonPredicateBase(DATETIMEV2, GE), column_id=6, opposite=false - PerScannerRunningTime: [71.752ms, ] - PerScannerRowsRead: [22.43K, ] - PerScannerWaitTime: [21.707ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 71.418ms - MemoryUsage: - FreeBlocks: 2.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 86.745ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 645ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.94ms - ScannerCtxSchedTime: 21.705ms - ScannerFilterTime: 61.3us - ScannerGetBlockTime: 71.648ms - ScannerInitTime: 90.777us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 772ns - BlockConditionsFilteredBloomFilterTime: 2.485us - BlockConditionsFilteredDictTime: 442ns - BlockConditionsFilteredTime: 113.834us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 100.918us - BlockInitSeekCount: 9 - BlockInitSeekTime: 53.538us - BlockInitTime: 193.189us - BlockLoadTime: 157.948ms - BlocksLoad: 92 - CachedPagesNum: 250 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.797ms - FirstReadSeekCount: 273 - FirstReadSeekTime: 85.421ms - FirstReadTime: 112.357ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.905us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.32ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 29.989ms - OutputIndexResultColumnTimer: 20.925us - RawRowsRead: 367.424K (367424) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 570 - RowsShortCircuitPredInput: 304.064K (304064) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 63.36K (63360) - RowsVectorPredInput: 367.424K (367424) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 318.798us - TotalPagesNum: 250 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 680.337us PipelineXTask (index=4):(Active: 25.649ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.156ms - CloseTime: 82.289us - GetBlockTime: 5.561ms - OpenTime: 171.147us - PrepareTime: 230.723us - SinkTime: 19.324ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.557ms - WaitBfTime: 905.62ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 518.823ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.538us - CompressTime: 0ns - ExecTime: 19.407ms - InputRows: 23.01K (23010) - LocalBytesSent: 1.24 MB - LocalSendTime: 85.520us - LocalSentRows: 23.01K (23010) - MemoryUsage: - PeakMemoryUsage: 1.62 MB - MergeBlockTime: 0ns - OpenTime: 73.782us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 23.01K (23010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.788ms - SplitBlockHashComputeTime: 849.491us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=320): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 13.243us - ExecTime: 5.433ms - InitProbeSideTime: 1.405ms - JoinFilterTimer: 1.493us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 18.891us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.792us - ProbeFindNextTime: 0ns - ProbeRows: 23.01K (23010) - ProbeTime: 4.961ms - ProbeWhenBuildSideOutputTime: 976.69us - ProbeWhenProbeSideOutputTime: 1.239ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.124ms - ProjectionTime: 408.575us - RowsProduced: 23.01K (23010) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=319. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 98, type = minmax), RuntimeFilter: (id = 99, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {UNIONID is [not null]}, {JOIN_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.789us - BlocksProduced: 7 - CloseTime: 48.757us - ExecTime: 170.479ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 217.822us - ProcessConjunctTime: 82.652us - ProjectionTime: 431.37us - RowsProduced: 23.01K (23010) - RowsRead: 23.01K (23010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.880ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 169.640ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 98, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 99, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE, JOIN_TIME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false ComparisonPredicateBase(DATETIMEV2, GE), column_id=6, opposite=false - PerScannerRunningTime: [80.841ms, ] - PerScannerRowsRead: [23.01K, ] - PerScannerWaitTime: [83.880ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 77.923ms - MemoryUsage: - FreeBlocks: 2.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.237ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 944ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.667ms - ScannerCtxSchedTime: 83.877ms - ScannerFilterTime: 69.505us - ScannerGetBlockTime: 80.726ms - ScannerInitTime: 57.426us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 5.466us - BlockConditionsFilteredBloomFilterTime: 5.875us - BlockConditionsFilteredDictTime: 1.546us - BlockConditionsFilteredTime: 227.413us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 139.926us - BlockInitSeekCount: 25 - BlockInitSeekTime: 190.63us - BlockInitTime: 485.542us - BlockLoadTime: 82.352ms - BlocksLoad: 95 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.636ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 1.229ms - FirstReadTime: 44.834ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.792us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 930.31us - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 21.897ms - OutputIndexResultColumnTimer: 13.770us - RawRowsRead: 366.32K (366320) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 432 - RowsShortCircuitPredInput: 297.573K (297573) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 68.747K (68747) - RowsVectorPredInput: 366.32K (366320) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 265.437us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 641.685us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.503ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.414ms - CloseTime: 12.70us - GetBlockTime: 28.980us - OpenTime: 2.988us - PrepareTime: 69.60us - SinkTime: 1.355ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.482ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.640ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.706us - BuildRows: 7.61K (7610) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 508.599us - BuildTableInsertTime: 799.829us - BuildTableTime: 819.194us - CloseTime: 0ns - ExecTime: 1.363ms - InputRows: 7.609K (7609) - MemoryUsage: - BuildBlocks: 373.87 KB - BuildKeyArena: 272.00 KB - HashTable: 93.73 KB - PeakMemoryUsage: 735.60 KB - OpenTime: 8.686us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 11.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.566us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 588.00 KB - MemoryUsage: - Blocks: 588.00 KB - PeakMemoryUsage: 588.00 KB - OpenTime: 31.162us - ProjectionTime: 0ns - RowsProduced: 7.609K (7609) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17.291ms PipelineXTask (index=3):(Active: 1.523ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.461ms - CloseTime: 11.104us - GetBlockTime: 24.665us - OpenTime: 2.507us - PrepareTime: 43.294us - SinkTime: 1.412ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.503ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.860ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.600us - BuildRows: 7.659K (7659) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 518.977us - BuildTableInsertTime: 831.335us - BuildTableTime: 863.592us - CloseTime: 0ns - ExecTime: 1.418ms - InputRows: 7.658K (7658) - MemoryUsage: - BuildBlocks: 376.18 KB - BuildKeyArena: 276.00 KB - HashTable: 93.92 KB - PeakMemoryUsage: 742.10 KB - OpenTime: 7.375us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 9.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.20us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 588.00 KB - MemoryUsage: - Blocks: 588.00 KB - PeakMemoryUsage: 588.00 KB - OpenTime: 14.896us - ProjectionTime: 0ns - RowsProduced: 7.658K (7658) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17.452ms PipelineXTask (index=5):(Active: 1.386ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.323ms - CloseTime: 6.652us - GetBlockTime: 28.169us - OpenTime: 3.47us - PrepareTime: 48.520us - SinkTime: 1.253ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.372ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.427ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.266us - BuildRows: 7.73K (7730) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 449.116us - BuildTableInsertTime: 760.649us - BuildTableTime: 785.319us - CloseTime: 0ns - ExecTime: 1.263ms - InputRows: 7.729K (7729) - MemoryUsage: - BuildBlocks: 379.77 KB - BuildKeyArena: 276.00 KB - HashTable: 94.20 KB - PeakMemoryUsage: 745.96 KB - OpenTime: 10.514us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 5.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.314us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 588.00 KB - MemoryUsage: - Blocks: 588.00 KB - PeakMemoryUsage: 588.00 KB - OpenTime: 21.212us - ProjectionTime: 0ns - RowsProduced: 7.729K (7729) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16.927ms Fragment 28: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.252ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.783ms - CloseTime: 33.780us - GetBlockTime: 79.612us - OpenTime: 281.348us - PrepareTime: 146.434us - SinkTime: 2.397ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.209ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.70ms DATA_STREAM_SINK_OPERATOR (id=318,dst_id=318): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.473us - CompressTime: 0ns - ExecTime: 2.442ms - InputRows: 22.996K (22996) - LocalBytesSent: 1.10 MB - LocalSendTime: 36.268us - LocalSentRows: 22.996K (22996) - MemoryUsage: - PeakMemoryUsage: 1.72 MB - MergeBlockTime: 0ns - OpenTime: 37.758us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 22.996K (22996) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.473ms - SplitBlockHashComputeTime: 755.447us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=317. table name = QYWX_GROUPCHAT_INFO): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 711ns - BlocksProduced: 6 - CloseTime: 24.93us - ExecTime: 4.792ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 355.324us - ProcessConjunctTime: 52.531us - ProjectionTime: 0ns - RowsProduced: 22.996K (22996) - RowsRead: 22.996K (22996) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.748us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 4.335ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [OWNER, CHAT_ID] - PerScannerRunningTime: [2.339ms, ] - PerScannerRowsRead: [23.00K, ] - PerScannerWaitTime: [67.748us, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.257ms - MemoryUsage: - FreeBlocks: 1.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.661ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 356ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.280ms - ScannerCtxSchedTime: 64.475us - ScannerFilterTime: 7.163us - ScannerGetBlockTime: 2.326ms - ScannerInitTime: 182.134us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 407ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.604us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 235.764us - BlockInitTime: 297.690us - BlockLoadTime: 3.750ms - BlocksLoad: 7 - CachedPagesNum: 7 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 12 - FirstReadSeekTime: 692.852us - FirstReadTime: 3.377ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.33us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.789us - OutputIndexResultColumnTimer: 2.231us - RawRowsRead: 22.996K (22996) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 7 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 29: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 598.986ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 598.778ms - CloseTime: 45.219us - GetBlockTime: 460.583ms - OpenTime: 5.674us - PrepareTime: 149.444us - SinkTime: 136.855ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 455.711ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 463.802ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 105 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.663us - CompressTime: 0ns - ExecTime: 136.776ms - InputRows: 403.826K (403826) - LocalBytesSent: 40.80 MB - LocalSendTime: 1.257ms - LocalSentRows: 403.826K (403826) - MemoryUsage: - PeakMemoryUsage: 64.78 MB - MergeBlockTime: 0ns - OpenTime: 67.349us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.826K (403826) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 110.781ms - SplitBlockHashComputeTime: 12.14ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 13.868us - ExecTime: 457.805ms - InitProbeSideTime: 27.915ms - JoinFilterTimer: 33.661us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 70.966us - ProbeFindNextTime: 0ns - ProbeRows: 467.739K (467739) - ProbeTime: 436.129ms - ProbeWhenBuildSideOutputTime: 116.381ms - ProbeWhenProbeSideOutputTime: 44.497ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 241.787ms - ProjectionTime: 20.703ms - RowsProduced: 403.826K (403826) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s219ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 114 - BytesReceived: 0.00 - CloseTime: 14.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.222ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.44 MB - MemoryUsage: - Blocks: 19.95 MB - PeakMemoryUsage: 19.95 MB - OpenTime: 36.574us - ProjectionTime: 0ns - RowsProduced: 467.739K (467739) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s453ms PipelineXTask (index=2):(Active: 459.613ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 459.440ms - CloseTime: 35.773us - GetBlockTime: 331.293ms - OpenTime: 6.562us - PrepareTime: 122.250us - SinkTime: 127.67ms - GetBlockCounter: 170 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 15 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 400.612ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s242ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 103 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.87us - CompressTime: 0ns - ExecTime: 126.993ms - InputRows: 403.154K (403154) - LocalBytesSent: 40.74 MB - LocalSendTime: 1.232ms - LocalSentRows: 403.154K (403154) - MemoryUsage: - PeakMemoryUsage: 65.70 MB - MergeBlockTime: 0ns - OpenTime: 55.824us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.154K (403154) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.940ms - SplitBlockHashComputeTime: 10.808ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 8.718us - ExecTime: 328.795ms - InitProbeSideTime: 23.952ms - JoinFilterTimer: 30.686us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.162us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.845us - ProbeFindNextTime: 0ns - ProbeRows: 466.891K (466891) - ProbeTime: 316.773ms - ProbeWhenBuildSideOutputTime: 79.301ms - ProbeWhenProbeSideOutputTime: 24.991ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 183.398ms - ProjectionTime: 11.164ms - RowsProduced: 403.154K (403154) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 724.678ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 115 - BytesReceived: 0.00 - CloseTime: 9.865us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.25ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.74 MB - MemoryUsage: - Blocks: 19.42 MB - PeakMemoryUsage: 19.42 MB - OpenTime: 20.130us - ProjectionTime: 0ns - RowsProduced: 466.891K (466891) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s276ms PipelineXTask (index=4):(Active: 474.487ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 474.320ms - CloseTime: 33.927us - GetBlockTime: 358.355ms - OpenTime: 7.831us - PrepareTime: 116.180us - SinkTime: 114.572ms - GetBlockCounter: 170 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 15 - NumScheduleTimes: 17 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 387.529ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 806.666ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 102 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.554us - CompressTime: 0ns - ExecTime: 114.487ms - InputRows: 404.893K (404893) - LocalBytesSent: 40.91 MB - LocalSendTime: 1.300ms - LocalSentRows: 404.893K (404893) - MemoryUsage: - PeakMemoryUsage: 66.08 MB - MergeBlockTime: 0ns - OpenTime: 61.657us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 404.893K (404893) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 90.792ms - SplitBlockHashComputeTime: 10.678ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 7.179us - ExecTime: 355.847ms - InitProbeSideTime: 23.553ms - JoinFilterTimer: 30.702us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 14.676us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 107.736us - ProbeFindNextTime: 0ns - ProbeRows: 468.503K (468503) - ProbeTime: 335.979ms - ProbeWhenBuildSideOutputTime: 115.489ms - ProbeWhenProbeSideOutputTime: 22.799ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 168.989ms - ProjectionTime: 18.963ms - RowsProduced: 404.893K (404893) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s521ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 115 - BytesReceived: 0.00 - CloseTime: 13.344us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.17ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.02 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.55 MB - OpenTime: 11.831us - ProjectionTime: 0ns - RowsProduced: 468.503K (468503) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s22ms PipelineXTask (index=6):(Active: 539.300ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 539.95ms - CloseTime: 57.517us - GetBlockTime: 346.677ms - OpenTime: 7.187us - PrepareTime: 134.121us - SinkTime: 191.178ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 21 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 377.64ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 772.131ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 102 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.958us - CompressTime: 0ns - ExecTime: 191.132ms - InputRows: 403.332K (403332) - LocalBytesSent: 40.75 MB - LocalSendTime: 1.205ms - LocalSentRows: 403.332K (403332) - MemoryUsage: - PeakMemoryUsage: 66.36 MB - MergeBlockTime: 0ns - OpenTime: 70.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.332K (403332) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 168.759ms - SplitBlockHashComputeTime: 10.791ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 32.299us - ExecTime: 326.351ms - InitProbeSideTime: 43.18ms - JoinFilterTimer: 30.480us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 15.0us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 68.829us - ProbeFindNextTime: 0ns - ProbeRows: 466.999K (466999) - ProbeTime: 317.294ms - ProbeWhenBuildSideOutputTime: 96.722ms - ProbeWhenProbeSideOutputTime: 24.104ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 148.830ms - ProjectionTime: 8.212ms - RowsProduced: 403.332K (403332) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s153ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 112 - BytesReceived: 0.00 - CloseTime: 8.953us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.863ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.08 MB - MemoryUsage: - Blocks: 19.47 MB - PeakMemoryUsage: 19.47 MB - OpenTime: 14.703us - ProjectionTime: 0ns - RowsProduced: 466.999K (466999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s337ms PipelineXTask (index=8):(Active: 411.770ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 411.609ms - CloseTime: 24.999us - GetBlockTime: 305.796ms - OpenTime: 4.858us - PrepareTime: 123.678us - SinkTime: 104.659ms - GetBlockCounter: 170 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 16 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 409.618ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 598.930ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 104 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.945us - CompressTime: 0ns - ExecTime: 104.603ms - InputRows: 404.311K (404311) - LocalBytesSent: 40.85 MB - LocalSendTime: 1.235ms - LocalSentRows: 404.311K (404311) - MemoryUsage: - PeakMemoryUsage: 66.98 MB - MergeBlockTime: 0ns - OpenTime: 69.376us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 404.311K (404311) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 79.987ms - SplitBlockHashComputeTime: 10.891ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 8.989us - ExecTime: 303.138ms - InitProbeSideTime: 23.610ms - JoinFilterTimer: 29.981us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 12.530us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 72.787us - ProbeFindNextTime: 0ns - ProbeRows: 468.379K (468379) - ProbeTime: 292.692ms - ProbeWhenBuildSideOutputTime: 82.844ms - ProbeWhenProbeSideOutputTime: 24.708ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 156.442ms - ProjectionTime: 9.583ms - RowsProduced: 404.311K (404311) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s210ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 115 - BytesReceived: 0.00 - CloseTime: 4.259us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.172ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.36 MB - MemoryUsage: - Blocks: 19.68 MB - PeakMemoryUsage: 19.68 MB - OpenTime: 14.730us - ProjectionTime: 0ns - RowsProduced: 468.379K (468379) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s560ms PipelineXTask (index=10):(Active: 619.86ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 618.881ms - CloseTime: 42.910us - GetBlockTime: 452.134ms - OpenTime: 6.95us - PrepareTime: 144.468us - SinkTime: 165.429ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 25 - NumScheduleTimes: 27 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 424.295ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 373.742ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 104 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.587us - CompressTime: 0ns - ExecTime: 165.362ms - InputRows: 405.458K (405458) - LocalBytesSent: 40.97 MB - LocalSendTime: 1.358ms - LocalSentRows: 405.458K (405458) - MemoryUsage: - PeakMemoryUsage: 67.30 MB - MergeBlockTime: 0ns - OpenTime: 61.751us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 405.458K (405458) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 103.965ms - SplitBlockHashComputeTime: 35.388ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 15.219us - ExecTime: 449.651ms - InitProbeSideTime: 33.488ms - JoinFilterTimer: 32.589us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 10.300us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.875us - ProbeFindNextTime: 0ns - ProbeRows: 468.22K (468220) - ProbeTime: 438.799ms - ProbeWhenBuildSideOutputTime: 119.138ms - ProbeWhenProbeSideOutputTime: 40.192ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 240.850ms - ProjectionTime: 9.944ms - RowsProduced: 405.458K (405458) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s219ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 114 - BytesReceived: 0.00 - CloseTime: 10.322us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.4ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.92 MB - MemoryUsage: - Blocks: 19.78 MB - PeakMemoryUsage: 19.78 MB - OpenTime: 41.177us - ProjectionTime: 0ns - RowsProduced: 468.22K (468220) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s591ms PipelineXTask (index=12):(Active: 634.619ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 634.448ms - CloseTime: 38.897us - GetBlockTime: 509.451ms - OpenTime: 5.188us - PrepareTime: 117.96us - SinkTime: 123.734ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 18 - NumScheduleTimes: 20 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 424.421ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 666.406ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 101 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.660us - CompressTime: 0ns - ExecTime: 123.683ms - InputRows: 404.677K (404677) - LocalBytesSent: 40.89 MB - LocalSendTime: 1.199ms - LocalSentRows: 404.677K (404677) - MemoryUsage: - PeakMemoryUsage: 65.93 MB - MergeBlockTime: 0ns - OpenTime: 61.37us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 404.677K (404677) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.572ms - SplitBlockHashComputeTime: 11.339ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 7.490us - ExecTime: 506.906ms - InitProbeSideTime: 36.992ms - JoinFilterTimer: 30.144us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 8.718us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 85.846us - ProbeFindNextTime: 0ns - ProbeRows: 467.941K (467941) - ProbeTime: 496.670ms - ProbeWhenBuildSideOutputTime: 167.410ms - ProbeWhenProbeSideOutputTime: 28.150ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 259.187ms - ProjectionTime: 9.329ms - RowsProduced: 404.677K (404677) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s23ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 113 - BytesReceived: 0.00 - CloseTime: 6.300us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.49ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.06 MB - MemoryUsage: - Blocks: 18.56 MB - PeakMemoryUsage: 18.56 MB - OpenTime: 13.939us - ProjectionTime: 0ns - RowsProduced: 467.941K (467941) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s450ms PipelineXTask (index=14):(Active: 492.646ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 492.424ms - CloseTime: 51.847us - GetBlockTime: 383.517ms - OpenTime: 4.883us - PrepareTime: 158.98us - SinkTime: 107.801ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 16 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 404.724ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 824.137ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 100 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.856us - CompressTime: 0ns - ExecTime: 107.776ms - InputRows: 403.757K (403757) - LocalBytesSent: 40.80 MB - LocalSendTime: 1.201ms - LocalSentRows: 403.757K (403757) - MemoryUsage: - PeakMemoryUsage: 65.30 MB - MergeBlockTime: 0ns - OpenTime: 99.630us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.757K (403757) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 83.841ms - SplitBlockHashComputeTime: 10.635ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 20.96us - ExecTime: 381.61ms - InitProbeSideTime: 22.679ms - JoinFilterTimer: 39.59us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.527us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 84.590us - ProbeFindNextTime: 0ns - ProbeRows: 467.23K (467230) - ProbeTime: 366.448ms - ProbeWhenBuildSideOutputTime: 91.801ms - ProbeWhenProbeSideOutputTime: 32.713ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 214.237ms - ProjectionTime: 13.754ms - RowsProduced: 403.757K (403757) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s49ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 113 - BytesReceived: 0.00 - CloseTime: 8.454us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.977ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.82 MB - MemoryUsage: - Blocks: 19.53 MB - PeakMemoryUsage: 19.53 MB - OpenTime: 10.546us - ProjectionTime: 0ns - RowsProduced: 467.23K (467230) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s404ms PipelineXTask (index=16):(Active: 424.196ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 423.998ms - CloseTime: 57.709us - GetBlockTime: 290.769ms - OpenTime: 5.428us - PrepareTime: 126.179us - SinkTime: 131.985ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 391.616ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 854.706ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 104 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.361us - CompressTime: 0ns - ExecTime: 131.934ms - InputRows: 405.705K (405705) - LocalBytesSent: 40.99 MB - LocalSendTime: 1.333ms - LocalSentRows: 405.705K (405705) - MemoryUsage: - PeakMemoryUsage: 65.25 MB - MergeBlockTime: 0ns - OpenTime: 69.888us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 405.705K (405705) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 93.962ms - SplitBlockHashComputeTime: 24.751ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 29.901us - ExecTime: 288.300ms - InitProbeSideTime: 22.47ms - JoinFilterTimer: 29.491us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 13.278us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 63.800us - ProbeFindNextTime: 0ns - ProbeRows: 468.692K (468692) - ProbeTime: 277.545ms - ProbeWhenBuildSideOutputTime: 76.705ms - ProbeWhenProbeSideOutputTime: 23.659ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 150.128ms - ProjectionTime: 9.885ms - RowsProduced: 405.705K (405705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 985.661ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 113 - BytesReceived: 0.00 - CloseTime: 9.636us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.18ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.74 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.63 MB - OpenTime: 14.604us - ProjectionTime: 0ns - RowsProduced: 468.692K (468692) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s489ms PipelineXTask (index=18):(Active: 375.243ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 375.73ms - CloseTime: 31.635us - GetBlockTime: 284.934ms - OpenTime: 4.625us - PrepareTime: 127.913us - SinkTime: 89.143ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 326.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 866.330ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 101 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.674us - CompressTime: 0ns - ExecTime: 89.94ms - InputRows: 404.216K (404216) - LocalBytesSent: 40.84 MB - LocalSendTime: 1.101ms - LocalSentRows: 404.216K (404216) - MemoryUsage: - PeakMemoryUsage: 65.25 MB - MergeBlockTime: 0ns - OpenTime: 56.79us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 404.216K (404216) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.290ms - SplitBlockHashComputeTime: 10.106ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 7.271us - ExecTime: 282.625ms - InitProbeSideTime: 18.895ms - JoinFilterTimer: 35.440us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 19.418us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.832us - ProbeFindNextTime: 0ns - ProbeRows: 467.596K (467596) - ProbeTime: 275.291ms - ProbeWhenBuildSideOutputTime: 82.939ms - ProbeWhenProbeSideOutputTime: 19.943ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 149.747ms - ProjectionTime: 6.627ms - RowsProduced: 404.216K (404216) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s162ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 113 - BytesReceived: 0.00 - CloseTime: 8.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.876ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.49 MB - MemoryUsage: - Blocks: 19.86 MB - PeakMemoryUsage: 19.86 MB - OpenTime: 11.735us - ProjectionTime: 0ns - RowsProduced: 467.596K (467596) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s324ms PipelineXTask (index=20):(Active: 484.456ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 484.268ms - CloseTime: 54.210us - GetBlockTime: 348.111ms - OpenTime: 5.875us - PrepareTime: 119.78us - SinkTime: 135.9ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 20 - NumScheduleTimes: 21 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 404.288ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 653.554ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 103 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.324us - CompressTime: 0ns - ExecTime: 134.948ms - InputRows: 403.806K (403806) - LocalBytesSent: 40.80 MB - LocalSendTime: 1.251ms - LocalSentRows: 403.806K (403806) - MemoryUsage: - PeakMemoryUsage: 65.82 MB - MergeBlockTime: 0ns - OpenTime: 68.724us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.806K (403806) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 110.912ms - SplitBlockHashComputeTime: 10.778ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 26.967us - ExecTime: 345.618ms - InitProbeSideTime: 24.398ms - JoinFilterTimer: 28.913us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 10.593us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 67.229us - ProbeFindNextTime: 0ns - ProbeRows: 466.939K (466939) - ProbeTime: 335.314ms - ProbeWhenBuildSideOutputTime: 95.519ms - ProbeWhenProbeSideOutputTime: 46.1ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 164.437ms - ProjectionTime: 9.485ms - RowsProduced: 403.806K (403806) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s225ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 112 - BytesReceived: 0.00 - CloseTime: 9.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.48ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.21 MB - MemoryUsage: - Blocks: 19.69 MB - PeakMemoryUsage: 19.69 MB - OpenTime: 13.295us - ProjectionTime: 0ns - RowsProduced: 466.939K (466939) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s404ms PipelineXTask (index=22):(Active: 456.761ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 456.566ms - CloseTime: 39.340us - GetBlockTime: 337.790ms - OpenTime: 6.102us - PrepareTime: 142.989us - SinkTime: 117.786ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 380.469ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 831.219ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 102 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.485us - CompressTime: 0ns - ExecTime: 117.716ms - InputRows: 403.141K (403141) - LocalBytesSent: 40.73 MB - LocalSendTime: 5.160ms - LocalSentRows: 403.141K (403141) - MemoryUsage: - PeakMemoryUsage: 65.53 MB - MergeBlockTime: 0ns - OpenTime: 61.280us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 403.141K (403141) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 90.610ms - SplitBlockHashComputeTime: 10.439ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 53.749ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 11.970us - ExecTime: 335.487ms - InitProbeSideTime: 21.763ms - JoinFilterTimer: 30.226us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 17.291us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 82.857us - ProbeFindNextTime: 0ns - ProbeRows: 467.42K (467420) - ProbeTime: 306.622ms - ProbeWhenBuildSideOutputTime: 102.930ms - ProbeWhenProbeSideOutputTime: 22.672ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 154.665ms - ProjectionTime: 27.979ms - RowsProduced: 403.141K (403141) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s105ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 112 - BytesReceived: 0.00 - CloseTime: 10.837us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.890ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.36 MB - MemoryUsage: - Blocks: 19.15 MB - PeakMemoryUsage: 19.15 MB - OpenTime: 29.636us - ProjectionTime: 0ns - RowsProduced: 467.42K (467420) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s379ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 165.370ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 165.255ms - CloseTime: 17.410us - GetBlockTime: 4.674ms - OpenTime: 2.536us - PrepareTime: 84.353us - SinkTime: 160.190ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.877ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 922.700ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 50.406us - BuildRows: 404.449K (404449) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.638ms - BuildTableInsertTime: 29.470ms - BuildTableTime: 29.478ms - CloseTime: 0ns - ExecTime: 160.171ms - InputRows: 404.448K (404448) - MemoryUsage: - BuildBlocks: 13.89 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.32 MB - OpenTime: 20.868us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.138ms - RuntimeFilterComputeTime: 27.383ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 13.554us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.647ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.69 MB - MemoryUsage: - Blocks: 5.15 MB - PeakMemoryUsage: 5.15 MB - OpenTime: 36.733us - ProjectionTime: 0ns - RowsProduced: 404.448K (404448) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 916.874ms PipelineXTask (index=3):(Active: 335.371ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 335.277ms - CloseTime: 15.317us - GetBlockTime: 962.836us - OpenTime: 2.180us - PrepareTime: 67.697us - SinkTime: 333.949ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 128.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s154ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 49.107us - BuildRows: 403.84K (403840) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 209.330ms - BuildTableInsertTime: 44.581ms - BuildTableTime: 44.588ms - CloseTime: 0ns - ExecTime: 333.928ms - InputRows: 403.839K (403839) - MemoryUsage: - BuildBlocks: 13.86 MB - BuildKeyArena: 13.87 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.27 MB - OpenTime: 15.211us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.200ms - RuntimeFilterComputeTime: 75.15ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 99 - BytesReceived: 0.00 - CloseTime: 11.845us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 916.310us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.01 MB - MemoryUsage: - Blocks: 3.95 MB - PeakMemoryUsage: 3.95 MB - OpenTime: 12.529us - ProjectionTime: 0ns - RowsProduced: 403.839K (403839) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 648.743ms PipelineXTask (index=5):(Active: 191.444ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 191.331ms - CloseTime: 32.186us - GetBlockTime: 1.38ms - OpenTime: 2.554us - PrepareTime: 62.916us - SinkTime: 189.848ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.349ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s575ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 54.741us - BuildRows: 405.54K (405540) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 109.204ms - BuildTableInsertTime: 48.79ms - BuildTableTime: 48.86ms - CloseTime: 0ns - ExecTime: 189.827ms - InputRows: 405.539K (405539) - MemoryUsage: - BuildBlocks: 13.92 MB - BuildKeyArena: 13.93 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.40 MB - OpenTime: 26.823us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.478ms - RuntimeFilterComputeTime: 26.51ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 28.252us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 989.187us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.33 MB - MemoryUsage: - Blocks: 5.77 MB - PeakMemoryUsage: 5.77 MB - OpenTime: 12.352us - ProjectionTime: 0ns - RowsProduced: 405.539K (405539) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 629.376ms PipelineXTask (index=7):(Active: 221.346ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 221.256ms - CloseTime: 12.90us - GetBlockTime: 1.8ms - OpenTime: 2.781us - PrepareTime: 65.196us - SinkTime: 219.844ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.749ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s226ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 49.958us - BuildRows: 403.991K (403991) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 147.189ms - BuildTableInsertTime: 38.403ms - BuildTableTime: 38.411ms - CloseTime: 0ns - ExecTime: 219.811ms - InputRows: 403.99K (403990) - MemoryUsage: - BuildBlocks: 13.87 MB - BuildKeyArena: 13.88 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.28 MB - OpenTime: 13.502us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.125ms - RuntimeFilterComputeTime: 29.324ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 99 - BytesReceived: 0.00 - CloseTime: 9.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 969.727us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.80 MB - MemoryUsage: - Blocks: 3.66 MB - PeakMemoryUsage: 3.66 MB - OpenTime: 31.429us - ProjectionTime: 0ns - RowsProduced: 403.99K (403990) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 673.615ms PipelineXTask (index=9):(Active: 140.513ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 140.437ms - CloseTime: 16.914us - GetBlockTime: 984.919us - OpenTime: 2.110us - PrepareTime: 49.677us - SinkTime: 139.82ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s115ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 50.30us - BuildRows: 404.992K (404992) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.913ms - BuildTableInsertTime: 75.837ms - BuildTableTime: 75.844ms - CloseTime: 0ns - ExecTime: 139.66ms - InputRows: 404.991K (404991) - MemoryUsage: - BuildBlocks: 13.90 MB - BuildKeyArena: 13.91 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.36 MB - OpenTime: 21.446us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 999.308us - RuntimeFilterComputeTime: 24.671ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 12.382us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 940.808us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.62 MB - MemoryUsage: - Blocks: 4.08 MB - PeakMemoryUsage: 4.08 MB - OpenTime: 12.492us - ProjectionTime: 0ns - RowsProduced: 404.991K (404991) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 740.486ms PipelineXTask (index=11):(Active: 243.65ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 242.988ms - CloseTime: 17.611us - GetBlockTime: 914.147us - OpenTime: 2.235us - PrepareTime: 52.302us - SinkTime: 241.783ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 106.971ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s212ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 59.322us - BuildRows: 406.081K (406081) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 129.873ms - BuildTableInsertTime: 42.630ms - BuildTableTime: 42.639ms - CloseTime: 0ns - ExecTime: 241.747ms - InputRows: 406.08K (406080) - MemoryUsage: - BuildBlocks: 13.94 MB - BuildKeyArena: 13.95 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.44 MB - OpenTime: 14.330us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.50ms - RuntimeFilterComputeTime: 64.451ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 13.317us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 886.915us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.99 MB - MemoryUsage: - Blocks: 8.31 MB - PeakMemoryUsage: 8.31 MB - OpenTime: 14.451us - ProjectionTime: 0ns - RowsProduced: 406.08K (406080) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 537.636ms PipelineXTask (index=13):(Active: 194.585ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 194.509ms - CloseTime: 18.432us - GetBlockTime: 1.47ms - OpenTime: 2.842us - PrepareTime: 49.6us - SinkTime: 193.166ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s312ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 42.395us - BuildRows: 405.326K (405326) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 102.136ms - BuildTableInsertTime: 44.426ms - BuildTableTime: 44.433ms - CloseTime: 0ns - ExecTime: 193.143ms - InputRows: 405.325K (405325) - MemoryUsage: - BuildBlocks: 13.92 MB - BuildKeyArena: 13.92 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.38 MB - OpenTime: 12.59us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.621ms - RuntimeFilterComputeTime: 41.33ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 15.4us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.26ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.39 MB - MemoryUsage: - Blocks: 8.30 MB - PeakMemoryUsage: 8.30 MB - OpenTime: 18.843us - ProjectionTime: 0ns - RowsProduced: 405.325K (405325) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 466.131ms PipelineXTask (index=15):(Active: 233.119ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 233.35ms - CloseTime: 21.951us - GetBlockTime: 973.399us - OpenTime: 2.531us - PrepareTime: 44.78us - SinkTime: 231.726ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 114.203ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s51ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 44.633us - BuildRows: 404.403K (404403) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 150.76ms - BuildTableInsertTime: 37.796ms - BuildTableTime: 37.805ms - CloseTime: 0ns - ExecTime: 231.685ms - InputRows: 404.402K (404402) - MemoryUsage: - BuildBlocks: 13.88 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.31 MB - OpenTime: 13.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.211ms - RuntimeFilterComputeTime: 38.635ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 101 - BytesReceived: 0.00 - CloseTime: 17.801us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 939.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.41 MB - MemoryUsage: - Blocks: 6.20 MB - PeakMemoryUsage: 6.20 MB - OpenTime: 12.879us - ProjectionTime: 0ns - RowsProduced: 404.402K (404402) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 681.15ms PipelineXTask (index=17):(Active: 96.408ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 96.322ms - CloseTime: 19.446us - GetBlockTime: 963.21us - OpenTime: 2.627us - PrepareTime: 57.167us - SinkTime: 94.992ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.3ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s82ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 56.67us - BuildRows: 406.369K (406369) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.520ms - BuildTableInsertTime: 39.656ms - BuildTableTime: 39.664ms - CloseTime: 0ns - ExecTime: 94.968ms - InputRows: 406.368K (406368) - MemoryUsage: - BuildBlocks: 13.95 MB - BuildKeyArena: 13.96 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.45 MB - OpenTime: 11.844us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.393us - RuntimeFilterComputeTime: 27.899ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 101 - BytesReceived: 0.00 - CloseTime: 14.449us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 930.456us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.96 MB - MemoryUsage: - Blocks: 5.36 MB - PeakMemoryUsage: 5.36 MB - OpenTime: 14.49us - ProjectionTime: 0ns - RowsProduced: 406.368K (406368) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 756.423ms PipelineXTask (index=19):(Active: 174.920ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 174.804ms - CloseTime: 15.848us - GetBlockTime: 1.36ms - OpenTime: 2.846us - PrepareTime: 90.86us - SinkTime: 173.429ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.441ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s462ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 53.132us - BuildRows: 404.855K (404855) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 105.441ms - BuildTableInsertTime: 35.877ms - BuildTableTime: 35.885ms - CloseTime: 0ns - ExecTime: 173.429ms - InputRows: 404.854K (404854) - MemoryUsage: - BuildBlocks: 13.90 MB - BuildKeyArena: 13.91 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.35 MB - OpenTime: 51.734us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 970.902us - RuntimeFilterComputeTime: 27.345ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 12.462us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 984.980us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.22 MB - MemoryUsage: - Blocks: 4.43 MB - PeakMemoryUsage: 4.43 MB - OpenTime: 16.533us - ProjectionTime: 0ns - RowsProduced: 404.854K (404854) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 440.745ms PipelineXTask (index=21):(Active: 137.901ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 137.822ms - CloseTime: 14.306us - GetBlockTime: 966.670us - OpenTime: 2.483us - PrepareTime: 55.810us - SinkTime: 136.444ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.819ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s103ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 57.13us - BuildRows: 404.466K (404466) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 36.35ms - BuildTableInsertTime: 52.235ms - BuildTableTime: 52.242ms - CloseTime: 0ns - ExecTime: 136.413ms - InputRows: 404.465K (404465) - MemoryUsage: - BuildBlocks: 13.89 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.32 MB - OpenTime: 12.282us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.77ms - RuntimeFilterComputeTime: 26.833ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 101 - BytesReceived: 0.00 - CloseTime: 10.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 916.677us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.23 MB - MemoryUsage: - Blocks: 3.09 MB - PeakMemoryUsage: 3.09 MB - OpenTime: 14.206us - ProjectionTime: 0ns - RowsProduced: 404.465K (404465) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 759.455ms PipelineXTask (index=23):(Active: 234.905ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 234.697ms - CloseTime: 16.315us - GetBlockTime: 972.579us - OpenTime: 2.127us - PrepareTime: 182.693us - SinkTime: 233.359ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.782ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s25ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 48.476us - BuildRows: 403.808K (403808) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 165.202ms - BuildTableInsertTime: 34.298ms - BuildTableTime: 34.304ms - CloseTime: 0ns - ExecTime: 233.326ms - InputRows: 403.807K (403807) - MemoryUsage: - BuildBlocks: 13.86 MB - BuildKeyArena: 13.87 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.27 MB - OpenTime: 12.288us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.166ms - RuntimeFilterComputeTime: 31.609ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 100 - BytesReceived: 0.00 - CloseTime: 12.316us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.61ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 25.23 MB - MemoryUsage: - Blocks: 3.03 MB - PeakMemoryUsage: 3.03 MB - OpenTime: 149.306us - ProjectionTime: 0ns - RowsProduced: 403.807K (403807) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 812.588ms Fragment 30: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 470.82ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 469.692ms - CloseTime: 52.904us - GetBlockTime: 15.653ms - OpenTime: 112.400us - PrepareTime: 213.920us - SinkTime: 452.446ms - GetBlockCounter: 485 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 298.976ms - WaitBfTime: 699.682ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s381ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 382 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.153us - CompressTime: 0ns - ExecTime: 452.345ms - InputRows: 1.576607M (1576607) - LocalBytesSent: 104.86 MB - LocalSendTime: 3.917ms - LocalSentRows: 1.576607M (1576607) - MemoryUsage: - PeakMemoryUsage: 159.76 MB - MergeBlockTime: 0ns - OpenTime: 72.306us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.576607M (1576607) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 345.196ms - SplitBlockHashComputeTime: 85.454ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 3.34ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 312.320ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 26.734ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 81.142ms - WaitForLocalExchangeBuffer9: 69.656ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=313. table name = QYWX_EXTERNAL_USER_INFO): - RuntimeFilters: : RuntimeFilter: (id = 94, type = minmax), RuntimeFilter: (id = 95, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21528] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.678us - BlocksProduced: 485 - CloseTime: 39.884us - ExecTime: 594.150ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 194.674us - ProcessConjunctTime: 21.536us - ProjectionTime: 0ns - RowsProduced: 1.576607M (1576607) - RowsRead: 2.098705M (2098705) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 259.395ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 578.435ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 - always_true: 0 - expr_filtered_rows: 2.729832M (2729832) - expr_input_rows: 5.493517M (5493517) VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [317.891ms, ] - PerScannerRowsRead: [2.10M, ] - PerScannerWaitTime: [259.395ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 109.285ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.573ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.254us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 178.219ms - ScannerCtxSchedTime: 259.377ms - ScannerFilterTime: 169.852ms - ScannerGetBlockTime: 147.714ms - ScannerInitTime: 63.585us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 11.101us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.36us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 46 - BlockInitSeekTime: 968.688us - BlockInitTime: 1.84ms - BlockLoadTime: 147.591ms - BlocksLoad: 520 - CachedPagesNum: 2.122K (2122) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.036K (1036) - FirstReadSeekTime: 1.89ms - FirstReadTime: 144.461ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.645us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 150.35us - OutputIndexResultColumnTimer: 66.28us - RawRowsRead: 2.098705M (2098705) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.122K (2122) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 496.235ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 495.903ms - CloseTime: 57.880us - GetBlockTime: 2.568ms - OpenTime: 90.61us - PrepareTime: 173.120us - SinkTime: 491.715ms - GetBlockCounter: 481 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 284.443ms - WaitBfTime: 699.786ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s496ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 378 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.838us - CompressTime: 0ns - ExecTime: 491.633ms - InputRows: 1.565257M (1565257) - LocalBytesSent: 104.49 MB - LocalSendTime: 3.782ms - LocalSentRows: 1.565257M (1565257) - MemoryUsage: - PeakMemoryUsage: 159.60 MB - MergeBlockTime: 0ns - OpenTime: 67.661us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.565257M (1565257) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 339.647ms - SplitBlockHashComputeTime: 66.405ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 3.34ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 312.320ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 26.734ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 81.142ms - WaitForLocalExchangeBuffer9: 69.656ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=313. table name = QYWX_EXTERNAL_USER_INFO): - RuntimeFilters: : RuntimeFilter: (id = 94, type = minmax), RuntimeFilter: (id = 95, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21530] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.19us - BlocksProduced: 481 - CloseTime: 41.893us - ExecTime: 465.666ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 152.341us - ProcessConjunctTime: 12.418us - ProjectionTime: 0ns - RowsProduced: 1.565257M (1565257) - RowsRead: 2.080044M (2080044) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 163.411ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 463.87ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 - always_true: 0 - expr_filtered_rows: 2.729832M (2729832) - expr_input_rows: 5.493517M (5493517) VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [311.215ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [163.411ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 151.525ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.179ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.602us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 187.0ms - ScannerCtxSchedTime: 163.387ms - ScannerFilterTime: 156.988ms - ScannerGetBlockTime: 153.907ms - ScannerInitTime: 60.130us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.79us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.380us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 21.292us - BlockInitTime: 123.253us - BlockLoadTime: 153.344ms - BlocksLoad: 515 - CachedPagesNum: 2.11K (2110) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.026K (1026) - FirstReadSeekTime: 1.619ms - FirstReadTime: 151.33ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.664us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 170.714us - OutputIndexResultColumnTimer: 61.412us - RawRowsRead: 2.080044M (2080044) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.11K (2110) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 241.954ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 241.543ms - CloseTime: 66.763us - GetBlockTime: 2.315ms - OpenTime: 123.205us - PrepareTime: 198.351us - SinkTime: 237.888ms - GetBlockCounter: 397 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 183.229ms - WaitBfTime: 1s364ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s956ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 284 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.751us - CompressTime: 0ns - ExecTime: 237.858ms - InputRows: 1.152608M (1152608) - LocalBytesSent: 76.94 MB - LocalSendTime: 2.736ms - LocalSentRows: 1.152608M (1152608) - MemoryUsage: - PeakMemoryUsage: 119.07 MB - MergeBlockTime: 0ns - OpenTime: 77.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.152608M (1152608) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 170.248ms - SplitBlockHashComputeTime: 52.525ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 3.34ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 312.320ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 26.734ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 81.142ms - WaitForLocalExchangeBuffer9: 69.656ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=313. table name = QYWX_EXTERNAL_USER_INFO): - RuntimeFilters: : RuntimeFilter: (id = 94, type = minmax), RuntimeFilter: (id = 95, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21532] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.775us - BlocksProduced: 397 - CloseTime: 51.565us - ExecTime: 330.225ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 186.590us - ProcessConjunctTime: 27.419us - ProjectionTime: 0ns - RowsProduced: 1.152608M (1152608) - RowsRead: 2.081635M (2081635) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 32.500ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 327.804ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 - always_true: 0 - expr_filtered_rows: 2.729832M (2729832) - expr_input_rows: 5.493517M (5493517) VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [294.086ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [32.500ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 95.839ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 771.534us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 18.571us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 225.618ms - ScannerCtxSchedTime: 32.475ms - ScannerFilterTime: 195.836ms - ScannerGetBlockTime: 97.881ms - ScannerInitTime: 56.585us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.29us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.410us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 16.198us - BlockInitTime: 84.495us - BlockLoadTime: 96.933ms - BlocksLoad: 516 - CachedPagesNum: 2.112K (2112) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.298ms - FirstReadTime: 94.743ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.167us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 120.922us - OutputIndexResultColumnTimer: 73.770us - RawRowsRead: 2.081635M (2081635) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.112K (2112) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 519.676ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 519.313ms - CloseTime: 67.400us - GetBlockTime: 2.687ms - OpenTime: 90.579us - PrepareTime: 191.766us - SinkTime: 515.67ms - GetBlockCounter: 431 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 240.440ms - WaitBfTime: 699.868ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s537ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 322 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.694us - CompressTime: 0ns - ExecTime: 514.997ms - InputRows: 1.318077M (1318077) - LocalBytesSent: 87.99 MB - LocalSendTime: 35.29ms - LocalSentRows: 1.318077M (1318077) - MemoryUsage: - PeakMemoryUsage: 135.79 MB - MergeBlockTime: 0ns - OpenTime: 64.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.318077M (1318077) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 424.296ms - SplitBlockHashComputeTime: 40.89ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 3.34ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 312.320ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 26.734ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 81.142ms - WaitForLocalExchangeBuffer9: 69.656ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=313. table name = QYWX_EXTERNAL_USER_INFO): - RuntimeFilters: : RuntimeFilter: (id = 94, type = minmax), RuntimeFilter: (id = 95, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21534] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.924us - BlocksProduced: 431 - CloseTime: 40.73us - ExecTime: 470.121ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 160.746us - ProcessConjunctTime: 25.202us - ProjectionTime: 0ns - RowsProduced: 1.318077M (1318077) - RowsRead: 2.081997M (2081997) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 167.895ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 467.425ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 - always_true: 0 - expr_filtered_rows: 2.729832M (2729832) - expr_input_rows: 5.493517M (5493517) VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [278.298ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [167.895ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 78.211ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 798.943us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.194us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 195.823ms - ScannerCtxSchedTime: 167.868ms - ScannerFilterTime: 197.658ms - ScannerGetBlockTime: 80.293ms - ScannerInitTime: 44.283us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.42us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.124us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 19.601us - BlockInitTime: 124.980us - BlockLoadTime: 79.355ms - BlocksLoad: 516 - CachedPagesNum: 2.112K (2112) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.286ms - FirstReadTime: 77.239ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.499us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 120.627us - OutputIndexResultColumnTimer: 57.211us - RawRowsRead: 2.081997M (2081997) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.112K (2112) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 31: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 105.8ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 104.548ms - CloseTime: 48.379us - GetBlockTime: 184.494us - OpenTime: 203.177us - PrepareTime: 198.8us - SinkTime: 104.56ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 11.728ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.12ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 29 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.892us - CompressTime: 0ns - ExecTime: 104.126ms - InputRows: 98.869K (98869) - LocalBytesSent: 3.39 MB - LocalSendTime: 142.458us - LocalSentRows: 98.869K (98869) - MemoryUsage: - PeakMemoryUsage: 5.22 MB - MergeBlockTime: 0ns - OpenTime: 68.752us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 98.869K (98869) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.922ms - SplitBlockHashComputeTime: 2.869ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 548ns - BlocksProduced: 28 - CloseTime: 36.298us - ExecTime: 176.157ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 276.33us - ProcessConjunctTime: 68.333us - ProjectionTime: 584.533us - RowsProduced: 98.869K (98869) - RowsRead: 98.869K (98869) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 38.301ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 175.70ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [92.992ms, ] - PerScannerRowsRead: [98.87K, ] - PerScannerWaitTime: [38.301ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 92.493ms - MemoryUsage: - FreeBlocks: 3.92 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 629.795us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.232us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.212ms - ScannerCtxSchedTime: 38.299ms - ScannerFilterTime: 135.323us - ScannerGetBlockTime: 92.790ms - ScannerInitTime: 95.967us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.450us - BlockConditionsFilteredBloomFilterTime: 1.992us - BlockConditionsFilteredDictTime: 299ns - BlockConditionsFilteredTime: 48.39us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.271us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.676us - BlockInitTime: 93.352us - BlockLoadTime: 92.954ms - BlocksLoad: 139 - CachedPagesNum: 360 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 276 - FirstReadSeekTime: 65.3us - FirstReadTime: 1.774ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.626us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 89.494ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 431.844us - OutputIndexResultColumnTimer: 16.421us - RawRowsRead: 556.885K (556885) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 458.016K (458016) - RowsVectorPredInput: 556.885K (556885) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.65us - TotalPagesNum: 360 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 773.918us PipelineXTask (index=1):(Active: 61.750ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.712ms - CloseTime: 64.759us - GetBlockTime: 274.851us - OpenTime: 22.801ms - PrepareTime: 164.866us - SinkTime: 15.535ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.114ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.437us - CompressTime: 0ns - ExecTime: 15.601ms - InputRows: 95.75K (95750) - LocalBytesSent: 3.29 MB - LocalSendTime: 119.362us - LocalSentRows: 95.75K (95750) - MemoryUsage: - PeakMemoryUsage: 5.06 MB - MergeBlockTime: 0ns - OpenTime: 61.443us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 95.75K (95750) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.973ms - SplitBlockHashComputeTime: 3.482ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 472ns - BlocksProduced: 28 - CloseTime: 48.470us - ExecTime: 516.520ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 22.867ms - ProcessConjunctTime: 54.84us - ProjectionTime: 781.912us - RowsProduced: 95.75K (95750) - RowsRead: 95.75K (95750) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 157.537ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 492.542ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [331.430ms, ] - PerScannerRowsRead: [95.75K, ] - PerScannerWaitTime: [157.537ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 329.331ms - MemoryUsage: - FreeBlocks: 3.95 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 571.680us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.463us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.895ms - ScannerCtxSchedTime: 157.535ms - ScannerFilterTime: 105.513us - ScannerGetBlockTime: 331.255ms - ScannerInitTime: 22.716ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.336us - BlockConditionsFilteredBloomFilterTime: 7.351us - BlockConditionsFilteredDictTime: 2.320us - BlockConditionsFilteredTime: 111.692us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 72.888us - BlockInitSeekCount: 37 - BlockInitSeekTime: 475.811us - BlockInitTime: 707.617us - BlockLoadTime: 330.953ms - BlocksLoad: 152 - CachedPagesNum: 354 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 294 - FirstReadSeekTime: 92.820us - FirstReadTime: 1.823ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.933us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 184.687ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 478.226us - OutputIndexResultColumnTimer: 16.907us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.327us - TotalPagesNum: 354 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 813.726us PipelineXTask (index=2):(Active: 141.747ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.313ms - CloseTime: 79.405us - GetBlockTime: 653.747us - OpenTime: 12.151ms - PrepareTime: 192.938us - SinkTime: 116.157ms - GetBlockCounter: 95 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 35.462ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.135ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.233us - CompressTime: 0ns - ExecTime: 116.223ms - InputRows: 340.087K (340087) - LocalBytesSent: 11.68 MB - LocalSendTime: 16.910ms - LocalSentRows: 340.087K (340087) - MemoryUsage: - PeakMemoryUsage: 20.95 MB - MergeBlockTime: 0ns - OpenTime: 83.289us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 340.087K (340087) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.732ms - SplitBlockHashComputeTime: 15.55ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 437ns - BlocksProduced: 95 - CloseTime: 56.29us - ExecTime: 425.37ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 12.223ms - ProcessConjunctTime: 80.685us - ProjectionTime: 31.953ms - RowsProduced: 340.087K (340087) - RowsRead: 340.087K (340087) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 101.81ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 380.147ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [96.359ms, ] - PerScannerRowsRead: [340.09K, ] - PerScannerWaitTime: [101.081ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 94.632ms - MemoryUsage: - FreeBlocks: 7.50 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.796ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.359us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.78ms - ScannerCtxSchedTime: 101.77ms - ScannerFilterTime: 334.60us - ScannerGetBlockTime: 95.867ms - ScannerInitTime: 12.28ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 7.435us - BlockConditionsFilteredBloomFilterTime: 4.320us - BlockConditionsFilteredDictTime: 1.522us - BlockConditionsFilteredTime: 143.101us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 104.521us - BlockInitSeekCount: 17 - BlockInitSeekTime: 30.186us - BlockInitTime: 292.843us - BlockLoadTime: 113.422ms - BlocksLoad: 367 - CachedPagesNum: 974 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 730 - FirstReadSeekTime: 230.54us - FirstReadTime: 5.189ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.636us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 102.781ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.644ms - OutputIndexResultColumnTimer: 40.72us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 14.176us - TotalPagesNum: 974 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.359ms PipelineXTask (index=3):(Active: 256.244ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 255.718ms - CloseTime: 53.71us - GetBlockTime: 538.423us - OpenTime: 300.407us - PrepareTime: 162.822us - SinkTime: 254.521ms - GetBlockCounter: 99 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 40.594ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.611ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.946us - CompressTime: 0ns - ExecTime: 254.553ms - InputRows: 343.85K (343850) - LocalBytesSent: 11.81 MB - LocalSendTime: 616.668us - LocalSentRows: 343.85K (343850) - MemoryUsage: - PeakMemoryUsage: 20.95 MB - MergeBlockTime: 0ns - OpenTime: 58.818us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 343.85K (343850) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 240.258ms - SplitBlockHashComputeTime: 10.434ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 776ns - BlocksProduced: 99 - CloseTime: 32.978us - ExecTime: 257.13ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 365.94us - ProcessConjunctTime: 105.376us - ProjectionTime: 25.137ms - RowsProduced: 343.85K (343850) - RowsRead: 343.85K (343850) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 106.263ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 230.903ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [86.676ms, ] - PerScannerRowsRead: [343.85K, ] - PerScannerWaitTime: [106.263ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 84.127ms - MemoryUsage: - FreeBlocks: 6.52 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.371ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.391us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.856ms - ScannerCtxSchedTime: 106.258ms - ScannerFilterTime: 326.485us - ScannerGetBlockTime: 86.153ms - ScannerInitTime: 149.124us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.676us - BlockConditionsFilteredBloomFilterTime: 4.89us - BlockConditionsFilteredDictTime: 1.833us - BlockConditionsFilteredTime: 133.846us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 99.190us - BlockInitSeekCount: 26 - BlockInitSeekTime: 36.266us - BlockInitTime: 303.761us - BlockLoadTime: 86.242ms - BlocksLoad: 405 - CachedPagesNum: 1.059K (1059) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 804 - FirstReadSeekTime: 153.996us - FirstReadTime: 5.614ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.493us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 74.85ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.954ms - OutputIndexResultColumnTimer: 47.342us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 17.60us - TotalPagesNum: 1.059K (1059) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.196ms PipelineXTask (index=4):(Active: 190.273ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 189.330ms - CloseTime: 61.388us - GetBlockTime: 1.7ms - OpenTime: 120.486us - PrepareTime: 170.276us - SinkTime: 187.626ms - GetBlockCounter: 138 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 71.121ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.456ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 123 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.267us - CompressTime: 0ns - ExecTime: 187.650ms - InputRows: 500.734K (500734) - LocalBytesSent: 17.19 MB - LocalSendTime: 12.121ms - LocalSentRows: 500.734K (500734) - MemoryUsage: - PeakMemoryUsage: 31.00 MB - MergeBlockTime: 0ns - OpenTime: 66.541us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 500.734K (500734) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 151.402ms - SplitBlockHashComputeTime: 17.502ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 822ns - BlocksProduced: 138 - CloseTime: 43.512us - ExecTime: 309.694ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 181.138us - ProcessConjunctTime: 35.905us - ProjectionTime: 5.97ms - RowsProduced: 500.734K (500734) - RowsRead: 500.734K (500734) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 130.308ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 303.387ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [145.593ms, ] - PerScannerRowsRead: [500.73K, ] - PerScannerWaitTime: [130.308ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 143.76ms - MemoryUsage: - FreeBlocks: 6.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.176ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.473us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 55.254ms - ScannerCtxSchedTime: 130.301ms - ScannerFilterTime: 336.788us - ScannerGetBlockTime: 145.95ms - ScannerInitTime: 56.655us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 1.634us - BlockConditionsFilteredBloomFilterTime: 4.284us - BlockConditionsFilteredDictTime: 1.77us - BlockConditionsFilteredTime: 103.992us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 69.569us - BlockInitSeekCount: 25 - BlockInitSeekTime: 34.712us - BlockInitTime: 230.644us - BlockLoadTime: 145.6ms - BlocksLoad: 384 - CachedPagesNum: 1.004K (1004) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 762 - FirstReadSeekTime: 183.605us - FirstReadTime: 58.646ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.399us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 80.457ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.52ms - OutputIndexResultColumnTimer: 45.109us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 15.576us - TotalPagesNum: 1.004K (1004) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.490ms PipelineXTask (index=5):(Active: 252.231ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 242.508ms - CloseTime: 61.728us - GetBlockTime: 1.154ms - OpenTime: 9.484ms - PrepareTime: 166.766us - SinkTime: 231.319ms - GetBlockCounter: 154 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.566ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.549ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 120 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.969us - CompressTime: 0ns - ExecTime: 231.347ms - InputRows: 480.081K (480081) - LocalBytesSent: 16.48 MB - LocalSendTime: 846.167us - LocalSentRows: 480.081K (480081) - MemoryUsage: - PeakMemoryUsage: 30.35 MB - MergeBlockTime: 0ns - OpenTime: 68.492us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 480.081K (480081) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 153.814ms - SplitBlockHashComputeTime: 70.556ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 506ns - BlocksProduced: 154 - CloseTime: 41.325us - ExecTime: 328.775ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 9.548ms - ProcessConjunctTime: 32.882us - ProjectionTime: 5.42ms - RowsProduced: 480.081K (480081) - RowsRead: 480.081K (480081) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 225.93ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 312.995ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [81.860ms, ] - PerScannerRowsRead: [480.08K, ] - PerScannerWaitTime: [225.093ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 78.618ms - MemoryUsage: - FreeBlocks: 5.98 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.243ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.138us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.194ms - ScannerCtxSchedTime: 225.87ms - ScannerFilterTime: 469.123us - ScannerGetBlockTime: 81.164ms - ScannerInitTime: 9.399ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.768us - BlockConditionsFilteredBloomFilterTime: 7.47us - BlockConditionsFilteredDictTime: 1.922us - BlockConditionsFilteredTime: 168.439us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 110.405us - BlockInitSeekCount: 31 - BlockInitSeekTime: 33.674us - BlockInitTime: 349.250us - BlockLoadTime: 80.873ms - BlocksLoad: 410 - CachedPagesNum: 1.059K (1059) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 812 - FirstReadSeekTime: 197.768us - FirstReadTime: 5.855ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.945us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 66.786ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.911ms - OutputIndexResultColumnTimer: 61.693us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 19.657us - TotalPagesNum: 1.059K (1059) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.136ms PipelineXTask (index=6):(Active: 312.697ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 311.984ms - CloseTime: 74.24us - GetBlockTime: 1.326ms - OpenTime: 470.143us - PrepareTime: 163.212us - SinkTime: 309.275ms - GetBlockCounter: 195 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 117.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.832ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 167 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.611us - CompressTime: 0ns - ExecTime: 309.271ms - InputRows: 659.979K (659979) - LocalBytesSent: 22.66 MB - LocalSendTime: 12.317ms - LocalSentRows: 659.979K (659979) - MemoryUsage: - PeakMemoryUsage: 41.07 MB - MergeBlockTime: 0ns - OpenTime: 73.196us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 659.979K (659979) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 259.496ms - SplitBlockHashComputeTime: 27.628ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 583ns - BlocksProduced: 195 - CloseTime: 55.501us - ExecTime: 298.627ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 527.327us - ProcessConjunctTime: 83.995us - ProjectionTime: 4.769ms - RowsProduced: 659.979K (659979) - RowsRead: 659.979K (659979) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 168.370ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 292.19ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [112.994ms, ] - PerScannerRowsRead: [659.98K, ] - PerScannerWaitTime: [168.370ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 109.792ms - MemoryUsage: - FreeBlocks: 8.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 620.106us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.283us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.217ms - ScannerCtxSchedTime: 168.354ms - ScannerFilterTime: 312.927us - ScannerGetBlockTime: 112.545ms - ScannerInitTime: 343.196us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.160us - BlockConditionsFilteredBloomFilterTime: 13.22us - BlockConditionsFilteredDictTime: 5.169us - BlockConditionsFilteredTime: 116.242us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.348us - BlockInitSeekCount: 35 - BlockInitSeekTime: 47.294us - BlockInitTime: 277.789us - BlockLoadTime: 111.985ms - BlocksLoad: 345 - CachedPagesNum: 880 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 682 - FirstReadSeekTime: 173.172us - FirstReadTime: 41.502ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.197us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 64.418ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.378ms - OutputIndexResultColumnTimer: 36.583us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 12.271us - TotalPagesNum: 880 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.395ms PipelineXTask (index=7):(Active: 322.5ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 284.859ms - CloseTime: 57.280us - GetBlockTime: 1.292ms - OpenTime: 36.908ms - PrepareTime: 173.140us - SinkTime: 245.847ms - GetBlockCounter: 210 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 94.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s157ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 168 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.611us - CompressTime: 0ns - ExecTime: 245.865ms - InputRows: 674.788K (674788) - LocalBytesSent: 23.17 MB - LocalSendTime: 1.418ms - LocalSentRows: 674.788K (674788) - MemoryUsage: - PeakMemoryUsage: 41.99 MB - MergeBlockTime: 0ns - OpenTime: 79.270us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 674.788K (674788) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 186.447ms - SplitBlockHashComputeTime: 49.510ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 475ns - BlocksProduced: 210 - CloseTime: 41.758us - ExecTime: 451.210ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 36.966ms - ProcessConjunctTime: 70.105us - ProjectionTime: 6.471ms - RowsProduced: 674.788K (674788) - RowsRead: 674.788K (674788) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 322.650ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 406.450ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [62.418ms, ] - PerScannerRowsRead: [674.79K, ] - PerScannerWaitTime: [322.650ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 59.854ms - MemoryUsage: - FreeBlocks: 8.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 899.918us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.661us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 56.339ms - ScannerCtxSchedTime: 322.648ms - ScannerFilterTime: 354.694us - ScannerGetBlockTime: 61.911ms - ScannerInitTime: 36.788ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.29us - BlockConditionsFilteredBloomFilterTime: 5.332us - BlockConditionsFilteredDictTime: 1.446us - BlockConditionsFilteredTime: 102.453us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 67.455us - BlockInitSeekCount: 33 - BlockInitSeekTime: 35.939us - BlockInitTime: 236.718us - BlockLoadTime: 61.565ms - BlocksLoad: 382 - CachedPagesNum: 982 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 756 - FirstReadSeekTime: 193.94us - FirstReadTime: 4.904ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.861us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 39.237ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 13.539ms - OutputIndexResultColumnTimer: 43.3us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 13.524us - TotalPagesNum: 982 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.582ms PipelineXTask (index=8):(Active: 140.37ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 139.644ms - CloseTime: 53.50us - GetBlockTime: 12.321ms - OpenTime: 177.710us - PrepareTime: 154.507us - SinkTime: 126.206ms - GetBlockCounter: 254 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.477ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.519ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 151 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.371us - CompressTime: 0ns - ExecTime: 126.169ms - InputRows: 597.567K (597567) - LocalBytesSent: 20.52 MB - LocalSendTime: 1.131ms - LocalSentRows: 597.567K (597567) - MemoryUsage: - PeakMemoryUsage: 36.53 MB - MergeBlockTime: 0ns - OpenTime: 56.60us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 597.567K (597567) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 94.330ms - SplitBlockHashComputeTime: 22.414ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 480ns - BlocksProduced: 254 - CloseTime: 36.727us - ExecTime: 465.998ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 245.160us - ProcessConjunctTime: 59.810us - ProjectionTime: 27.545ms - RowsProduced: 597.567K (597567) - RowsRead: 597.567K (597567) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.29ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 425.906ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [190.467ms, ] - PerScannerRowsRead: [597.57K, ] - PerScannerWaitTime: [205.029ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 188.744ms - MemoryUsage: - FreeBlocks: 10.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.500ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.415us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.275ms - ScannerCtxSchedTime: 205.25ms - ScannerFilterTime: 329.213us - ScannerGetBlockTime: 189.984ms - ScannerInitTime: 85.203us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.579us - BlockConditionsFilteredBloomFilterTime: 5.228us - BlockConditionsFilteredDictTime: 1.436us - BlockConditionsFilteredTime: 109.681us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.523us - BlockInitSeekCount: 25 - BlockInitSeekTime: 223.39us - BlockInitTime: 438.916us - BlockLoadTime: 190.369ms - BlocksLoad: 260 - CachedPagesNum: 678 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 150.454us - FirstReadTime: 128.942ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.548us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 54.518ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.802ms - OutputIndexResultColumnTimer: 45.43us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 13.955us - TotalPagesNum: 678 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.639ms PipelineXTask (index=9):(Active: 348.382ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 347.981ms - CloseTime: 67.584us - GetBlockTime: 1.582ms - OpenTime: 148.27us - PrepareTime: 178.565us - SinkTime: 345.161ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 95.412ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.123ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 168 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.763us - CompressTime: 0ns - ExecTime: 345.128ms - InputRows: 674.15K (674150) - LocalBytesSent: 23.15 MB - LocalSendTime: 1.283ms - LocalSentRows: 674.15K (674150) - MemoryUsage: - PeakMemoryUsage: 42.70 MB - MergeBlockTime: 0ns - OpenTime: 60.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 674.15K (674150) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 309.963ms - SplitBlockHashComputeTime: 24.628ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 660ns - BlocksProduced: 285 - CloseTime: 50.849us - ExecTime: 249.497ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 227.544us - ProcessConjunctTime: 55.987us - ProjectionTime: 13.210ms - RowsProduced: 674.15K (674150) - RowsRead: 674.15K (674150) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 110.710ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 234.476ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [89.917ms, ] - PerScannerRowsRead: [674.15K, ] - PerScannerWaitTime: [110.710ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 88.228ms - MemoryUsage: - FreeBlocks: 10.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.771ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.438us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.137ms - ScannerCtxSchedTime: 110.691ms - ScannerFilterTime: 318.326us - ScannerGetBlockTime: 89.461ms - ScannerInitTime: 63.988us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.863us - BlockConditionsFilteredBloomFilterTime: 4.999us - BlockConditionsFilteredDictTime: 1.688us - BlockConditionsFilteredTime: 115.244us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 78.232us - BlockInitSeekCount: 26 - BlockInitSeekTime: 211.681us - BlockInitTime: 423.196us - BlockLoadTime: 90.85ms - BlocksLoad: 291 - CachedPagesNum: 765 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 576 - FirstReadSeekTime: 134.255us - FirstReadTime: 3.995ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.994us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 79.234ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.956ms - OutputIndexResultColumnTimer: 34.949us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 23.525us - TotalPagesNum: 765 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.583ms PipelineXTask (index=10):(Active: 169.572ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 136.304ms - CloseTime: 49.480us - GetBlockTime: 371.46us - OpenTime: 33.55ms - PrepareTime: 151.953us - SinkTime: 102.675ms - GetBlockCounter: 56 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 22.893ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.273ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.162us - CompressTime: 0ns - ExecTime: 102.735ms - InputRows: 191.383K (191383) - LocalBytesSent: 6.57 MB - LocalSendTime: 257.894us - LocalSentRows: 191.383K (191383) - MemoryUsage: - PeakMemoryUsage: 11.25 MB - MergeBlockTime: 0ns - OpenTime: 60.278us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 191.383K (191383) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.741ms - SplitBlockHashComputeTime: 5.637ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 720ns - BlocksProduced: 56 - CloseTime: 29.846us - ExecTime: 277.207ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 33.113ms - ProcessConjunctTime: 77.44us - ProjectionTime: 6.653ms - RowsProduced: 191.383K (191383) - RowsRead: 191.383K (191383) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 222.364ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 237.39ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [6.105ms, ] - PerScannerRowsRead: [191.38K, ] - PerScannerWaitTime: [222.364ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.886ms - MemoryUsage: - FreeBlocks: 7.89 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.141ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.267us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.656ms - ScannerCtxSchedTime: 222.363ms - ScannerFilterTime: 56.719us - ScannerGetBlockTime: 6.22ms - ScannerInitTime: 32.931ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 363ns - BlockConditionsFilteredBloomFilterTime: 808ns - BlockConditionsFilteredDictTime: 337ns - BlockConditionsFilteredTime: 13.538us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.909us - BlockInitSeekCount: 9 - BlockInitSeekTime: 5.941us - BlockInitTime: 44.28us - BlockLoadTime: 6.905ms - BlocksLoad: 57 - CachedPagesNum: 141 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 112 - FirstReadSeekTime: 48.934us - FirstReadTime: 829.147us - IOTimer: 0ns - InvertedIndexFilterTime: 1.629us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.649ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 717.350us - OutputIndexResultColumnTimer: 7.269us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.718us - TotalPagesNum: 141 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 452.692us PipelineXTask (index=11):(Active: 132.976ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 132.647ms - CloseTime: 60.142us - GetBlockTime: 414.875us - OpenTime: 105.720us - PrepareTime: 156.661us - SinkTime: 131.951ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 22.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.800ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.590us - CompressTime: 0ns - ExecTime: 132.10ms - InputRows: 200.87K (200870) - LocalBytesSent: 6.90 MB - LocalSendTime: 295.325us - LocalSentRows: 200.87K (200870) - MemoryUsage: - PeakMemoryUsage: 12.81 MB - MergeBlockTime: 0ns - OpenTime: 65.559us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 200.87K (200870) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.29ms - SplitBlockHashComputeTime: 60.711ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=311. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 556ns - BlocksProduced: 60 - CloseTime: 46.402us - ExecTime: 169.42ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 164.302us - ProcessConjunctTime: 38.234us - ProjectionTime: 51.811ms - RowsProduced: 200.87K (200870) - RowsRead: 200.87K (200870) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.550ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 116.604ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [54.183ms, ] - PerScannerRowsRead: [200.87K, ] - PerScannerWaitTime: [8.550ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 53.952ms - MemoryUsage: - FreeBlocks: 8.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.308ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.832us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.234ms - ScannerCtxSchedTime: 8.548ms - ScannerFilterTime: 69.394us - ScannerGetBlockTime: 54.81ms - ScannerInitTime: 40.215us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 542ns - BlockConditionsFilteredBloomFilterTime: 1.470us - BlockConditionsFilteredDictTime: 514ns - BlockConditionsFilteredTime: 27.291us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.157us - BlockInitSeekCount: 8 - BlockInitSeekTime: 14.663us - BlockInitTime: 65.999us - BlockLoadTime: 55.76ms - BlocksLoad: 61 - CachedPagesNum: 153 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 120 - FirstReadSeekTime: 39.869us - FirstReadTime: 773.30us - IOTimer: 0ns - InvertedIndexFilterTime: 1.682us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 52.497ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 897.475us - OutputIndexResultColumnTimer: 7.100us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.280us - TotalPagesNum: 153 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 605.915us Fragment 32: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.596ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.392ms - CloseTime: 37.503us - GetBlockTime: 992.710us - OpenTime: 9.368us - PrepareTime: 150.540us - SinkTime: 346.529us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 417.432ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.774us - CompressTime: 0ns - ExecTime: 430.114us - InputRows: 770 - LocalBytesSent: 53.40 KB - LocalSendTime: 121.38us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 75.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 103.234us - SplitBlockHashComputeTime: 31.363us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.13us - ExecTime: 929.827us - InitProbeSideTime: 307.266us - JoinFilterTimer: 532ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 26.818us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.427us - ProbeFindNextTime: 0ns - ProbeRows: 11.302K (11302) - ProbeTime: 721.146us - ProbeWhenBuildSideOutputTime: 56.470us - ProbeWhenProbeSideOutputTime: 21.253us - ProbeWhenProcessHashTableTime: 38.30us - ProbeWhenSearchHashTableTime: 186.553us - ProjectionTime: 113.384us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 11.723us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.665us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 15.882us - ProjectionTime: 0ns - RowsProduced: 11.302K (11302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=2):(Active: 1.491ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.303ms - CloseTime: 26.238us - GetBlockTime: 940.931us - OpenTime: 9.591us - PrepareTime: 146.549us - SinkTime: 309.895us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.456ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.381ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.867us - CompressTime: 0ns - ExecTime: 392.889us - InputRows: 756 - LocalBytesSent: 52.21 KB - LocalSendTime: 116.906us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 74.356us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 76.902us - SplitBlockHashComputeTime: 31.18us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 7.725us - ExecTime: 860.357us - InitProbeSideTime: 291.658us - JoinFilterTimer: 647ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.72us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.287us - ProbeFindNextTime: 0ns - ProbeRows: 11.224K (11224) - ProbeTime: 664.765us - ProbeWhenBuildSideOutputTime: 38.163us - ProbeWhenProbeSideOutputTime: 27.959us - ProbeWhenProcessHashTableTime: 27.137us - ProbeWhenSearchHashTableTime: 176.422us - ProjectionTime: 128.62us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 288.131ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 5.635us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.751us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 18.778us - ProjectionTime: 0ns - RowsProduced: 11.224K (11224) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=4):(Active: 1.979ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.789ms - CloseTime: 42.213us - GetBlockTime: 1.310ms - OpenTime: 8.324us - PrepareTime: 133.406us - SinkTime: 405.612us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.926ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 214.631ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.473us - CompressTime: 0ns - ExecTime: 480.201us - InputRows: 770 - LocalBytesSent: 53.27 KB - LocalSendTime: 95.39us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 62.65us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 131.992us - SplitBlockHashComputeTime: 68.192us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.62us - ExecTime: 1.209ms - InitProbeSideTime: 357.212us - JoinFilterTimer: 859ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.304us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.115us - ProbeFindNextTime: 0ns - ProbeRows: 11.264K (11264) - ProbeTime: 967.746us - ProbeWhenBuildSideOutputTime: 125.189us - ProbeWhenProbeSideOutputTime: 35.210us - ProbeWhenProcessHashTableTime: 69.662us - ProbeWhenSearchHashTableTime: 217.992us - ProjectionTime: 147.216us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 328.851ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 11.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 135.53us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 12.90us - ProjectionTime: 0ns - RowsProduced: 11.264K (11264) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=6):(Active: 1.529ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.333ms - CloseTime: 38.0us - GetBlockTime: 983.601us - OpenTime: 5.973us - PrepareTime: 146.819us - SinkTime: 298.546us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.482ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.157ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.833us - CompressTime: 0ns - ExecTime: 391.225us - InputRows: 785 - LocalBytesSent: 54.44 KB - LocalSendTime: 87.120us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 82.768us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 75.810us - SplitBlockHashComputeTime: 36.442us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 9.608us - ExecTime: 931.929us - InitProbeSideTime: 287.827us - JoinFilterTimer: 515ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 14.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.933us - ProbeFindNextTime: 0ns - ProbeRows: 11.219K (11219) - ProbeTime: 695.692us - ProbeWhenBuildSideOutputTime: 52.803us - ProbeWhenProbeSideOutputTime: 22.731us - ProbeWhenProcessHashTableTime: 33.800us - ProbeWhenSearchHashTableTime: 180.397us - ProjectionTime: 154.118us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 366.844ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 12.803us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.808us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 10.694us - ProjectionTime: 0ns - RowsProduced: 11.219K (11219) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=8):(Active: 1.417ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.189ms - CloseTime: 72.405us - GetBlockTime: 894.666us - OpenTime: 6.123us - PrepareTime: 143.838us - SinkTime: 253.647us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.335ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.383ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.614us - CompressTime: 0ns - ExecTime: 340.97us - InputRows: 738 - LocalBytesSent: 50.88 KB - LocalSendTime: 70.568us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 71.456us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 67.588us - SplitBlockHashComputeTime: 30.379us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 41.526us - ExecTime: 854.550us - InitProbeSideTime: 276.30us - JoinFilterTimer: 369ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 19.849us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.64us - ProbeFindNextTime: 0ns - ProbeRows: 11.191K (11191) - ProbeTime: 644.348us - ProbeWhenBuildSideOutputTime: 46.720us - ProbeWhenProbeSideOutputTime: 15.112us - ProbeWhenProcessHashTableTime: 36.822us - ProbeWhenSearchHashTableTime: 180.8us - ProjectionTime: 101.179us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 367.3ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 10.850us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.118us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 14.648us - ProjectionTime: 0ns - RowsProduced: 11.191K (11191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=10):(Active: 1.410ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.236ms - CloseTime: 28.134us - GetBlockTime: 943.593us - OpenTime: 7.163us - PrepareTime: 133.513us - SinkTime: 253.883us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.360ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 418.799ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.828us - CompressTime: 0ns - ExecTime: 332.228us - InputRows: 784 - LocalBytesSent: 54.29 KB - LocalSendTime: 59.576us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 70.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 77.757us - SplitBlockHashComputeTime: 30.570us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 7.131us - ExecTime: 877.489us - InitProbeSideTime: 261.60us - JoinFilterTimer: 428ns - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 18.385us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.45us - ProbeFindNextTime: 0ns - ProbeRows: 11.277K (11277) - ProbeTime: 721.941us - ProbeWhenBuildSideOutputTime: 57.407us - ProbeWhenProbeSideOutputTime: 21.608us - ProbeWhenProcessHashTableTime: 88.662us - ProbeWhenSearchHashTableTime: 208.416us - ProjectionTime: 82.245us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.256us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 14.423us - ProjectionTime: 0ns - RowsProduced: 11.277K (11277) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=12):(Active: 1.606ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.405ms - CloseTime: 37.1us - GetBlockTime: 1.31ms - OpenTime: 15.927us - PrepareTime: 141.389us - SinkTime: 312.361us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.560ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 346.745ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.600us - CompressTime: 0ns - ExecTime: 394.428us - InputRows: 765 - LocalBytesSent: 53.06 KB - LocalSendTime: 87.694us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 69.40us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 96.112us - SplitBlockHashComputeTime: 33.204us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 9.304us - ExecTime: 960.24us - InitProbeSideTime: 290.758us - JoinFilterTimer: 551ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 24.401us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.349us - ProbeFindNextTime: 0ns - ProbeRows: 11.194K (11194) - ProbeTime: 738.465us - ProbeWhenBuildSideOutputTime: 52.622us - ProbeWhenProbeSideOutputTime: 20.165us - ProbeWhenProcessHashTableTime: 41.919us - ProbeWhenSearchHashTableTime: 193.354us - ProjectionTime: 133.525us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.567us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 17.383us - ProjectionTime: 0ns - RowsProduced: 11.194K (11194) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=14):(Active: 1.658ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.456ms - CloseTime: 46.624us - GetBlockTime: 1.45ms - OpenTime: 10.430us - PrepareTime: 139.858us - SinkTime: 353.503us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.602ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.147ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.601us - CompressTime: 0ns - ExecTime: 435.255us - InputRows: 758 - LocalBytesSent: 52.18 KB - LocalSendTime: 112.685us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 79.132us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 83.468us - SplitBlockHashComputeTime: 36.853us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 12.50us - ExecTime: 961.553us - InitProbeSideTime: 317.309us - JoinFilterTimer: 531ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 23.591us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.723us - ProbeFindNextTime: 0ns - ProbeRows: 11.356K (11356) - ProbeTime: 759.398us - ProbeWhenBuildSideOutputTime: 60.953us - ProbeWhenProbeSideOutputTime: 29.742us - ProbeWhenProcessHashTableTime: 50.848us - ProbeWhenSearchHashTableTime: 185.499us - ProjectionTime: 117.465us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 530.751ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 17.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 141.95us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 13.102us - ProjectionTime: 0ns - RowsProduced: 11.356K (11356) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s424ms PipelineXTask (index=16):(Active: 1.629ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.455ms - CloseTime: 36.677us - GetBlockTime: 1.78ms - OpenTime: 5.139us - PrepareTime: 128.72us - SinkTime: 327.307us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.535ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.166us - CompressTime: 0ns - ExecTime: 409.72us - InputRows: 776 - LocalBytesSent: 53.82 KB - LocalSendTime: 82.41us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 70.970us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 89.985us - SplitBlockHashComputeTime: 40.416us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.615us - ExecTime: 1.11ms - InitProbeSideTime: 326.131us - JoinFilterTimer: 870ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.937us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.328us - ProbeFindNextTime: 0ns - ProbeRows: 11.303K (11303) - ProbeTime: 781.470us - ProbeWhenBuildSideOutputTime: 65.312us - ProbeWhenProbeSideOutputTime: 22.259us - ProbeWhenProcessHashTableTime: 40.210us - ProbeWhenSearchHashTableTime: 184.91us - ProjectionTime: 135.279us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 378.454ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 7.974us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 105.337us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 13.581us - ProjectionTime: 0ns - RowsProduced: 11.303K (11303) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s424ms PipelineXTask (index=18):(Active: 1.245ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.80ms - CloseTime: 26.981us - GetBlockTime: 795.816us - OpenTime: 6.512us - PrepareTime: 126.90us - SinkTime: 248.20us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.210ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 420.85ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.79us - CompressTime: 0ns - ExecTime: 319.937us - InputRows: 777 - LocalBytesSent: 53.81 KB - LocalSendTime: 50.24us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 64.872us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 87.161us - SplitBlockHashComputeTime: 41.93us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 10.423us - ExecTime: 757.536us - InitProbeSideTime: 255.43us - JoinFilterTimer: 511ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 13.896us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.716us - ProbeFindNextTime: 0ns - ProbeRows: 11.176K (11176) - ProbeTime: 619.331us - ProbeWhenBuildSideOutputTime: 66.164us - ProbeWhenProbeSideOutputTime: 15.789us - ProbeWhenProcessHashTableTime: 33.801us - ProbeWhenSearchHashTableTime: 176.560us - ProjectionTime: 79.279us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 5.897us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.849us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 16.304us - ProjectionTime: 0ns - RowsProduced: 11.176K (11176) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s436ms PipelineXTask (index=20):(Active: 1.558ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.358ms - CloseTime: 36.924us - GetBlockTime: 990.608us - OpenTime: 8.698us - PrepareTime: 140.806us - SinkTime: 307.799us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.503ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.621ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.986us - CompressTime: 0ns - ExecTime: 397.997us - InputRows: 754 - LocalBytesSent: 52.22 KB - LocalSendTime: 91.335us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 78.549us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 85.273us - SplitBlockHashComputeTime: 32.152us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.31us - ExecTime: 946.168us - InitProbeSideTime: 333.592us - JoinFilterTimer: 467ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 17.775us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.290us - ProbeFindNextTime: 0ns - ProbeRows: 11.312K (11312) - ProbeTime: 739.856us - ProbeWhenBuildSideOutputTime: 53.93us - ProbeWhenProbeSideOutputTime: 19.953us - ProbeWhenProcessHashTableTime: 37.790us - ProbeWhenSearchHashTableTime: 180.120us - ProjectionTime: 134.637us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 302.48ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 8.999us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.904us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 14.85us - ProjectionTime: 0ns - RowsProduced: 11.312K (11312) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s430ms PipelineXTask (index=22):(Active: 1.312ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.125ms - CloseTime: 36.702us - GetBlockTime: 849.592us - OpenTime: 7.169us - PrepareTime: 136.956us - SinkTime: 235.179us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.266ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.983ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.644us - CompressTime: 0ns - ExecTime: 306.835us - InputRows: 767 - LocalBytesSent: 52.97 KB - LocalSendTime: 58.795us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 61.207us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 71.524us - SplitBlockHashComputeTime: 29.431us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.765us - ExecTime: 775.819us - InitProbeSideTime: 259.325us - JoinFilterTimer: 604ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 16.64us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.844us - ProbeFindNextTime: 0ns - ProbeRows: 11.3K (11300) - ProbeTime: 620.924us - ProbeWhenBuildSideOutputTime: 44.330us - ProbeWhenProbeSideOutputTime: 14.872us - ProbeWhenProcessHashTableTime: 37.4us - ProbeWhenSearchHashTableTime: 188.615us - ProjectionTime: 89.950us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 302.172ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.867us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.285us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 464.00 KB - MemoryUsage: - Blocks: 464.00 KB - PeakMemoryUsage: 464.00 KB - OpenTime: 15.444us - ProjectionTime: 0ns - RowsProduced: 11.3K (11300) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s430ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 373.837us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 278.619us - CloseTime: 16.701us - GetBlockTime: 21.33us - OpenTime: 3.424us - PrepareTime: 69.587us - SinkTime: 228.66us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 348.822us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.103ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.755us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.917us - BuildTableInsertTime: 63.183us - BuildTableTime: 67.673us - CloseTime: 0ns - ExecTime: 255.576us - InputRows: 770 - MemoryUsage: - BuildBlocks: 46.63 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 74.39 KB - OpenTime: 28.180us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.901us - RuntimeFilterComputeTime: 36.653us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.705us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 20.845us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s705ms PipelineXTask (index=3):(Active: 315.603us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 248.227us - CloseTime: 12.600us - GetBlockTime: 22.935us - OpenTime: 2.18us - PrepareTime: 48.18us - SinkTime: 200.223us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 294.85us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.307ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.635us - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.177us - BuildTableInsertTime: 46.702us - BuildTableTime: 50.571us - CloseTime: 0ns - ExecTime: 214.268us - InputRows: 756 - MemoryUsage: - BuildBlocks: 45.57 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 73.26 KB - OpenTime: 15.203us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.294us - RuntimeFilterComputeTime: 33.331us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.820us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 12.565us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s706ms PipelineXTask (index=5):(Active: 390.744us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 315.213us - CloseTime: 17.395us - GetBlockTime: 17.644us - OpenTime: 1.772us - PrepareTime: 51.7us - SinkTime: 273.902us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 364.785us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.146ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.598us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 99.227us - BuildTableInsertTime: 69.378us - BuildTableTime: 73.934us - CloseTime: 0ns - ExecTime: 291.510us - InputRows: 770 - MemoryUsage: - BuildBlocks: 46.50 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 74.26 KB - OpenTime: 18.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.725us - RuntimeFilterComputeTime: 28.550us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.865us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 8.178us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s706ms PipelineXTask (index=7):(Active: 280.635us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 177.87us - CloseTime: 5.177us - GetBlockTime: 14.660us - OpenTime: 2.737us - PrepareTime: 87.936us - SinkTime: 139.423us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.788us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.789ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 938ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.858us - BuildTableInsertTime: 44.984us - BuildTableTime: 46.547us - CloseTime: 0ns - ExecTime: 180.685us - InputRows: 785 - MemoryUsage: - BuildBlocks: 47.54 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 75.38 KB - OpenTime: 41.464us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.346us - RuntimeFilterComputeTime: 23.668us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.414us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.182us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 76.06 KB - OpenTime: 19.875us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s707ms PipelineXTask (index=9):(Active: 223.989us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 162.978us - CloseTime: 6.999us - GetBlockTime: 25.944us - OpenTime: 2.424us - PrepareTime: 46.838us - SinkTime: 119.114us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 210.867us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.350ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.68us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.470us - BuildTableInsertTime: 44.718us - BuildTableTime: 45.748us - CloseTime: 0ns - ExecTime: 134.476us - InputRows: 738 - MemoryUsage: - BuildBlocks: 44.39 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 15.365us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.153us - RuntimeFilterComputeTime: 17.797us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.511us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.620us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 16.166us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s708ms PipelineXTask (index=11):(Active: 189.719us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 128.711us - CloseTime: 3.177us - GetBlockTime: 11.245us - OpenTime: 1.956us - PrepareTime: 51.104us - SinkTime: 96.266us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 180.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.950ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 626ns - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.160us - BuildTableInsertTime: 32.931us - BuildTableTime: 34.78us - CloseTime: 0ns - ExecTime: 109.669us - InputRows: 784 - MemoryUsage: - BuildBlocks: 47.40 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 75.23 KB - OpenTime: 13.488us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.125us - RuntimeFilterComputeTime: 16.870us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.563us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.460us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 76.06 KB - OpenTime: 11.8us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s708ms PipelineXTask (index=13):(Active: 339.212us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 257.724us - CloseTime: 15.260us - GetBlockTime: 22.75us - OpenTime: 2.958us - PrepareTime: 58.826us - SinkTime: 207.736us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 315.943us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.510ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.779us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.844us - BuildTableInsertTime: 61.691us - BuildTableTime: 65.478us - CloseTime: 0ns - ExecTime: 222.641us - InputRows: 765 - MemoryUsage: - BuildBlocks: 46.33 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 74.07 KB - OpenTime: 16.216us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.252us - RuntimeFilterComputeTime: 32.910us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.841us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.440us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 13.627us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s709ms PipelineXTask (index=15):(Active: 470.277us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 377.876us - CloseTime: 16.746us - GetBlockTime: 18.74us - OpenTime: 2.395us - PrepareTime: 68.29us - SinkTime: 337.897us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 446.515us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 258.760ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.853us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.884us - BuildTableInsertTime: 44.624us - BuildTableTime: 48.315us - CloseTime: 0ns - ExecTime: 352.939us - InputRows: 758 - MemoryUsage: - BuildBlocks: 45.52 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 73.22 KB - OpenTime: 15.530us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 155.20us - RuntimeFilterComputeTime: 48.558us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.982us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.225us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 18.9us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s710ms PipelineXTask (index=17):(Active: 268.305us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 185.732us - CloseTime: 10.548us - GetBlockTime: 15.131us - OpenTime: 2.64us - PrepareTime: 64.903us - SinkTime: 152.62us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 251.118us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.105ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.148us - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.475us - BuildTableInsertTime: 40.782us - BuildTableTime: 43.385us - CloseTime: 0ns - ExecTime: 173.55us - InputRows: 776 - MemoryUsage: - BuildBlocks: 47.00 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 74.79 KB - OpenTime: 21.347us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.621us - RuntimeFilterComputeTime: 19.402us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.741us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.917us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 76.06 KB - OpenTime: 18.217us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s710ms PipelineXTask (index=19):(Active: 305.50us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 235.771us - CloseTime: 13.601us - GetBlockTime: 16.157us - OpenTime: 3.231us - PrepareTime: 47.752us - SinkTime: 197.982us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 284.837us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.927ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.612us - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.900us - BuildTableInsertTime: 49.203us - BuildTableTime: 52.40us - CloseTime: 0ns - ExecTime: 210.637us - InputRows: 777 - MemoryUsage: - BuildBlocks: 46.98 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 74.78 KB - OpenTime: 13.373us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.182us - RuntimeFilterComputeTime: 37.342us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.854us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.842us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 76.06 KB - OpenTime: 12.420us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s717ms PipelineXTask (index=21):(Active: 231.304us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 169.692us - CloseTime: 4.3us - GetBlockTime: 11.166us - OpenTime: 3.219us - PrepareTime: 49.668us - SinkTime: 138.785us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 220.783us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.473ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 994ns - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.511us - BuildTableInsertTime: 47.511us - BuildTableTime: 49.294us - CloseTime: 0ns - ExecTime: 156.22us - InputRows: 754 - MemoryUsage: - BuildBlocks: 45.59 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 73.27 KB - OpenTime: 17.542us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.707us - RuntimeFilterComputeTime: 19.417us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.358us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.554us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 8.691us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s715ms PipelineXTask (index=23):(Active: 192.789us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.748us - CloseTime: 4.219us - GetBlockTime: 11.891us - OpenTime: 2.247us - PrepareTime: 51.932us - SinkTime: 102.368us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 182.964us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.991ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 628ns - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.532us - BuildTableInsertTime: 36.719us - BuildTableTime: 38.318us - CloseTime: 0ns - ExecTime: 119.220us - InputRows: 767 - MemoryUsage: - BuildBlocks: 46.23 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 73.97 KB - OpenTime: 17.280us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 998ns - RuntimeFilterComputeTime: 18.489us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.630us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 68.06 KB - OpenTime: 14.866us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s716ms Fragment 33: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.572ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.440ms - CloseTime: 24.435us - GetBlockTime: 1.786ms - OpenTime: 2.397us - PrepareTime: 99.151us - SinkTime: 1.617ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.539ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.524ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.35us - CompressTime: 0ns - ExecTime: 1.709ms - InputRows: 16.956K (16956) - LocalBytesSent: 484.30 KB - LocalSendTime: 106.696us - LocalSentRows: 16.956K (16956) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 74.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.956K (16956) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 850.343us - SplitBlockHashComputeTime: 396.918us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 759ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.785ms - GetResultsTime: 1.86ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 190.754us - HashTableSize: 16.956K (16956) - InsertKeysToColumnTime: 566.773us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.247us - ProjectionTime: 657.708us - RowsProduced: 16.956K (16956) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s423ms PipelineXTask (index=2):(Active: 3.189ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.39ms - CloseTime: 18.26us - GetBlockTime: 1.604ms - OpenTime: 4.228us - PrepareTime: 122.219us - SinkTime: 1.391ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.736ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.235us - CompressTime: 0ns - ExecTime: 1.493ms - InputRows: 16.94K (16940) - LocalBytesSent: 483.94 KB - LocalSendTime: 78.705us - LocalSentRows: 16.94K (16940) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 89.786us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.94K (16940) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 698.89us - SplitBlockHashComputeTime: 365.853us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 731ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.583ms - GetResultsTime: 888.547us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 123.592us - HashTableSize: 16.94K (16940) - InsertKeysToColumnTime: 526.517us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.873us - ProjectionTime: 660.524us - RowsProduced: 16.94K (16940) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s408ms PipelineXTask (index=4):(Active: 3.250ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.123ms - CloseTime: 18.514us - GetBlockTime: 1.542ms - OpenTime: 2.723us - PrepareTime: 100.142us - SinkTime: 1.545ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.198ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.906ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.920us - CompressTime: 0ns - ExecTime: 1.621ms - InputRows: 16.746K (16746) - LocalBytesSent: 478.26 KB - LocalSendTime: 68.759us - LocalSentRows: 16.746K (16746) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 62.814us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.746K (16746) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 813.465us - SplitBlockHashComputeTime: 371.93us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 748ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.538ms - GetResultsTime: 848.183us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 106.553us - HashTableSize: 16.746K (16746) - InsertKeysToColumnTime: 505.321us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.679us - ProjectionTime: 641.63us - RowsProduced: 16.746K (16746) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s423ms PipelineXTask (index=6):(Active: 3.559ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.418ms - CloseTime: 21.13us - GetBlockTime: 1.709ms - OpenTime: 4.515us - PrepareTime: 108.588us - SinkTime: 1.661ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.528ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.386ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.765us - CompressTime: 0ns - ExecTime: 1.756ms - InputRows: 16.932K (16932) - LocalBytesSent: 483.75 KB - LocalSendTime: 79.909us - LocalSentRows: 16.932K (16932) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 80.499us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.932K (16932) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 847.945us - SplitBlockHashComputeTime: 344.255us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 809ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.704ms - GetResultsTime: 947.70us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 105.522us - HashTableSize: 16.932K (16932) - InsertKeysToColumnTime: 552.839us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.484us - ProjectionTime: 709.26us - RowsProduced: 16.932K (16932) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s484ms PipelineXTask (index=8):(Active: 3.501ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.352ms - CloseTime: 30.127us - GetBlockTime: 1.699ms - OpenTime: 3.137us - PrepareTime: 110.14us - SinkTime: 1.615ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.463ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.26ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.686us - CompressTime: 0ns - ExecTime: 1.721ms - InputRows: 16.778K (16778) - LocalBytesSent: 479.24 KB - LocalSendTime: 86.543us - LocalSentRows: 16.778K (16778) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 81.250us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.778K (16778) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 841.865us - SplitBlockHashComputeTime: 347.65us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 764ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.689ms - GetResultsTime: 976.386us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 114.686us - HashTableSize: 16.778K (16778) - InsertKeysToColumnTime: 575.27us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.978us - ProjectionTime: 664.634us - RowsProduced: 16.778K (16778) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s476ms PipelineXTask (index=10):(Active: 4.137ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.18ms - CloseTime: 20.29us - GetBlockTime: 2.122ms - OpenTime: 1.997us - PrepareTime: 90.368us - SinkTime: 1.843ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.107ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.328ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.868us - CompressTime: 0ns - ExecTime: 1.919ms - InputRows: 16.715K (16715) - LocalBytesSent: 477.47 KB - LocalSendTime: 104.796us - LocalSentRows: 16.715K (16715) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 63.561us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.715K (16715) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 969.69us - SplitBlockHashComputeTime: 461.235us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 776ns - DeserializeAndMergeTime: 0ns - ExecTime: 2.113ms - GetResultsTime: 1.191ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 154.46us - HashTableSize: 16.715K (16715) - InsertKeysToColumnTime: 671.557us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.553us - ProjectionTime: 849.174us - RowsProduced: 16.715K (16715) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s491ms PipelineXTask (index=12):(Active: 4.16ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.882ms - CloseTime: 24.165us - GetBlockTime: 1.937ms - OpenTime: 3.189us - PrepareTime: 101.500us - SinkTime: 1.891ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.984ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.139ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.586us - CompressTime: 0ns - ExecTime: 1.978ms - InputRows: 17.052K (17052) - LocalBytesSent: 487.09 KB - LocalSendTime: 82.420us - LocalSentRows: 17.052K (17052) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 70.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 17.052K (17052) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 964.87us - SplitBlockHashComputeTime: 351.437us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 1.120us - DeserializeAndMergeTime: 0ns - ExecTime: 1.928ms - GetResultsTime: 1.121ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 118.273us - HashTableSize: 17.052K (17052) - InsertKeysToColumnTime: 657.174us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.327us - ProjectionTime: 735.478us - RowsProduced: 17.052K (17052) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s416ms PipelineXTask (index=14):(Active: 3.738ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.598ms - CloseTime: 22.477us - GetBlockTime: 1.773ms - OpenTime: 2.508us - PrepareTime: 109.524us - SinkTime: 1.788ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.652ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.579ms DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.684us - CompressTime: 0ns - ExecTime: 1.881ms - InputRows: 16.999K (16999) - LocalBytesSent: 485.64 KB - LocalSendTime: 81.324us - LocalSentRows: 16.999K (16999) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 77.14us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.999K (16999) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 965.180us - SplitBlockHashComputeTime: 368.370us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 875ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.748ms - GetResultsTime: 1.60ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 121.854us - HashTableSize: 16.999K (16999) - InsertKeysToColumnTime: 674.584us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.327us - ProjectionTime: 650.547us - RowsProduced: 16.999K (16999) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s512ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 32.877ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.789ms - CloseTime: 22.274us - GetBlockTime: 120.79us - OpenTime: 2.822us - PrepareTime: 56.870us - SinkTime: 32.612ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.438ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.233ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 9.75us - DeserializeAndMergeTime: 12.912ms - ExecTime: 32.638ms - ExprTime: 0ns - HashTableComputeTime: 19.512ms - HashTableEmplaceTime: 18.764ms - HashTableInputCount: 16.956K (16956) - InputRows: 16.956K (16956) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 32.591ms - OpenTime: 20.1us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 11.67us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.671us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.16 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 19.891us - ProjectionTime: 0ns - RowsProduced: 16.956K (16956) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s356ms PipelineXTask (index=3):(Active: 11.70ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 10.991ms - CloseTime: 17.798us - GetBlockTime: 97.164us - OpenTime: 2.939us - PrepareTime: 53.417us - SinkTime: 10.843ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.39ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.2ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 4.842us - DeserializeAndMergeTime: 4.541ms - ExecTime: 10.862ms - ExprTime: 0ns - HashTableComputeTime: 6.206ms - HashTableEmplaceTime: 5.538ms - HashTableInputCount: 16.94K (16940) - InputRows: 16.94K (16940) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 10.823ms - OpenTime: 18.385us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.446us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.540us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.06 MB - MemoryUsage: - Blocks: 988.00 KB - PeakMemoryUsage: 989.29 KB - OpenTime: 16.620us - ProjectionTime: 0ns - RowsProduced: 16.94K (16940) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s312ms PipelineXTask (index=5):(Active: 37.104ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.992ms - CloseTime: 23.41us - GetBlockTime: 91.682us - OpenTime: 2.147us - PrepareTime: 74.183us - SinkTime: 36.839ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.328ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.520ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 10.142us - DeserializeAndMergeTime: 16.800ms - ExecTime: 36.886ms - ExprTime: 0ns - HashTableComputeTime: 19.849ms - HashTableEmplaceTime: 19.142ms - HashTableInputCount: 16.746K (16746) - InputRows: 16.746K (16746) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 36.812ms - OpenTime: 41.850us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.413us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.114us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.98 MB - MemoryUsage: - Blocks: 1.01 MB - PeakMemoryUsage: 1.01 MB - OpenTime: 12.756us - ProjectionTime: 0ns - RowsProduced: 16.746K (16746) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s314ms PipelineXTask (index=7):(Active: 11.968ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.860ms - CloseTime: 42.402us - GetBlockTime: 76.750us - OpenTime: 3.251us - PrepareTime: 56.433us - SinkTime: 11.723ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.899ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.144ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 16.535us - DeserializeAndMergeTime: 4.708ms - ExecTime: 11.754ms - ExprTime: 0ns - HashTableComputeTime: 6.921ms - HashTableEmplaceTime: 6.269ms - HashTableInputCount: 16.932K (16932) - InputRows: 16.932K (16932) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 11.709ms - OpenTime: 16.274us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 24.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.251us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.04 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 17.702us - ProjectionTime: 0ns - RowsProduced: 16.932K (16932) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s375ms PipelineXTask (index=9):(Active: 23.455ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.370ms - CloseTime: 28.794us - GetBlockTime: 83.782us - OpenTime: 2.558us - PrepareTime: 49.145us - SinkTime: 23.244ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.416ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.470ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 12.546us - DeserializeAndMergeTime: 4.532ms - ExecTime: 23.272ms - ExprTime: 0ns - HashTableComputeTime: 18.610ms - HashTableEmplaceTime: 17.935ms - HashTableInputCount: 16.778K (16778) - InputRows: 16.778K (16778) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 23.228ms - OpenTime: 18.24us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 14.633us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.282us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.96 MB - MemoryUsage: - Blocks: 1020.00 KB - PeakMemoryUsage: 1021.50 KB - OpenTime: 19.968us - ProjectionTime: 0ns - RowsProduced: 16.778K (16778) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s376ms PipelineXTask (index=11):(Active: 12.147ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.45ms - CloseTime: 36.789us - GetBlockTime: 89.576us - OpenTime: 3.607us - PrepareTime: 56.850us - SinkTime: 11.904ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.98ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.98ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 14.178us - DeserializeAndMergeTime: 5.310ms - ExecTime: 11.934ms - ExprTime: 0ns - HashTableComputeTime: 6.506ms - HashTableEmplaceTime: 5.863ms - HashTableInputCount: 16.715K (16715) - InputRows: 16.715K (16715) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 11.889ms - OpenTime: 17.362us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 21.299us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 123.321us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.43 MB - MemoryUsage: - Blocks: 1.46 MB - PeakMemoryUsage: 1.47 MB - OpenTime: 17.944us - ProjectionTime: 0ns - RowsProduced: 16.715K (16715) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s361ms PipelineXTask (index=13):(Active: 12.488ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.410ms - CloseTime: 18.624us - GetBlockTime: 122.923us - OpenTime: 3.932us - PrepareTime: 49.681us - SinkTime: 12.216ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.280ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 6.43us - DeserializeAndMergeTime: 5.115ms - ExecTime: 12.234ms - ExprTime: 0ns - HashTableComputeTime: 6.995ms - HashTableEmplaceTime: 6.284ms - HashTableInputCount: 17.052K (17052) - InputRows: 17.052K (17052) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 12.195ms - OpenTime: 16.274us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 6 - BytesReceived: 0.00 - CloseTime: 11.91us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 144.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.03 MB - MemoryUsage: - Blocks: 966.50 KB - PeakMemoryUsage: 967.79 KB - OpenTime: 21.580us - ProjectionTime: 0ns - RowsProduced: 17.052K (17052) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s376ms PipelineXTask (index=15):(Active: 13.616ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 13.522ms - CloseTime: 20.315us - GetBlockTime: 79.26us - OpenTime: 3.262us - PrepareTime: 65.512us - SinkTime: 13.395ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.353ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 3.519us - DeserializeAndMergeTime: 5.704ms - ExecTime: 13.430ms - ExprTime: 0ns - HashTableComputeTime: 7.475ms - HashTableEmplaceTime: 6.676ms - HashTableInputCount: 16.999K (16999) - InputRows: 16.999K (16999) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 13.376ms - OpenTime: 35.286us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 15.399us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.289us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.98 MB - MemoryUsage: - Blocks: 1020.00 KB - PeakMemoryUsage: 1021.29 KB - OpenTime: 14.172us - ProjectionTime: 0ns - RowsProduced: 16.999K (16999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s379ms Fragment 34: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.294ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 554.899us - CloseTime: 69.342us - GetBlockTime: 51.872us - OpenTime: 402.43us - PrepareTime: 252.694us - SinkTime: 62.531us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.212ms - WaitBfTime: 1s18ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 699.574ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.189us - CompressTime: 0ns - ExecTime: 150.68us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.600us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.876us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 423ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.447us - DeserializeAndMergeTime: 0ns - ExecTime: 41.210us - ExprTime: 0ns - GetResultsTime: 10.567us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 113ns - HashTableSize: 0 - InsertKeysToColumnTime: 380ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.932us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.117us - SerializeKeyTime: 0ns - SerializeResultTime: 14.161us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.742us - BlocksProduced: 0 - CloseTime: 40.653us - ExecTime: 168.466ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 486.976us - ProcessConjunctTime: 130.823us - ProjectionTime: 6.437us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 100.8ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 167.898ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [5.975us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [100.008ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 67.800ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 104ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.882ms - ScannerCtxSchedTime: 100.6ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.903us - ScannerInitTime: 226.941us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.33us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.356us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 25.100us - BlockInitTime: 112.567us - BlockLoadTime: 67.243ms - BlocksLoad: 384 - CachedPagesNum: 192 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 59.99ms - FirstReadSeekCount: 381 - FirstReadSeekTime: 82.518us - FirstReadTime: 6.634ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.381us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 41.612us - OutputIndexResultColumnTimer: 24.482us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 192 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 905.526us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 375.954us - CloseTime: 92.346us - GetBlockTime: 81.663us - OpenTime: 189.956us - PrepareTime: 235.847us - SinkTime: 74.972us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 800.998us - WaitBfTime: 1s18ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 843.768ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.191us - CompressTime: 0ns - ExecTime: 157.194us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.838us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 65.237us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 382ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.812us - DeserializeAndMergeTime: 0ns - ExecTime: 52.838us - ExprTime: 0ns - GetResultsTime: 11.39us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 147ns - HashTableSize: 0 - InsertKeysToColumnTime: 913ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.415us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.832us - SerializeKeyTime: 0ns - SerializeResultTime: 15.522us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.989us - BlocksProduced: 0 - CloseTime: 69.286us - ExecTime: 472.116ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 256.180us - ProcessConjunctTime: 72.312us - ProjectionTime: 2.40us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 111.77ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 471.727ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [21.576us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [111.077ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 360.539ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 165ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.554ms - ScannerCtxSchedTime: 102.844ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.472us - ScannerInitTime: 91.34us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.460us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.258us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 31 - BlockInitSeekTime: 40.394us - BlockInitTime: 218.894us - BlockLoadTime: 348.694ms - BlocksLoad: 410 - CachedPagesNum: 207 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 231.115ms - FirstReadSeekCount: 406 - FirstReadSeekTime: 219.294us - FirstReadTime: 6.89ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.670us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 155.43us - OutputIndexResultColumnTimer: 92.71ms - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 207 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 20.629ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.59ms - CloseTime: 52.620us - GetBlockTime: 19.713ms - OpenTime: 259.585us - PrepareTime: 247.646us - SinkTime: 58.272us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 944.676us - WaitBfTime: 680.824ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 444.942ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.370us - CompressTime: 0ns - ExecTime: 147.456us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.595us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 77.704us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 479ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.649us - DeserializeAndMergeTime: 0ns - ExecTime: 19.698ms - ExprTime: 0ns - GetResultsTime: 19.662ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 125ns - HashTableSize: 0 - InsertKeysToColumnTime: 603ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.955us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 5.754us - SerializeKeyTime: 0ns - SerializeResultTime: 19.668ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.158us - BlocksProduced: 0 - CloseTime: 33.830us - ExecTime: 207.498ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 318.360us - ProcessConjunctTime: 66.320us - ProjectionTime: 1.631us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.434ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 207.104ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [6.052us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [7.434ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 199.581ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 65.77ms - ScannerCtxSchedTime: 7.430ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.180us - ScannerInitTime: 152.278us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.231us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.961us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 44.512us - BlockInitTime: 234.694us - BlockLoadTime: 198.820ms - BlocksLoad: 345 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 148.862ms - FirstReadSeekCount: 341 - FirstReadSeekTime: 124.128us - FirstReadTime: 47.889ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.506us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 83.99us - OutputIndexResultColumnTimer: 28.445us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 731.851us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 288.624us - CloseTime: 77.257us - GetBlockTime: 62.649us - OpenTime: 120.219us - PrepareTime: 237.753us - SinkTime: 80.283us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 644.225us - WaitBfTime: 684.86ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 483.908ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.781us - CompressTime: 0ns - ExecTime: 149.939us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 32.594us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 54.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 532ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.757us - DeserializeAndMergeTime: 0ns - ExecTime: 45.449us - ExprTime: 0ns - GetResultsTime: 11.921us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 96ns - HashTableSize: 0 - InsertKeysToColumnTime: 667ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.593us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.384us - SerializeKeyTime: 0ns - SerializeResultTime: 17.709us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.459us - BlocksProduced: 0 - CloseTime: 55.345us - ExecTime: 160.914ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 187.712us - ProcessConjunctTime: 31.130us - ProjectionTime: 1.459us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.272ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 160.629ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [7.010us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.272ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 152.270ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 150ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.279ms - ScannerCtxSchedTime: 8.269ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.100us - ScannerInitTime: 68.316us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.53us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.250us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 40.480us - BlockInitTime: 209.27us - BlockLoadTime: 151.592ms - BlocksLoad: 382 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 144.79ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 136.348us - FirstReadTime: 5.163ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.716us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 69.878us - OutputIndexResultColumnTimer: 30.391us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 629.831us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 213.679us - CloseTime: 68.671us - GetBlockTime: 31.698us - OpenTime: 120.797us - PrepareTime: 217.712us - SinkTime: 34.814us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 551.659us - WaitBfTime: 681.223ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 404.75ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.376us - CompressTime: 0ns - ExecTime: 118.918us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.608us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 57.103us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 370ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.90us - DeserializeAndMergeTime: 0ns - ExecTime: 38.544us - ExprTime: 0ns - GetResultsTime: 7.924us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 120ns - HashTableSize: 0 - InsertKeysToColumnTime: 890ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.50us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.822us - SerializeKeyTime: 0ns - SerializeResultTime: 10.421us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.133us - BlocksProduced: 0 - CloseTime: 37.986us - ExecTime: 269.308ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 192.120us - ProcessConjunctTime: 25.306us - ProjectionTime: 18.485us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.744ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 269.41ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [6.124us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.744ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 260.219ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 90ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.625ms - ScannerCtxSchedTime: 8.742ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.888us - ScannerInitTime: 68.823us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 838ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.133us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 62.529ms - BlockInitTime: 62.638ms - BlockLoadTime: 259.709ms - BlocksLoad: 260 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 192.910ms - FirstReadSeekCount: 257 - FirstReadSeekTime: 86.322us - FirstReadTime: 3.112ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.264us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 29.517us - OutputIndexResultColumnTimer: 15.636us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.222ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 536.251us - CloseTime: 70.548us - GetBlockTime: 55.506us - OpenTime: 378.39us - PrepareTime: 227.798us - SinkTime: 57.954us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.133ms - WaitBfTime: 758.697ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.240ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.495us - CompressTime: 0ns - ExecTime: 139.293us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.626us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.513us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 405ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.500us - DeserializeAndMergeTime: 0ns - ExecTime: 38.559us - ExprTime: 0ns - GetResultsTime: 10.19us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 158ns - HashTableSize: 0 - InsertKeysToColumnTime: 413ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.944us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.447us - SerializeKeyTime: 0ns - SerializeResultTime: 13.875us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.642us - BlocksProduced: 0 - CloseTime: 45.216us - ExecTime: 224.960ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 429.361us - ProcessConjunctTime: 131.983us - ProjectionTime: 1.423us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 96.742ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 224.447ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [6.003us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [96.742ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 127.635ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 152ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.476ms - ScannerCtxSchedTime: 96.740ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.331us - ScannerInitTime: 195.978us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.85us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.872us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 566.595us - BlockInitTime: 657.632us - BlockLoadTime: 127.115ms - BlocksLoad: 291 - CachedPagesNum: 150 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 122.145ms - FirstReadSeekCount: 288 - FirstReadSeekTime: 85.891us - FirstReadTime: 3.240ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.240us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 35.744us - OutputIndexResultColumnTimer: 16.971us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 150 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 353.533ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 337.254ms - CloseTime: 15.784ms - GetBlockTime: 327.852ms - OpenTime: 233.439us - PrepareTime: 251.832us - SinkTime: 8.919ms - GetBlockCounter: 72 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 138.705ms - WaitBfTime: 703.655ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 971.956ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.250us - CompressTime: 0ns - ExecTime: 8.988ms - InputRows: 66.693K (66693) - LocalBytesSent: 5.45 MB - LocalSendTime: 200.528us - LocalSentRows: 66.693K (66693) - MemoryUsage: - PeakMemoryUsage: 8.02 MB - MergeBlockTime: 0ns - OpenTime: 64.724us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 66.693K (66693) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.596ms - SplitBlockHashComputeTime: 1.425ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 17 - BuildConvertToPartitionedTime: 0ns - BuildTime: 310.947ms - CloseTime: 15.686ms - DeserializeAndMergeTime: 0ns - ExecTime: 342.844ms - ExprTime: 118.975us - GetResultsTime: 15.883ms - HashTableComputeTime: 48.854ms - HashTableEmplaceTime: 41.441ms - HashTableInputCount: 227.011K (227011) - HashTableIterateTime: 444.845us - HashTableSize: 66.693K (66693) - InsertKeysToColumnTime: 1.822ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 3.00 MB - PeakMemoryUsage: 10.81 MB - SerializeKeyArena: 7.81 MB - MergeTime: 0ns - OpenTime: 24.855us - ProjectionTime: 0ns - RowsProduced: 66.693K (66693) - SerializeDataTime: 13.312ms - SerializeKeyTime: 0ns - SerializeResultTime: 15.928ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.260us - BlocksProduced: 56 - CloseTime: 79.347us - ExecTime: 401.746ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 296.974us - ProcessConjunctTime: 84.637us - ProjectionTime: 143.814ms - RowsProduced: 227.011K (227011) - RowsRead: 227.011K (227011) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.413ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 256.927ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [45.234ms, ] - PerScannerRowsRead: [227.01K, ] - PerScannerWaitTime: [67.413ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 44.927ms - MemoryUsage: - FreeBlocks: 10.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.312ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.712us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.18ms - ScannerCtxSchedTime: 67.408ms - ScannerFilterTime: 49.232us - ScannerGetBlockTime: 45.153ms - ScannerInitTime: 111.712us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 321ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.494us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 14.386us - BlockInitTime: 60.420us - BlockLoadTime: 45.987ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 36.788ms - FirstReadSeekCount: 56 - FirstReadSeekTime: 43.228us - FirstReadTime: 850.896us - IOTimer: 0ns - InvertedIndexFilterTime: 837ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.821ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 53.51us - OutputIndexResultColumnTimer: 4.927us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 279.9ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 262.797ms - CloseTime: 15.791ms - GetBlockTime: 251.142ms - OpenTime: 184.79us - PrepareTime: 226.877us - SinkTime: 11.168ms - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 158.941ms - WaitBfTime: 684.315ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s309ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.122us - CompressTime: 0ns - ExecTime: 11.237ms - InputRows: 68.425K (68425) - LocalBytesSent: 5.75 MB - LocalSendTime: 182.226us - LocalSentRows: 68.425K (68425) - MemoryUsage: - PeakMemoryUsage: 8.62 MB - MergeBlockTime: 0ns - OpenTime: 64.881us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 68.425K (68425) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.394ms - SplitBlockHashComputeTime: 1.658ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 17 - BuildConvertToPartitionedTime: 0ns - BuildTime: 229.680ms - CloseTime: 15.706ms - DeserializeAndMergeTime: 0ns - ExecTime: 266.100ms - ExprTime: 145.770us - GetResultsTime: 19.677ms - HashTableComputeTime: 48.552ms - HashTableEmplaceTime: 40.412ms - HashTableInputCount: 242.95K (242950) - HashTableIterateTime: 609.495us - HashTableSize: 68.425K (68425) - InsertKeysToColumnTime: 2.40ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 3.00 MB - PeakMemoryUsage: 10.81 MB - SerializeKeyArena: 7.81 MB - MergeTime: 0ns - OpenTime: 23.670us - ProjectionTime: 0ns - RowsProduced: 68.425K (68425) - SerializeDataTime: 16.701ms - SerializeKeyTime: 0ns - SerializeResultTime: 19.718ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=304. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 92, type = minmax), RuntimeFilter: (id = 93, type = bloomfilter), - PushDownPredicates: [{ADD_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.239us - BlocksProduced: 60 - CloseTime: 64.993us - ExecTime: 211.736ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 239.630us - ProcessConjunctTime: 38.125us - ProjectionTime: 53.172ms - RowsProduced: 242.95K (242950) - RowsRead: 242.95K (242950) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.965ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.573ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [51.916ms, ] - PerScannerRowsRead: [242.95K, ] - PerScannerWaitTime: [8.965ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.570ms - MemoryUsage: - FreeBlocks: 10.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 788.344us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.392us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.412ms - ScannerCtxSchedTime: 8.962ms - ScannerFilterTime: 53.702us - ScannerGetBlockTime: 51.824ms - ScannerInitTime: 113.412us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 185ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.72us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 18.431us - BlockInitTime: 41.11us - BlockLoadTime: 52.194ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.428ms - FirstReadSeekCount: 60 - FirstReadSeekTime: 34.131us - FirstReadTime: 859.722us - IOTimer: 0ns - InvertedIndexFilterTime: 401ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.379ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 51.851us - OutputIndexResultColumnTimer: 4.988us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 35: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.658ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.431ms - CloseTime: 51.582us - GetBlockTime: 1.786ms - OpenTime: 8.740us - PrepareTime: 157.175us - SinkTime: 481.543us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.581ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 481.31ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.973us - CompressTime: 0ns - ExecTime: 566.219us - InputRows: 770 - LocalBytesSent: 46.63 KB - LocalSendTime: 114.242us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 70.467us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 149.935us - SplitBlockHashComputeTime: 73.466us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.800us - ExecTime: 1.641ms - InitProbeSideTime: 360.311us - JoinFilterTimer: 1.539us - MemoryUsage: - PeakMemoryUsage: 28.00 KB - ProbeKeyArena: 28.00 KB - OpenTime: 22.263us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.114us - ProbeFindNextTime: 0ns - ProbeRows: 7.872K (7872) - ProbeTime: 1.188ms - ProbeWhenBuildSideOutputTime: 188.86us - ProbeWhenProbeSideOutputTime: 49.60us - ProbeWhenProcessHashTableTime: 42.482us - ProbeWhenSearchHashTableTime: 249.199us - ProjectionTime: 269.894us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.897us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 313.50 KB - MemoryUsage: - Blocks: 87.00 KB - PeakMemoryUsage: 87.00 KB - OpenTime: 21.355us - ProjectionTime: 0ns - RowsProduced: 7.872K (7872) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s222ms PipelineXTask (index=2):(Active: 2.428ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.197ms - CloseTime: 32.147us - GetBlockTime: 1.669ms - OpenTime: 6.900us - PrepareTime: 185.751us - SinkTime: 394.25us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 451.394ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.153us - CompressTime: 0ns - ExecTime: 471.565us - InputRows: 756 - LocalBytesSent: 45.57 KB - LocalSendTime: 67.339us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 79.525us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 756 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 155.104us - SplitBlockHashComputeTime: 58.490us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.679us - ExecTime: 1.505ms - InitProbeSideTime: 351.102us - JoinFilterTimer: 1.188us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 16.217us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.874us - ProbeFindNextTime: 0ns - ProbeRows: 7.878K (7878) - ProbeTime: 1.101ms - ProbeWhenBuildSideOutputTime: 178.26us - ProbeWhenProbeSideOutputTime: 46.807us - ProbeWhenProcessHashTableTime: 21.495us - ProbeWhenSearchHashTableTime: 251.703us - ProjectionTime: 249.436us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.704us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 163.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 348.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 29.354us - ProjectionTime: 0ns - RowsProduced: 7.878K (7878) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s252ms PipelineXTask (index=4):(Active: 1.802ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.608ms - CloseTime: 47.739us - GetBlockTime: 1.189ms - OpenTime: 5.810us - PrepareTime: 133.374us - SinkTime: 327.367us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.730ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 453.624ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.377us - CompressTime: 0ns - ExecTime: 408.75us - InputRows: 770 - LocalBytesSent: 46.50 KB - LocalSendTime: 68.313us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 76.545us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 110.768us - SplitBlockHashComputeTime: 58.975us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 31.880us - ExecTime: 1.101ms - InitProbeSideTime: 281.1us - JoinFilterTimer: 780ns - MemoryUsage: - PeakMemoryUsage: 28.00 KB - ProbeKeyArena: 28.00 KB - OpenTime: 13.571us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.299us - ProbeFindNextTime: 0ns - ProbeRows: 7.906K (7906) - ProbeTime: 845.887us - ProbeWhenBuildSideOutputTime: 136.44us - ProbeWhenProbeSideOutputTime: 33.991us - ProbeWhenProcessHashTableTime: 26.993us - ProbeWhenSearchHashTableTime: 215.989us - ProjectionTime: 120.530us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.7us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 12.617us - ProjectionTime: 0ns - RowsProduced: 7.906K (7906) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s251ms PipelineXTask (index=6):(Active: 1.928ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.730ms - CloseTime: 29.13us - GetBlockTime: 1.291ms - OpenTime: 5.54us - PrepareTime: 156.853us - SinkTime: 345.18us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.880ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 455.399ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.954us - CompressTime: 0ns - ExecTime: 433.110us - InputRows: 785 - LocalBytesSent: 47.54 KB - LocalSendTime: 59.29us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 79.264us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 129.394us - SplitBlockHashComputeTime: 60.838us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.764us - ExecTime: 1.164ms - InitProbeSideTime: 313.501us - JoinFilterTimer: 884ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 23.133us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.780us - ProbeFindNextTime: 0ns - ProbeRows: 7.858K (7858) - ProbeTime: 908.395us - ProbeWhenBuildSideOutputTime: 149.453us - ProbeWhenProbeSideOutputTime: 38.702us - ProbeWhenProcessHashTableTime: 19.393us - ProbeWhenSearchHashTableTime: 221.22us - ProjectionTime: 140.386us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.617us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.660us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 18.812us - ProjectionTime: 0ns - RowsProduced: 7.858K (7858) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s250ms PipelineXTask (index=8):(Active: 2.272ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.98ms - CloseTime: 20.999us - GetBlockTime: 1.596ms - OpenTime: 8.629us - PrepareTime: 136.746us - SinkTime: 365.886us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.231ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 464.930ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.806us - CompressTime: 0ns - ExecTime: 433.252us - InputRows: 738 - LocalBytesSent: 44.39 KB - LocalSendTime: 55.253us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 64.673us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 738 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 148.137us - SplitBlockHashComputeTime: 56.148us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.233us - ExecTime: 1.445ms - InitProbeSideTime: 355.918us - JoinFilterTimer: 1.66us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 18.11us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.841us - ProbeFindNextTime: 0ns - ProbeRows: 7.714K (7714) - ProbeTime: 1.58ms - ProbeWhenBuildSideOutputTime: 151.992us - ProbeWhenProbeSideOutputTime: 39.558us - ProbeWhenProcessHashTableTime: 17.570us - ProbeWhenSearchHashTableTime: 229.22us - ProjectionTime: 229.934us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 348.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 18.376us - ProjectionTime: 0ns - RowsProduced: 7.714K (7714) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s241ms PipelineXTask (index=10):(Active: 1.920ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.699ms - CloseTime: 51.536us - GetBlockTime: 1.278ms - OpenTime: 9.329us - PrepareTime: 153.544us - SinkTime: 314.815us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 459.71ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.363us - CompressTime: 0ns - ExecTime: 402.350us - InputRows: 784 - LocalBytesSent: 47.40 KB - LocalSendTime: 43.276us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 82.101us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 110.284us - SplitBlockHashComputeTime: 52.299us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 34.917us - ExecTime: 1.192ms - InitProbeSideTime: 303.70us - JoinFilterTimer: 982ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 17.151us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.682us - ProbeFindNextTime: 0ns - ProbeRows: 7.845K (7845) - ProbeTime: 909.920us - ProbeWhenBuildSideOutputTime: 121.520us - ProbeWhenProbeSideOutputTime: 36.591us - ProbeWhenProcessHashTableTime: 16.872us - ProbeWhenSearchHashTableTime: 239.951us - ProjectionTime: 137.239us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.88us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 15.94us - ProjectionTime: 0ns - RowsProduced: 7.845K (7845) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s248ms PipelineXTask (index=12):(Active: 1.840ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.652ms - CloseTime: 49.222us - GetBlockTime: 1.247ms - OpenTime: 6.819us - PrepareTime: 125.900us - SinkTime: 302.555us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.773ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 460.238ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.398us - CompressTime: 0ns - ExecTime: 365.797us - InputRows: 765 - LocalBytesSent: 46.33 KB - LocalSendTime: 46.643us - LocalSentRows: 765 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 69.287us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 765 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 107.911us - SplitBlockHashComputeTime: 51.180us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 19.107us - ExecTime: 1.149ms - InitProbeSideTime: 328.859us - JoinFilterTimer: 1.2us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 11.791us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.647us - ProbeFindNextTime: 0ns - ProbeRows: 7.905K (7905) - ProbeTime: 895.682us - ProbeWhenBuildSideOutputTime: 139.213us - ProbeWhenProbeSideOutputTime: 39.299us - ProbeWhenProcessHashTableTime: 17.343us - ProbeWhenSearchHashTableTime: 225.457us - ProjectionTime: 139.95us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.672us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 105.24us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 11.431us - ProjectionTime: 0ns - RowsProduced: 7.905K (7905) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s247ms PipelineXTask (index=14):(Active: 2.49ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.848ms - CloseTime: 48.738us - GetBlockTime: 1.414ms - OpenTime: 7.694us - PrepareTime: 139.930us - SinkTime: 322.274us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.971ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 477.90ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.516us - CompressTime: 0ns - ExecTime: 399.100us - InputRows: 758 - LocalBytesSent: 45.52 KB - LocalSendTime: 40.800us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 71.400us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 758 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 127.792us - SplitBlockHashComputeTime: 52.255us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 33.31us - ExecTime: 1.332ms - InitProbeSideTime: 334.235us - JoinFilterTimer: 920ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 21.629us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.601us - ProbeFindNextTime: 0ns - ProbeRows: 7.873K (7873) - ProbeTime: 962.992us - ProbeWhenBuildSideOutputTime: 141.902us - ProbeWhenProbeSideOutputTime: 39.771us - ProbeWhenProcessHashTableTime: 17.428us - ProbeWhenSearchHashTableTime: 226.877us - ProjectionTime: 184.521us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.784us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.893us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 348.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 18.694us - ProjectionTime: 0ns - RowsProduced: 7.873K (7873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s231ms PipelineXTask (index=16):(Active: 1.757ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.583ms - CloseTime: 24.829us - GetBlockTime: 1.208ms - OpenTime: 6.341us - PrepareTime: 137.18us - SinkTime: 296.25us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.713ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 463.237ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.391us - CompressTime: 0ns - ExecTime: 361.436us - InputRows: 776 - LocalBytesSent: 47.00 KB - LocalSendTime: 51.754us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 60.790us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 114.372us - SplitBlockHashComputeTime: 42.583us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.563us - ExecTime: 1.103ms - InitProbeSideTime: 323.419us - JoinFilterTimer: 736ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 16.133us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.103us - ProbeFindNextTime: 0ns - ProbeRows: 7.873K (7873) - ProbeTime: 876.758us - ProbeWhenBuildSideOutputTime: 138.505us - ProbeWhenProbeSideOutputTime: 44.85us - ProbeWhenProcessHashTableTime: 19.632us - ProbeWhenSearchHashTableTime: 220.281us - ProjectionTime: 127.641us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.102us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 114.322us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 18.628us - ProjectionTime: 0ns - RowsProduced: 7.873K (7873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s245ms PipelineXTask (index=18):(Active: 10.657ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 10.456ms - CloseTime: 41.778us - GetBlockTime: 1.403ms - OpenTime: 6.552us - PrepareTime: 146.866us - SinkTime: 8.952ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.29ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 465.129ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.922us - CompressTime: 0ns - ExecTime: 9.36ms - InputRows: 777 - LocalBytesSent: 46.98 KB - LocalSendTime: 72.878us - LocalSentRows: 777 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 68.434us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 777 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.714ms - SplitBlockHashComputeTime: 59.476us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.475us - ExecTime: 1.243ms - InitProbeSideTime: 319.536us - JoinFilterTimer: 795ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 18.28us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.934us - ProbeFindNextTime: 0ns - ProbeRows: 7.896K (7896) - ProbeTime: 942.338us - ProbeWhenBuildSideOutputTime: 137.729us - ProbeWhenProbeSideOutputTime: 40.598us - ProbeWhenProcessHashTableTime: 29.586us - ProbeWhenSearchHashTableTime: 233.902us - ProjectionTime: 155.588us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.191us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 323.50 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 25.220us - ProjectionTime: 0ns - RowsProduced: 7.896K (7896) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s244ms PipelineXTask (index=20):(Active: 1.809ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.636ms - CloseTime: 25.224us - GetBlockTime: 1.230ms - OpenTime: 5.833us - PrepareTime: 134.567us - SinkTime: 314.872us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 474.491ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.871us - CompressTime: 0ns - ExecTime: 379.598us - InputRows: 754 - LocalBytesSent: 45.59 KB - LocalSendTime: 62.644us - LocalSentRows: 754 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 60.34us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 754 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 105.462us - SplitBlockHashComputeTime: 56.314us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.193us - ExecTime: 1.122ms - InitProbeSideTime: 306.641us - JoinFilterTimer: 744ns - MemoryUsage: - PeakMemoryUsage: 36.00 KB - ProbeKeyArena: 36.00 KB - OpenTime: 11.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.826us - ProbeFindNextTime: 0ns - ProbeRows: 8.003K (8003) - ProbeTime: 856.817us - ProbeWhenBuildSideOutputTime: 118.226us - ProbeWhenProbeSideOutputTime: 35.528us - ProbeWhenProcessHashTableTime: 18.415us - ProbeWhenSearchHashTableTime: 212.356us - ProjectionTime: 153.106us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.174us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 19.60us - ProjectionTime: 0ns - RowsProduced: 8.003K (8003) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s244ms PipelineXTask (index=22):(Active: 1.954ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.766ms - CloseTime: 39.799us - GetBlockTime: 1.362ms - OpenTime: 4.773us - PrepareTime: 137.724us - SinkTime: 315.506us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.897ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 490.675ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.79us - CompressTime: 0ns - ExecTime: 409.676us - InputRows: 767 - LocalBytesSent: 46.23 KB - LocalSendTime: 42.407us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 82.206us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 767 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 110.687us - SplitBlockHashComputeTime: 68.593us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.618us - ExecTime: 1.220ms - InitProbeSideTime: 339.895us - JoinFilterTimer: 930ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 9.319us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.916us - ProbeFindNextTime: 0ns - ProbeRows: 7.933K (7933) - ProbeTime: 935.896us - ProbeWhenBuildSideOutputTime: 140.437us - ProbeWhenProbeSideOutputTime: 41.135us - ProbeWhenProcessHashTableTime: 20.972us - ProbeWhenSearchHashTableTime: 217.713us - ProjectionTime: 160.73us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=301): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.410us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 133.881us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 319.00 KB - MemoryUsage: - Blocks: 116.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 18.3us - ProjectionTime: 0ns - RowsProduced: 7.933K (7933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s229ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 299.608us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 206.333us - CloseTime: 12.837us - GetBlockTime: 18.576us - OpenTime: 2.701us - PrepareTime: 72.433us - SinkTime: 151.207us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 279.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 156.870ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.446us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.173us - BuildTableInsertTime: 41.696us - BuildTableTime: 45.710us - CloseTime: 0ns - ExecTime: 182.329us - InputRows: 770 - MemoryUsage: - BuildBlocks: 39.86 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 67.62 KB - OpenTime: 31.594us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.934us - RuntimeFilterComputeTime: 34.536us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.16us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.958us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.31 KB - OpenTime: 18.308us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.540ms PipelineXTask (index=3):(Active: 327.809us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 252.278us - CloseTime: 14.831us - GetBlockTime: 16.872us - OpenTime: 5.6us - PrepareTime: 50.931us - SinkTime: 203.982us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 303.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 342.128ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.786us - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 61.423us - BuildTableInsertTime: 65.213us - BuildTableTime: 73.14us - CloseTime: 0ns - ExecTime: 219.111us - InputRows: 756 - MemoryUsage: - BuildBlocks: 38.92 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 66.61 KB - OpenTime: 16.154us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.480us - RuntimeFilterComputeTime: 22.240us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.991us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.31 KB - OpenTime: 13.814us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.527ms PipelineXTask (index=5):(Active: 240.170us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 156.619us - CloseTime: 12.468us - GetBlockTime: 10.627us - OpenTime: 2.652us - PrepareTime: 63.637us - SinkTime: 123.454us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 220.13us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 342.427ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.81us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.632us - BuildTableInsertTime: 46.876us - BuildTableTime: 48.511us - CloseTime: 0ns - ExecTime: 145.916us - InputRows: 770 - MemoryUsage: - BuildBlocks: 39.73 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 67.49 KB - OpenTime: 22.648us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.682us - RuntimeFilterComputeTime: 19.694us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.673us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.74us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.31 KB - OpenTime: 18.194us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.503ms PipelineXTask (index=7):(Active: 413.587us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 342.293us - CloseTime: 6.979us - GetBlockTime: 15.75us - OpenTime: 2.789us - PrepareTime: 55.961us - SinkTime: 304.748us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 396.891us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 157.122ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 906ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.294us - BuildTableInsertTime: 230.332us - BuildTableTime: 232.716us - CloseTime: 0ns - ExecTime: 318.235us - InputRows: 785 - MemoryUsage: - BuildBlocks: 40.64 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 68.48 KB - OpenTime: 13.946us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.508us - RuntimeFilterComputeTime: 15.961us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.633us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.31 KB - OpenTime: 15.336us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.503ms PipelineXTask (index=9):(Active: 256.343us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 177.136us - CloseTime: 12.871us - GetBlockTime: 10.254us - OpenTime: 3.756us - PrepareTime: 57.745us - SinkTime: 141.10us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.609us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.605ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.450us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.570us - BuildTableInsertTime: 41.911us - BuildTableTime: 44.990us - CloseTime: 0ns - ExecTime: 158.222us - InputRows: 738 - MemoryUsage: - BuildBlocks: 37.91 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 65.51 KB - OpenTime: 17.734us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.402us - RuntimeFilterComputeTime: 18.203us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.919us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.652us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.31 KB - OpenTime: 9.800us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.632ms PipelineXTask (index=11):(Active: 472.695us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 394.525us - CloseTime: 13.362us - GetBlockTime: 15.168us - OpenTime: 3.706us - PrepareTime: 55.900us - SinkTime: 330.86us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 449.538us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 553.95ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.474us - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 37.930us - BuildTableInsertTime: 46.343us - BuildTableTime: 51.885us - CloseTime: 0ns - ExecTime: 342.376us - InputRows: 784 - MemoryUsage: - BuildBlocks: 40.51 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 68.34 KB - OpenTime: 13.550us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 159.786us - RuntimeFilterComputeTime: 35.332us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.911us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.924us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.31 KB - OpenTime: 15.986us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 897.637ms PipelineXTask (index=13):(Active: 343.224us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 266.910us - CloseTime: 16.274us - GetBlockTime: 13.468us - OpenTime: 3.266us - PrepareTime: 50.911us - SinkTime: 215.892us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 315.902us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.125ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.574us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.218us - BuildTableInsertTime: 96.132us - BuildTableTime: 100.748us - CloseTime: 0ns - ExecTime: 229.874us - InputRows: 765 - MemoryUsage: - BuildBlocks: 39.61 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 67.34 KB - OpenTime: 15.25us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.793us - RuntimeFilterComputeTime: 32.31us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.845us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 15.124us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 896.987ms PipelineXTask (index=15):(Active: 270.684us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 192.859us - CloseTime: 8.651us - GetBlockTime: 10.535us - OpenTime: 2.444us - PrepareTime: 62.739us - SinkTime: 163.633us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 255.993us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.929ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.585us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.55us - BuildTableInsertTime: 51.911us - BuildTableTime: 56.547us - CloseTime: 0ns - ExecTime: 193.480us - InputRows: 758 - MemoryUsage: - BuildBlocks: 38.86 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 66.56 KB - OpenTime: 30.234us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.817us - RuntimeFilterComputeTime: 33.687us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.101us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.660us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.31 KB - OpenTime: 9.307us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 775.75ms PipelineXTask (index=17):(Active: 228.439us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 146.868us - CloseTime: 6.796us - GetBlockTime: 8.49us - OpenTime: 2.360us - PrepareTime: 68.194us - SinkTime: 121.199us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 214.853us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.125ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 903ns - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.957us - BuildTableInsertTime: 43.178us - BuildTableTime: 45.729us - CloseTime: 0ns - ExecTime: 149.788us - InputRows: 776 - MemoryUsage: - BuildBlocks: 40.18 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 67.97 KB - OpenTime: 28.514us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.456us - RuntimeFilterComputeTime: 21.169us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.349us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.31 KB - OpenTime: 10.119us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 775.73ms PipelineXTask (index=19):(Active: 205.662us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 139.673us - CloseTime: 4.776us - GetBlockTime: 6.515us - OpenTime: 2.288us - PrepareTime: 55.104us - SinkTime: 116.793us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.15us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.272ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 776ns - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.455us - BuildTableInsertTime: 44.594us - BuildTableTime: 47.233us - CloseTime: 0ns - ExecTime: 132.340us - InputRows: 777 - MemoryUsage: - BuildBlocks: 40.15 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 67.95 KB - OpenTime: 15.724us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.339us - RuntimeFilterComputeTime: 21.206us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.31 KB - OpenTime: 15.984us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 775.72ms PipelineXTask (index=21):(Active: 265.188us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 189.359us - CloseTime: 7.986us - GetBlockTime: 14.387us - OpenTime: 2.492us - PrepareTime: 59.642us - SinkTime: 146.489us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 247.83us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.327ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 838ns - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.488us - BuildTableInsertTime: 62.262us - BuildTableTime: 64.689us - CloseTime: 0ns - ExecTime: 157.27us - InputRows: 754 - MemoryUsage: - BuildBlocks: 38.96 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 66.65 KB - OpenTime: 10.888us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.160us - RuntimeFilterComputeTime: 29.3us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.890us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.706us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 17.591us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 896.996ms PipelineXTask (index=23):(Active: 342.949us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 266.433us - CloseTime: 17.626us - GetBlockTime: 20.275us - OpenTime: 3.870us - PrepareTime: 49.974us - SinkTime: 210.495us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 314.236us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 306.267ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.247us - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.243us - BuildTableInsertTime: 86.158us - BuildTableTime: 90.854us - CloseTime: 0ns - ExecTime: 222.637us - InputRows: 767 - MemoryUsage: - BuildBlocks: 39.49 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 67.23 KB - OpenTime: 13.383us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.592us - RuntimeFilterComputeTime: 31.980us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 15.74us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 48.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 15.722us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 894.787ms Fragment 36: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.61ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.905ms - CloseTime: 20.203us - GetBlockTime: 1.37ms - OpenTime: 3.650us - PrepareTime: 125.10us - SinkTime: 834.750us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.31ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.879ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.682us - CompressTime: 0ns - ExecTime: 939.469us - InputRows: 7.985K (7985) - LocalBytesSent: 228.59 KB - LocalSendTime: 93.597us - LocalSentRows: 7.985K (7985) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 89.604us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.985K (7985) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 357.53us - SplitBlockHashComputeTime: 171.855us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 1.83us - DeserializeAndMergeTime: 0ns - ExecTime: 1.39ms - GetResultsTime: 576.987us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 65.42us - HashTableSize: 7.985K (7985) - InsertKeysToColumnTime: 339.604us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.186us - ProjectionTime: 434.272us - RowsProduced: 7.985K (7985) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s999ms PipelineXTask (index=2):(Active: 1.883ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.756ms - CloseTime: 24.228us - GetBlockTime: 839.278us - OpenTime: 3.742us - PrepareTime: 92.395us - SinkTime: 884.911us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.850ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.293ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.248us - CompressTime: 0ns - ExecTime: 968.908us - InputRows: 7.949K (7949) - LocalBytesSent: 227.74 KB - LocalSendTime: 92.999us - LocalSentRows: 7.949K (7949) - MemoryUsage: - PeakMemoryUsage: 348.00 KB - MergeBlockTime: 0ns - OpenTime: 64.99us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.949K (7949) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 430.143us - SplitBlockHashComputeTime: 174.382us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 784ns - DeserializeAndMergeTime: 0ns - ExecTime: 843.787us - GetResultsTime: 485.91us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49.619us - HashTableSize: 7.949K (7949) - InsertKeysToColumnTime: 293.129us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.406us - ProjectionTime: 337.797us - RowsProduced: 7.949K (7949) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s999ms PipelineXTask (index=4):(Active: 2.70ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.933ms - CloseTime: 22.813us - GetBlockTime: 996.427us - OpenTime: 2.412us - PrepareTime: 105.643us - SinkTime: 905.498us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.38ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.188ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.28us - CompressTime: 0ns - ExecTime: 994.565us - InputRows: 7.8K (7800) - LocalBytesSent: 223.40 KB - LocalSendTime: 83.718us - LocalSentRows: 7.8K (7800) - MemoryUsage: - PeakMemoryUsage: 323.50 KB - MergeBlockTime: 0ns - OpenTime: 70.534us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.8K (7800) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 391.719us - SplitBlockHashComputeTime: 171.873us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 673ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.2ms - GetResultsTime: 639.859us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 69.411us - HashTableSize: 7.8K (7800) - InsertKeysToColumnTime: 361.723us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.940us - ProjectionTime: 331.58us - RowsProduced: 7.8K (7800) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s14ms PipelineXTask (index=6):(Active: 1.647ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.518ms - CloseTime: 19.460us - GetBlockTime: 806.645us - OpenTime: 2.869us - PrepareTime: 100.385us - SinkTime: 681.872us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.617ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.898ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.809us - CompressTime: 0ns - ExecTime: 763.56us - InputRows: 7.829K (7829) - LocalBytesSent: 224.15 KB - LocalSendTime: 86.369us - LocalSentRows: 7.829K (7829) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 66.228us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.829K (7829) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 270.665us - SplitBlockHashComputeTime: 159.612us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 700ns - DeserializeAndMergeTime: 0ns - ExecTime: 809.226us - GetResultsTime: 498.561us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 44.224us - HashTableSize: 7.829K (7829) - InsertKeysToColumnTime: 332.630us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.586us - ProjectionTime: 282.878us - RowsProduced: 7.829K (7829) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s14ms PipelineXTask (index=8):(Active: 2.50ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.920ms - CloseTime: 22.663us - GetBlockTime: 955.403us - OpenTime: 3.113us - PrepareTime: 97.191us - SinkTime: 929.157us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.341ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.594us - CompressTime: 0ns - ExecTime: 1.17ms - InputRows: 8.009K (8009) - LocalBytesSent: 229.39 KB - LocalSendTime: 90.904us - LocalSentRows: 8.009K (8009) - MemoryUsage: - PeakMemoryUsage: 348.00 KB - MergeBlockTime: 0ns - OpenTime: 70.778us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.009K (8009) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 432.311us - SplitBlockHashComputeTime: 192.186us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 725ns - DeserializeAndMergeTime: 0ns - ExecTime: 959.488us - GetResultsTime: 590.97us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 68.111us - HashTableSize: 8.009K (8009) - InsertKeysToColumnTime: 368.905us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.173us - ProjectionTime: 330.714us - RowsProduced: 8.009K (8009) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s234ms PipelineXTask (index=10):(Active: 1.959ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.808ms - CloseTime: 24.688us - GetBlockTime: 982.554us - OpenTime: 2.942us - PrepareTime: 116.755us - SinkTime: 797.917us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.925ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 124.502ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.443us - CompressTime: 0ns - ExecTime: 889.408us - InputRows: 7.872K (7872) - LocalBytesSent: 225.38 KB - LocalSendTime: 71.875us - LocalSentRows: 7.872K (7872) - MemoryUsage: - PeakMemoryUsage: 304.50 KB - MergeBlockTime: 0ns - OpenTime: 71.142us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.872K (7872) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 334.590us - SplitBlockHashComputeTime: 239.116us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 447ns - DeserializeAndMergeTime: 0ns - ExecTime: 989.350us - GetResultsTime: 554.329us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 56.183us - HashTableSize: 7.872K (7872) - InsertKeysToColumnTime: 366.803us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.135us - ProjectionTime: 410.415us - RowsProduced: 7.872K (7872) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s231ms PipelineXTask (index=12):(Active: 1.777ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.654ms - CloseTime: 20.398us - GetBlockTime: 840.345us - OpenTime: 2.877us - PrepareTime: 93.854us - SinkTime: 786.756us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.749ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 342.789ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.364us - CompressTime: 0ns - ExecTime: 863.51us - InputRows: 7.963K (7963) - LocalBytesSent: 228.09 KB - LocalSendTime: 109.780us - LocalSentRows: 7.963K (7963) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 64.16us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.963K (7963) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 313.247us - SplitBlockHashComputeTime: 193.6us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 767ns - DeserializeAndMergeTime: 0ns - ExecTime: 843.884us - GetResultsTime: 486.494us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 47.440us - HashTableSize: 7.963K (7963) - InsertKeysToColumnTime: 310.408us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.702us - ProjectionTime: 327.875us - RowsProduced: 7.963K (7963) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s978ms PipelineXTask (index=14):(Active: 2.39ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.912ms - CloseTime: 20.480us - GetBlockTime: 935.914us - OpenTime: 3.701us - PrepareTime: 98.6us - SinkTime: 945.442us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 903.654us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.777us - CompressTime: 0ns - ExecTime: 1.27ms - InputRows: 7.898K (7898) - LocalBytesSent: 226.01 KB - LocalSendTime: 108.977us - LocalSentRows: 7.898K (7898) - MemoryUsage: - PeakMemoryUsage: 343.00 KB - MergeBlockTime: 0ns - OpenTime: 67.268us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.898K (7898) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 466.573us - SplitBlockHashComputeTime: 167.217us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 847ns - DeserializeAndMergeTime: 0ns - ExecTime: 939.494us - GetResultsTime: 586.30us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 72.220us - HashTableSize: 7.898K (7898) - InsertKeysToColumnTime: 367.483us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.276us - ProjectionTime: 325.375us - RowsProduced: 7.898K (7898) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s981ms PipelineXTask (index=16):(Active: 15.174ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.43ms - CloseTime: 21.867us - GetBlockTime: 14.26ms - OpenTime: 2.897us - PrepareTime: 99.862us - SinkTime: 975.727us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.142ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.982ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.761us - CompressTime: 0ns - ExecTime: 1.54ms - InputRows: 7.745K (7745) - LocalBytesSent: 221.76 KB - LocalSendTime: 92.426us - LocalSentRows: 7.745K (7745) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 65.466us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.745K (7745) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 455.773us - SplitBlockHashComputeTime: 185.778us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 1.822us - DeserializeAndMergeTime: 0ns - ExecTime: 14.30ms - GetResultsTime: 572.977us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 78.652us - HashTableSize: 7.745K (7745) - InsertKeysToColumnTime: 356.941us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.156us - ProjectionTime: 13.421ms - RowsProduced: 7.745K (7745) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s144ms PipelineXTask (index=18):(Active: 1.716ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.605ms - CloseTime: 18.263us - GetBlockTime: 837.222us - OpenTime: 3.447us - PrepareTime: 83.381us - SinkTime: 736.463us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 846.496us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.400us - CompressTime: 0ns - ExecTime: 807.851us - InputRows: 7.785K (7785) - LocalBytesSent: 222.57 KB - LocalSendTime: 85.879us - LocalSentRows: 7.785K (7785) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 58.22us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.785K (7785) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 308.488us - SplitBlockHashComputeTime: 171.199us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 1000ns - DeserializeAndMergeTime: 0ns - ExecTime: 840.738us - GetResultsTime: 491.524us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 48.383us - HashTableSize: 7.785K (7785) - InsertKeysToColumnTime: 291.769us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.6us - ProjectionTime: 325.428us - RowsProduced: 7.785K (7785) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s241ms PipelineXTask (index=20):(Active: 1.973ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.858ms - CloseTime: 16.757us - GetBlockTime: 1.2ms - OpenTime: 3.169us - PrepareTime: 89.670us - SinkTime: 826.400us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.947ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.693ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.858us - CompressTime: 0ns - ExecTime: 902.596us - InputRows: 7.875K (7875) - LocalBytesSent: 225.40 KB - LocalSendTime: 77.312us - LocalSentRows: 7.875K (7875) - MemoryUsage: - PeakMemoryUsage: 348.00 KB - MergeBlockTime: 0ns - OpenTime: 63.65us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.875K (7875) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 337.505us - SplitBlockHashComputeTime: 239.14us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 383ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.5ms - GetResultsTime: 529.617us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 56.499us - HashTableSize: 7.875K (7875) - InsertKeysToColumnTime: 374.52us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.669us - ProjectionTime: 453.709us - RowsProduced: 7.875K (7875) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s239ms PipelineXTask (index=22):(Active: 20.795ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.672ms - CloseTime: 16.798us - GetBlockTime: 782.246us - OpenTime: 4.455us - PrepareTime: 95.947us - SinkTime: 19.854ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.698ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.564ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.984us - CompressTime: 0ns - ExecTime: 19.932ms - InputRows: 7.846K (7846) - LocalBytesSent: 224.85 KB - LocalSendTime: 64.766us - LocalSentRows: 7.846K (7846) - MemoryUsage: - PeakMemoryUsage: 319.00 KB - MergeBlockTime: 0ns - OpenTime: 66.415us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.846K (7846) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 378.70us - SplitBlockHashComputeTime: 159.875us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 2 - CloseTime: 820ns - DeserializeAndMergeTime: 0ns - ExecTime: 787.476us - GetResultsTime: 423.468us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 46.715us - HashTableSize: 7.846K (7846) - InsertKeysToColumnTime: 260.697us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.386us - ProjectionTime: 331.267us - RowsProduced: 7.846K (7846) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s154ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 8.572ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.471ms - CloseTime: 25.527us - GetBlockTime: 156.574us - OpenTime: 2.887us - PrepareTime: 66.227us - SinkTime: 8.218ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.525ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 557.290ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.226us - DeserializeAndMergeTime: 3.902ms - ExecTime: 8.243ms - ExprTime: 0ns - HashTableComputeTime: 3.989ms - HashTableEmplaceTime: 3.351ms - HashTableInputCount: 11.673K (11673) - InputRows: 11.673K (11673) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 8.181ms - OpenTime: 29.816us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.731us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 175.375us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 427.00 KB - PeakMemoryUsage: 427.00 KB - OpenTime: 19.565us - ProjectionTime: 0ns - RowsProduced: 11.673K (11673) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s433ms PipelineXTask (index=3):(Active: 26.753ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.686ms - CloseTime: 8.715us - GetBlockTime: 146.918us - OpenTime: 2.700us - PrepareTime: 50.100us - SinkTime: 26.452ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 565.750ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.449us - DeserializeAndMergeTime: 22.660ms - ExecTime: 26.464ms - ExprTime: 0ns - HashTableComputeTime: 3.667ms - HashTableEmplaceTime: 3.140ms - HashTableInputCount: 11.546K (11546) - InputRows: 11.546K (11546) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 26.427ms - OpenTime: 17.397us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.736us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 156.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 998.00 KB - MemoryUsage: - Blocks: 443.00 KB - PeakMemoryUsage: 443.00 KB - OpenTime: 15.330us - ProjectionTime: 0ns - RowsProduced: 11.546K (11546) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s406ms PipelineXTask (index=5):(Active: 8.59ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.976ms - CloseTime: 21.832us - GetBlockTime: 165.542us - OpenTime: 2.447us - PrepareTime: 53.13us - SinkTime: 7.712ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.17ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 585.346ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 4.195us - DeserializeAndMergeTime: 3.564ms - ExecTime: 7.731ms - ExprTime: 0ns - HashTableComputeTime: 3.934ms - HashTableEmplaceTime: 3.370ms - HashTableInputCount: 11.391K (11391) - InputRows: 11.391K (11391) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 7.689ms - OpenTime: 20.657us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 16.399us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 185.199us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 427.00 KB - PeakMemoryUsage: 427.00 KB - OpenTime: 14.295us - ProjectionTime: 0ns - RowsProduced: 11.391K (11391) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s421ms PipelineXTask (index=7):(Active: 7.786ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.692ms - CloseTime: 5.230us - GetBlockTime: 165.268us - OpenTime: 2.606us - PrepareTime: 80.368us - SinkTime: 7.442ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 593.324ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.327us - DeserializeAndMergeTime: 3.384ms - ExecTime: 7.476ms - ExprTime: 0ns - HashTableComputeTime: 3.812ms - HashTableEmplaceTime: 3.222ms - HashTableInputCount: 11.317K (11317) - InputRows: 11.317K (11317) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 7.421ms - OpenTime: 38.362us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.482us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 176.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 998.00 KB - MemoryUsage: - Blocks: 443.00 KB - PeakMemoryUsage: 443.00 KB - OpenTime: 18.239us - ProjectionTime: 0ns - RowsProduced: 11.317K (11317) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s413ms PipelineXTask (index=9):(Active: 10.752ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.668ms - CloseTime: 14.884us - GetBlockTime: 201.218us - OpenTime: 3.154us - PrepareTime: 60.371us - SinkTime: 10.400ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.703ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s45ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.110us - DeserializeAndMergeTime: 5.195ms - ExecTime: 10.410ms - ExprTime: 0ns - HashTableComputeTime: 4.911ms - HashTableEmplaceTime: 4.8ms - HashTableInputCount: 11.704K (11704) - InputRows: 11.704K (11704) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 10.374ms - OpenTime: 13.837us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 226.686us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.04 MB - MemoryUsage: - Blocks: 795.50 KB - PeakMemoryUsage: 795.50 KB - OpenTime: 27.383us - ProjectionTime: 0ns - RowsProduced: 11.704K (11704) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=11):(Active: 7.199ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.105ms - CloseTime: 27.571us - GetBlockTime: 176.417us - OpenTime: 3.21us - PrepareTime: 57.853us - SinkTime: 6.879ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.161ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s50ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 13.701us - DeserializeAndMergeTime: 3.128ms - ExecTime: 6.914ms - ExprTime: 0ns - HashTableComputeTime: 3.484ms - HashTableEmplaceTime: 2.969ms - HashTableInputCount: 11.315K (11315) - InputRows: 11.315K (11315) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 6.860ms - OpenTime: 25.128us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.7us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 198.101us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 722.50 KB - PeakMemoryUsage: 722.50 KB - OpenTime: 16.682us - ProjectionTime: 0ns - RowsProduced: 11.315K (11315) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s176ms PipelineXTask (index=13):(Active: 17.699ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 17.610ms - CloseTime: 19.974us - GetBlockTime: 158.435us - OpenTime: 4.111us - PrepareTime: 60.90us - SinkTime: 17.341ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.276ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 429.989ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 5.190us - DeserializeAndMergeTime: 4.492ms - ExecTime: 17.358ms - ExprTime: 0ns - HashTableComputeTime: 12.613ms - HashTableEmplaceTime: 11.864ms - HashTableInputCount: 11.582K (11582) - InputRows: 11.582K (11582) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 17.299ms - OpenTime: 18.975us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.681us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.401us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 975.00 KB - MemoryUsage: - Blocks: 305.00 KB - PeakMemoryUsage: 305.00 KB - OpenTime: 14.128us - ProjectionTime: 0ns - RowsProduced: 11.582K (11582) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s533ms PipelineXTask (index=15):(Active: 8.167ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 8.104ms - CloseTime: 9.626us - GetBlockTime: 137.767us - OpenTime: 2.646us - PrepareTime: 45.207us - SinkTime: 7.868ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 447.731ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 4.19us - DeserializeAndMergeTime: 3.735ms - ExecTime: 7.883ms - ExprTime: 0ns - HashTableComputeTime: 3.858ms - HashTableEmplaceTime: 3.121ms - HashTableInputCount: 11.44K (11440) - InputRows: 11.44K (11440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 7.845ms - OpenTime: 16.546us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.97us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 305.00 KB - PeakMemoryUsage: 305.00 KB - OpenTime: 17.560us - ProjectionTime: 0ns - RowsProduced: 11.44K (11440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s525ms PipelineXTask (index=17):(Active: 13.958ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.865ms - CloseTime: 12.824us - GetBlockTime: 155.58us - OpenTime: 4.320us - PrepareTime: 70.111us - SinkTime: 13.640ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.378ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 922.4ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.302us - DeserializeAndMergeTime: 3.605ms - ExecTime: 13.663ms - ExprTime: 0ns - HashTableComputeTime: 9.837ms - HashTableEmplaceTime: 9.109ms - HashTableInputCount: 11.174K (11174) - InputRows: 11.174K (11174) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 13.606ms - OpenTime: 28.174us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.621us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 171.739us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 722.50 KB - PeakMemoryUsage: 722.50 KB - OpenTime: 20.186us - ProjectionTime: 0ns - RowsProduced: 11.174K (11174) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s210ms PipelineXTask (index=19):(Active: 8.92ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.991ms - CloseTime: 28.807us - GetBlockTime: 160.674us - OpenTime: 3.415us - PrepareTime: 61.133us - SinkTime: 7.771ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.31ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s59ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 13.177us - DeserializeAndMergeTime: 4.54ms - ExecTime: 7.798ms - ExprTime: 0ns - HashTableComputeTime: 3.514ms - HashTableEmplaceTime: 2.897ms - HashTableInputCount: 11.299K (11299) - InputRows: 11.299K (11299) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 7.751ms - OpenTime: 18.176us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.770us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 183.791us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 989.00 KB - MemoryUsage: - Blocks: 722.50 KB - PeakMemoryUsage: 722.50 KB - OpenTime: 19.373us - ProjectionTime: 0ns - RowsProduced: 11.299K (11299) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s175ms PipelineXTask (index=21):(Active: 10.372ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.284ms - CloseTime: 27.698us - GetBlockTime: 225.212us - OpenTime: 2.585us - PrepareTime: 52.772us - SinkTime: 9.987ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.326ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s64ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 9.643us - DeserializeAndMergeTime: 4.811ms - ExecTime: 10.5ms - ExprTime: 0ns - HashTableComputeTime: 4.964ms - HashTableEmplaceTime: 4.65ms - HashTableInputCount: 11.431K (11431) - InputRows: 11.431K (11431) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 9.963ms - OpenTime: 14.734us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 15.798us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 245.6us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 973.00 KB - MemoryUsage: - Blocks: 706.50 KB - PeakMemoryUsage: 706.50 KB - OpenTime: 18.251us - ProjectionTime: 0ns - RowsProduced: 11.431K (11431) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s170ms PipelineXTask (index=23):(Active: 20.446ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.363ms - CloseTime: 22.931us - GetBlockTime: 185.9us - OpenTime: 3.402us - PrepareTime: 51.255us - SinkTime: 20.95ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.68ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 932.620ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 7.69us - DeserializeAndMergeTime: 5.300ms - ExecTime: 20.114ms - ExprTime: 0ns - HashTableComputeTime: 14.605ms - HashTableEmplaceTime: 13.873ms - HashTableInputCount: 11.382K (11382) - InputRows: 11.382K (11382) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 20.64ms - OpenTime: 19.45us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.965us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 196.786us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.04 MB - MemoryUsage: - Blocks: 802.50 KB - PeakMemoryUsage: 802.50 KB - OpenTime: 16.942us - ProjectionTime: 0ns - RowsProduced: 11.382K (11382) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s204ms Fragment 37: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.120ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.431ms - CloseTime: 228.576us - GetBlockTime: 1.822ms - OpenTime: 129.521us - PrepareTime: 318.624us - SinkTime: 437.172us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.878ms - WaitBfTime: 693.479ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 316.353ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.812us - CompressTime: 0ns - ExecTime: 524.419us - InputRows: 2.0K (2000) - LocalBytesSent: 94.24 KB - LocalSendTime: 70.470us - LocalSentRows: 2.0K (2000) - MemoryUsage: - PeakMemoryUsage: 135.00 KB - MergeBlockTime: 0ns - OpenTime: 73.364us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.0K (2000) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 187.516us - SplitBlockHashComputeTime: 57.749us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.392ms - CloseTime: 150.376us - DeserializeAndMergeTime: 0ns - ExecTime: 1.942ms - ExprTime: 3.140us - GetResultsTime: 359.184us - HashTableComputeTime: 855.488us - HashTableEmplaceTime: 660.67us - HashTableInputCount: 2.162K (2162) - HashTableIterateTime: 13.512us - HashTableSize: 2.0K (2000) - InsertKeysToColumnTime: 131.422us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 679.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 28.149us - ProjectionTime: 0ns - RowsProduced: 2.0K (2000) - SerializeDataTime: 175.926us - SerializeKeyTime: 0ns - SerializeResultTime: 363.296us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.160us - BlocksProduced: 1 - CloseTime: 59.271us - ExecTime: 214.573ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 223.829us - ProcessConjunctTime: 34.881us - ProjectionTime: 3.171ms - RowsProduced: 2.162K (2162) - RowsRead: 2.162K (2162) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.757ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 211.46ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [81.329ms, ] - PerScannerRowsRead: [2.16K, ] - PerScannerWaitTime: [17.757ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 80.848ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 94.531ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 118ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.712ms - ScannerCtxSchedTime: 17.752ms - ScannerFilterTime: 107.537us - ScannerGetBlockTime: 81.153ms - ScannerInitTime: 59.857us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 506ns - BlockConditionsFilteredBloomFilterTime: 1.485us - BlockConditionsFilteredDictTime: 513ns - BlockConditionsFilteredTime: 41.987us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 30.703us - BlockInitSeekCount: 9 - BlockInitSeekTime: 15.695us - BlockInitTime: 85.504us - BlockLoadTime: 175.183ms - BlocksLoad: 139 - CachedPagesNum: 369 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 56.775ms - FirstReadSeekCount: 138 - FirstReadSeekTime: 60.164us - FirstReadTime: 11.248ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.855us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 105.114ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 263.415us - OutputIndexResultColumnTimer: 15.551us - RawRowsRead: 556.885K (556885) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 496.673K (496673) - RowsVectorPredInput: 556.885K (556885) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.92us - TotalPagesNum: 369 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 933.981us PipelineXTask (index=1):(Active: 2.983ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.180ms - CloseTime: 146.903us - GetBlockTime: 1.447ms - OpenTime: 347.146us - PrepareTime: 297.981us - SinkTime: 354.550us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.824ms - WaitBfTime: 695.185ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.946ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.179us - CompressTime: 0ns - ExecTime: 435.191us - InputRows: 2.01K (2010) - LocalBytesSent: 94.88 KB - LocalSendTime: 60.657us - LocalSentRows: 2.01K (2010) - MemoryUsage: - PeakMemoryUsage: 135.00 KB - MergeBlockTime: 0ns - OpenTime: 70.295us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.01K (2010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 136.525us - SplitBlockHashComputeTime: 47.882us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.150ms - CloseTime: 83.857us - DeserializeAndMergeTime: 0ns - ExecTime: 1.503ms - ExprTime: 2.938us - GetResultsTime: 234.360us - HashTableComputeTime: 775.577us - HashTableEmplaceTime: 665.675us - HashTableInputCount: 2.189K (2189) - HashTableIterateTime: 9.714us - HashTableSize: 2.01K (2010) - InsertKeysToColumnTime: 93.238us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 679.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 23.390us - ProjectionTime: 0ns - RowsProduced: 2.01K (2010) - SerializeDataTime: 91.76us - SerializeKeyTime: 0ns - SerializeResultTime: 240.810us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.5us - BlocksProduced: 1 - CloseTime: 47.630us - ExecTime: 209.853ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 416.75us - ProcessConjunctTime: 80.459us - ProjectionTime: 61.88ms - RowsProduced: 2.189K (2189) - RowsRead: 2.189K (2189) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 18.351ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.234ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [66.361ms, ] - PerScannerRowsRead: [2.19K, ] - PerScannerWaitTime: [18.351ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 64.81ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.246ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 103ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 34.841ms - ScannerCtxSchedTime: 18.348ms - ScannerFilterTime: 92.964us - ScannerGetBlockTime: 66.208ms - ScannerInitTime: 224.546us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.90us - BlockConditionsFilteredBloomFilterTime: 5.944us - BlockConditionsFilteredDictTime: 1.458us - BlockConditionsFilteredTime: 87.770us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 55.698us - BlockInitSeekCount: 37 - BlockInitSeekTime: 266.586us - BlockInitTime: 478.763us - BlockLoadTime: 66.562ms - BlocksLoad: 152 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.644ms - FirstReadSeekCount: 147 - FirstReadSeekTime: 52.473us - FirstReadTime: 48.367ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.670us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 11.928ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 276.976us - OutputIndexResultColumnTimer: 14.149us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 519.485K (519485) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.768us - TotalPagesNum: 364 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 985.600us PipelineXTask (index=2):(Active: 7.919ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.824ms - CloseTime: 603.785us - GetBlockTime: 5.497ms - OpenTime: 172.768us - PrepareTime: 308.657us - SinkTime: 1.75ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.274ms - WaitBfTime: 701.759ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 714.724ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.8us - CompressTime: 0ns - ExecTime: 1.164ms - InputRows: 6.534K (6534) - LocalBytesSent: 322.32 KB - LocalSendTime: 94.98us - LocalSentRows: 6.534K (6534) - MemoryUsage: - PeakMemoryUsage: 526.00 KB - MergeBlockTime: 0ns - OpenTime: 77.857us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6.534K (6534) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 669.747us - SplitBlockHashComputeTime: 145.183us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 4.307ms - CloseTime: 503.846us - DeserializeAndMergeTime: 0ns - ExecTime: 5.919ms - ExprTime: 10.229us - GetResultsTime: 1.58ms - HashTableComputeTime: 2.508ms - HashTableEmplaceTime: 1.876ms - HashTableInputCount: 7.94K (7940) - HashTableIterateTime: 48.699us - HashTableSize: 6.534K (6534) - InsertKeysToColumnTime: 298.351us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 23.310us - ProjectionTime: 0ns - RowsProduced: 6.534K (6534) - SerializeDataTime: 518.463us - SerializeKeyTime: 0ns - SerializeResultTime: 1.67ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.600us - BlocksProduced: 3 - CloseTime: 83.200us - ExecTime: 289.291ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 280.965us - ProcessConjunctTime: 48.282us - ProjectionTime: 16.270ms - RowsProduced: 7.94K (7940) - RowsRead: 9.263K (9263) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 120.7ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 272.519ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [135.398ms, ] - PerScannerRowsRead: [9.26K, ] - PerScannerWaitTime: [120.007ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 132.606ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.383ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 517ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.897ms - ScannerCtxSchedTime: 120.2ms - ScannerFilterTime: 1.245ms - ScannerGetBlockTime: 133.969ms - ScannerInitTime: 99.694us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.265us - BlockConditionsFilteredBloomFilterTime: 3.304us - BlockConditionsFilteredDictTime: 707ns - BlockConditionsFilteredTime: 80.813us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 57.77us - BlockInitSeekCount: 17 - BlockInitSeekTime: 23.578us - BlockInitTime: 181.7us - BlockLoadTime: 134.182ms - BlocksLoad: 367 - CachedPagesNum: 1.01K (1010) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 33.152ms - FirstReadSeekCount: 365 - FirstReadSeekTime: 95.499us - FirstReadTime: 62.469ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.405us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 31.879ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.185ms - OutputIndexResultColumnTimer: 52.793us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.129863M (1129863) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 12.717us - TotalPagesNum: 1.01K (1010) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.865ms PipelineXTask (index=3):(Active: 4.399ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.495ms - CloseTime: 358.478us - GetBlockTime: 2.626ms - OpenTime: 253.810us - PrepareTime: 282.916us - SinkTime: 550.786us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.25ms - WaitBfTime: 1s364ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 998.791ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.840us - CompressTime: 0ns - ExecTime: 628.449us - InputRows: 3.152K (3152) - LocalBytesSent: 153.41 KB - LocalSendTime: 110.236us - LocalSentRows: 3.152K (3152) - MemoryUsage: - PeakMemoryUsage: 249.00 KB - MergeBlockTime: 0ns - OpenTime: 67.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.152K (3152) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 264.629us - SplitBlockHashComputeTime: 72.892us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.916ms - CloseTime: 267.681us - DeserializeAndMergeTime: 0ns - ExecTime: 2.813ms - ExprTime: 7.11us - GetResultsTime: 577.576us - HashTableComputeTime: 1.134ms - HashTableEmplaceTime: 854.691us - HashTableInputCount: 3.691K (3691) - HashTableIterateTime: 24.676us - HashTableSize: 3.152K (3152) - InsertKeysToColumnTime: 163.408us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 25.142us - ProjectionTime: 0ns - RowsProduced: 3.152K (3152) - SerializeDataTime: 327.329us - SerializeKeyTime: 0ns - SerializeResultTime: 580.909us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.822us - BlocksProduced: 3 - CloseTime: 76.610us - ExecTime: 283.464ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 334.744us - ProcessConjunctTime: 88.131us - ProjectionTime: 6.774ms - RowsProduced: 3.691K (3691) - RowsRead: 9.627K (9627) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.491ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.145ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [260.065ms, ] - PerScannerRowsRead: [9.63K, ] - PerScannerWaitTime: [7.491ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 254.102ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.196ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 293ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 114.760ms - ScannerCtxSchedTime: 7.485ms - ScannerFilterTime: 3.598ms - ScannerGetBlockTime: 256.287ms - ScannerInitTime: 123.962us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.736us - BlockConditionsFilteredBloomFilterTime: 4.816us - BlockConditionsFilteredDictTime: 849ns - BlockConditionsFilteredTime: 94.486us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 67.187us - BlockInitSeekCount: 26 - BlockInitSeekTime: 31.566us - BlockInitTime: 234.876us - BlockLoadTime: 256.70ms - BlocksLoad: 405 - CachedPagesNum: 1.106K (1106) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 119.353ms - FirstReadSeekCount: 402 - FirstReadSeekTime: 103.405us - FirstReadTime: 80.134ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.182us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 49.763ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.132ms - OutputIndexResultColumnTimer: 43.938us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.234927M (1234927) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 15.646us - TotalPagesNum: 1.106K (1106) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.163ms PipelineXTask (index=4):(Active: 11.76ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.568ms - CloseTime: 1.15ms - GetBlockTime: 7.797ms - OpenTime: 150.679us - PrepareTime: 313.893us - SinkTime: 1.547ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.13ms - WaitBfTime: 701.925ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 644.225ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.976us - CompressTime: 0ns - ExecTime: 1.627ms - InputRows: 8.91K (8910) - LocalBytesSent: 450.08 KB - LocalSendTime: 67.199us - LocalSentRows: 8.91K (8910) - MemoryUsage: - PeakMemoryUsage: 700.00 KB - MergeBlockTime: 0ns - OpenTime: 69.709us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.91K (8910) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.54ms - SplitBlockHashComputeTime: 193.211us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 3 - BuildConvertToPartitionedTime: 0ns - BuildTime: 6.359ms - CloseTime: 930.796us - DeserializeAndMergeTime: 0ns - ExecTime: 8.580ms - ExprTime: 12.729us - GetResultsTime: 1.221ms - HashTableComputeTime: 3.663ms - HashTableEmplaceTime: 3.27ms - HashTableInputCount: 11.386K (11386) - HashTableIterateTime: 62.586us - HashTableSize: 8.91K (8910) - InsertKeysToColumnTime: 326.513us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 0ns - OpenTime: 35.322us - ProjectionTime: 0ns - RowsProduced: 8.91K (8910) - SerializeDataTime: 620.84us - SerializeKeyTime: 0ns - SerializeResultTime: 1.230ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.751us - BlocksProduced: 5 - CloseTime: 69.892us - ExecTime: 415.139ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 230.907us - ProcessConjunctTime: 31.493us - ProjectionTime: 66.797ms - RowsProduced: 11.386K (11386) - RowsRead: 14.311K (14311) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 112.819ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 347.826ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [161.381ms, ] - PerScannerRowsRead: [14.31K, ] - PerScannerWaitTime: [112.819ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 157.680ms - MemoryUsage: - FreeBlocks: 488.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.715ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 711ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 127.74ms - ScannerCtxSchedTime: 112.815ms - ScannerFilterTime: 1.532ms - ScannerGetBlockTime: 159.685ms - ScannerInitTime: 98.962us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.944us - BlockConditionsFilteredBloomFilterTime: 4.797us - BlockConditionsFilteredDictTime: 1.761us - BlockConditionsFilteredTime: 160.50us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 124.116us - BlockInitSeekCount: 25 - BlockInitSeekTime: 30.116us - BlockInitTime: 302.375us - BlockLoadTime: 159.928ms - BlocksLoad: 384 - CachedPagesNum: 1.064K (1064) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 37.62ms - FirstReadSeekCount: 381 - FirstReadSeekTime: 132.538us - FirstReadTime: 56.170ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.262us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 59.140ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.628ms - OutputIndexResultColumnTimer: 50.943us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 887.103K (887103) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 13.889us - TotalPagesNum: 1.064K (1064) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.185ms PipelineXTask (index=5):(Active: 86.171ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 85.152ms - CloseTime: 597.23us - GetBlockTime: 83.768ms - OpenTime: 155.89us - PrepareTime: 256.507us - SinkTime: 1.160ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.550ms - WaitBfTime: 702.248ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 576.612ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.956us - CompressTime: 0ns - ExecTime: 1.250ms - InputRows: 6.98K (6980) - LocalBytesSent: 348.63 KB - LocalSendTime: 73.752us - LocalSentRows: 6.98K (6980) - MemoryUsage: - PeakMemoryUsage: 540.00 KB - MergeBlockTime: 0ns - OpenTime: 73.238us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6.98K (6980) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 772.279us - SplitBlockHashComputeTime: 154.434us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 82.543ms - CloseTime: 496.153us - DeserializeAndMergeTime: 0ns - ExecTime: 84.136ms - ExprTime: 20.942us - GetResultsTime: 1.49ms - HashTableComputeTime: 80.80ms - HashTableEmplaceTime: 79.505ms - HashTableInputCount: 8.734K (8734) - HashTableIterateTime: 53.260us - HashTableSize: 6.98K (6980) - InsertKeysToColumnTime: 346.772us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 23.188us - ProjectionTime: 0ns - RowsProduced: 6.98K (6980) - SerializeDataTime: 549.331us - SerializeKeyTime: 0ns - SerializeResultTime: 1.55ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.515us - BlocksProduced: 5 - CloseTime: 79.685us - ExecTime: 355.140ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 222.212us - ProcessConjunctTime: 38.305us - ProjectionTime: 11.463ms - RowsProduced: 8.734K (8734) - RowsRead: 14.276K (14276) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 54.997ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 343.139ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [261.782ms, ] - PerScannerRowsRead: [14.28K, ] - PerScannerWaitTime: [54.997ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 255.742ms - MemoryUsage: - FreeBlocks: 416.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.850ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 773ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 162.459ms - ScannerCtxSchedTime: 54.990ms - ScannerFilterTime: 2.127ms - ScannerGetBlockTime: 259.444ms - ScannerInitTime: 92.995us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 2.150us - BlockConditionsFilteredBloomFilterTime: 5.558us - BlockConditionsFilteredDictTime: 1.747us - BlockConditionsFilteredTime: 157.986us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 116.531us - BlockInitSeekCount: 31 - BlockInitSeekTime: 36.680us - BlockInitTime: 366.775us - BlockLoadTime: 269.524ms - BlocksLoad: 410 - CachedPagesNum: 1.141K (1141) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 75.559ms - FirstReadSeekCount: 406 - FirstReadSeekTime: 137.113us - FirstReadTime: 79.217ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.247us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 105.117ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.172ms - OutputIndexResultColumnTimer: 67.801us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 918.907K (918907) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 21.698us - TotalPagesNum: 1.141K (1141) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.803ms PipelineXTask (index=6):(Active: 111.214ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 108.953ms - CloseTime: 1.741ms - GetBlockTime: 106.952ms - OpenTime: 234.803us - PrepareTime: 273.619us - SinkTime: 1.635ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.364ms - WaitBfTime: 717.709ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 373.759ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.772us - CompressTime: 0ns - ExecTime: 1.739ms - InputRows: 9.913K (9913) - LocalBytesSent: 568.10 KB - LocalSendTime: 82.45us - LocalSentRows: 9.913K (9913) - MemoryUsage: - PeakMemoryUsage: 732.00 KB - MergeBlockTime: 0ns - OpenTime: 91.836us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.913K (9913) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.8ms - SplitBlockHashComputeTime: 261.983us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 3 - BuildConvertToPartitionedTime: 0ns - BuildTime: 103.958ms - CloseTime: 1.634ms - DeserializeAndMergeTime: 0ns - ExecTime: 108.381ms - ExprTime: 26.653us - GetResultsTime: 2.703ms - HashTableComputeTime: 98.126ms - HashTableEmplaceTime: 97.278ms - HashTableInputCount: 16.746K (16746) - HashTableIterateTime: 122.918us - HashTableSize: 9.913K (9913) - InsertKeysToColumnTime: 383.139us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 0ns - OpenTime: 27.522us - ProjectionTime: 0ns - RowsProduced: 9.913K (9913) - SerializeDataTime: 2.2ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.719ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.634us - BlocksProduced: 8 - CloseTime: 87.71us - ExecTime: 607.464ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 297.738us - ProcessConjunctTime: 77.828us - ProjectionTime: 17.761ms - RowsProduced: 16.746K (16746) - RowsRead: 25.632K (25632) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 194.529ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 589.56ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [325.441ms, ] - PerScannerRowsRead: [25.63K, ] - PerScannerWaitTime: [194.529ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 319.475ms - MemoryUsage: - FreeBlocks: 860.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.576ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.52us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 134.178ms - ScannerCtxSchedTime: 194.523ms - ScannerFilterTime: 2.547ms - ScannerGetBlockTime: 322.716ms - ScannerInitTime: 125.580us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 2.308us - BlockConditionsFilteredBloomFilterTime: 6.64us - BlockConditionsFilteredDictTime: 1.482us - BlockConditionsFilteredTime: 141.932us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 97.32us - BlockInitSeekCount: 35 - BlockInitSeekTime: 42.484us - BlockInitTime: 317.747us - BlockLoadTime: 322.694ms - BlocksLoad: 345 - CachedPagesNum: 937 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 32.225ms - FirstReadSeekCount: 341 - FirstReadSeekTime: 131.634us - FirstReadTime: 200.274ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.344us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 62.282ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 22.9ms - OutputIndexResultColumnTimer: 63.484us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 804.911K (804911) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 14.659us - TotalPagesNum: 937 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.32ms PipelineXTask (index=7):(Active: 46.483ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.668ms - CloseTime: 2.210ms - GetBlockTime: 40.158ms - OpenTime: 306.623us - PrepareTime: 289.98us - SinkTime: 3.68ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.211ms - WaitBfTime: 743.564ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 278.277ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.760us - CompressTime: 0ns - ExecTime: 3.186ms - InputRows: 16.152K (16152) - LocalBytesSent: 884.69 KB - LocalSendTime: 82.718us - LocalSentRows: 16.152K (16152) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 109.705us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.152K (16152) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.286ms - SplitBlockHashComputeTime: 354.502us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 15.41ms - CloseTime: 2.116ms - DeserializeAndMergeTime: 0ns - ExecTime: 42.62ms - ExprTime: 35.556us - GetResultsTime: 24.808ms - HashTableComputeTime: 7.827ms - HashTableEmplaceTime: 6.708ms - HashTableInputCount: 24.947K (24947) - HashTableIterateTime: 108.155us - HashTableSize: 16.152K (16152) - InsertKeysToColumnTime: 22.668ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 29.759us - ProjectionTime: 0ns - RowsProduced: 16.152K (16152) - SerializeDataTime: 1.780ms - SerializeKeyTime: 0ns - SerializeResultTime: 24.826ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 14.469us - BlocksProduced: 9 - CloseTime: 76.227us - ExecTime: 586.539ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 363.275us - ProcessConjunctTime: 79.958us - ProjectionTime: 13.564ms - RowsProduced: 24.947K (24947) - RowsRead: 24.947K (24947) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 211.135ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 572.234ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [314.244ms, ] - PerScannerRowsRead: [24.95K, ] - PerScannerWaitTime: [211.135ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 310.389ms - MemoryUsage: - FreeBlocks: 892.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.261ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.125us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 136.67ms - ScannerCtxSchedTime: 211.127ms - ScannerFilterTime: 378.283us - ScannerGetBlockTime: 313.690ms - ScannerInitTime: 172.340us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 1.962us - BlockConditionsFilteredBloomFilterTime: 5.710us - BlockConditionsFilteredDictTime: 1.475us - BlockConditionsFilteredTime: 127.207us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.655us - BlockInitSeekCount: 33 - BlockInitSeekTime: 36.434us - BlockInitTime: 276.989us - BlockLoadTime: 313.328ms - BlocksLoad: 382 - CachedPagesNum: 1.05K (1050) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 30.84ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 162.199us - FirstReadTime: 120.183ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.270us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 155.67ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.635ms - OutputIndexResultColumnTimer: 50.537us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 919.873K (919873) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 16.313us - TotalPagesNum: 1.05K (1050) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.228ms PipelineXTask (index=8):(Active: 51.981ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 47.92ms - CloseTime: 4.203ms - GetBlockTime: 39.834ms - OpenTime: 373.91us - PrepareTime: 300.38us - SinkTime: 6.730ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 38.751ms - WaitBfTime: 681.258ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 670.22ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.354us - CompressTime: 0ns - ExecTime: 6.815ms - InputRows: 23.03K (23030) - LocalBytesSent: 1.37 MB - LocalSendTime: 110.68us - LocalSentRows: 23.03K (23030) - MemoryUsage: - PeakMemoryUsage: 1.63 MB - MergeBlockTime: 0ns - OpenTime: 73.488us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 23.03K (23030) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.868ms - SplitBlockHashComputeTime: 905.147us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 6 - BuildConvertToPartitionedTime: 0ns - BuildTime: 31.832ms - CloseTime: 4.78ms - DeserializeAndMergeTime: 0ns - ExecTime: 43.611ms - ExprTime: 34.687us - GetResultsTime: 7.559ms - HashTableComputeTime: 19.268ms - HashTableEmplaceTime: 17.478ms - HashTableInputCount: 44.771K (44771) - HashTableIterateTime: 241.888us - HashTableSize: 23.03K (23030) - InsertKeysToColumnTime: 1.291ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.53 MB - SerializeKeyArena: 3.78 MB - MergeTime: 0ns - OpenTime: 28.984us - ProjectionTime: 0ns - RowsProduced: 23.03K (23030) - SerializeDataTime: 5.618ms - SerializeKeyTime: 0ns - SerializeResultTime: 7.600ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.592us - BlocksProduced: 14 - CloseTime: 101.247us - ExecTime: 474.296ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 452.952us - ProcessConjunctTime: 111.96us - ProjectionTime: 50.963ms - RowsProduced: 44.771K (44771) - RowsRead: 58.864K (58864) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.311ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 422.436ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [305.006ms, ] - PerScannerRowsRead: [58.86K, ] - PerScannerWaitTime: [7.311ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 300.443ms - MemoryUsage: - FreeBlocks: 2.37 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.361ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.411us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.50ms - ScannerCtxSchedTime: 7.305ms - ScannerFilterTime: 2.580ms - ScannerGetBlockTime: 302.256ms - ScannerInitTime: 214.376us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.725us - BlockConditionsFilteredBloomFilterTime: 4.405us - BlockConditionsFilteredDictTime: 1.370us - BlockConditionsFilteredTime: 83.210us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.810us - BlockInitSeekCount: 25 - BlockInitSeekTime: 233.78us - BlockInitTime: 405.115us - BlockLoadTime: 302.324ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 126.184ms - FirstReadSeekCount: 257 - FirstReadSeekTime: 95.87us - FirstReadTime: 102.551ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.821us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 67.665ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.22ms - OutputIndexResultColumnTimer: 41.460us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 701.369K (701369) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 11.317us - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.242ms PipelineXTask (index=9):(Active: 187.896ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 182.586ms - CloseTime: 4.808ms - GetBlockTime: 176.438ms - OpenTime: 206.123us - PrepareTime: 285.491us - SinkTime: 5.775ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 43.595ms - WaitBfTime: 681.624ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 576.34ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.572us - CompressTime: 0ns - ExecTime: 5.880ms - InputRows: 28.432K (28432) - LocalBytesSent: 1.74 MB - LocalSendTime: 85.856us - LocalSentRows: 28.432K (28432) - MemoryUsage: - PeakMemoryUsage: 2.86 MB - MergeBlockTime: 0ns - OpenTime: 91.754us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 28.432K (28432) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.449ms - SplitBlockHashComputeTime: 679.712us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 7 - BuildConvertToPartitionedTime: 0ns - BuildTime: 156.505ms - CloseTime: 4.693ms - DeserializeAndMergeTime: 0ns - ExecTime: 180.815ms - ExprTime: 56.142us - GetResultsTime: 19.451ms - HashTableComputeTime: 77.862ms - HashTableEmplaceTime: 75.590ms - HashTableInputCount: 58.482K (58482) - HashTableIterateTime: 193.788us - HashTableSize: 28.432K (28432) - InsertKeysToColumnTime: 838.860us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.53 MB - SerializeKeyArena: 3.78 MB - MergeTime: 0ns - OpenTime: 41.91us - ProjectionTime: 0ns - RowsProduced: 28.432K (28432) - SerializeDataTime: 18.248ms - SerializeKeyTime: 0ns - SerializeResultTime: 19.473ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.407us - BlocksProduced: 19 - CloseTime: 91.666us - ExecTime: 322.77ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 271.388us - ProcessConjunctTime: 54.37us - ProjectionTime: 16.607ms - RowsProduced: 58.482K (58482) - RowsRead: 61.88K (61880) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 63.739ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 304.729ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [209.052ms, ] - PerScannerRowsRead: [61.88K, ] - PerScannerWaitTime: [63.739ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 205.853ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 865.938us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.429us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.627ms - ScannerCtxSchedTime: 63.733ms - ScannerFilterTime: 909.16us - ScannerGetBlockTime: 208.16ms - ScannerInitTime: 128.94us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 1.534us - BlockConditionsFilteredBloomFilterTime: 5.422us - BlockConditionsFilteredDictTime: 1.92us - BlockConditionsFilteredTime: 86.59us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.593us - BlockInitSeekCount: 26 - BlockInitSeekTime: 444.207us - BlockInitTime: 618.303us - BlockLoadTime: 207.600ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 28.870ms - FirstReadSeekCount: 288 - FirstReadSeekTime: 131.179us - FirstReadTime: 84.578ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.242us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 87.734ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.160ms - OutputIndexResultColumnTimer: 52.193us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 789.371K (789371) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 10.556us - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.352ms PipelineXTask (index=10):(Active: 35.454ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.5ms - CloseTime: 2.12ms - GetBlockTime: 30.431ms - OpenTime: 154.277us - PrepareTime: 273.430us - SinkTime: 2.343ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.415ms - WaitBfTime: 699.873ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.639ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.419us - CompressTime: 0ns - ExecTime: 2.429ms - InputRows: 14.98K (14980) - LocalBytesSent: 962.30 KB - LocalSendTime: 85.823us - LocalSentRows: 14.98K (14980) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 73.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 14.98K (14980) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.513ms - SplitBlockHashComputeTime: 366.752us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 27.551ms - CloseTime: 1.927ms - DeserializeAndMergeTime: 0ns - ExecTime: 32.211ms - ExprTime: 30.662us - GetResultsTime: 2.634ms - HashTableComputeTime: 7.246ms - HashTableEmplaceTime: 5.874ms - HashTableInputCount: 32.145K (32145) - HashTableIterateTime: 92.250us - HashTableSize: 14.98K (14980) - InsertKeysToColumnTime: 488.481us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 30.153us - ProjectionTime: 0ns - RowsProduced: 14.98K (14980) - SerializeDataTime: 1.963ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.647ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.531us - BlocksProduced: 9 - CloseTime: 64.236us - ExecTime: 92.278ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 226.967us - ProcessConjunctTime: 57.903us - ProjectionTime: 5.950ms - RowsProduced: 32.145K (32145) - RowsRead: 32.145K (32145) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 44.686ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 85.865ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [31.637ms, ] - PerScannerRowsRead: [32.15K, ] - PerScannerWaitTime: [44.686ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.420ms - MemoryUsage: - FreeBlocks: 2.30 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.117ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 846ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.785ms - ScannerCtxSchedTime: 44.684ms - ScannerFilterTime: 50.414us - ScannerGetBlockTime: 31.559ms - ScannerInitTime: 74.444us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 555ns - BlockConditionsFilteredBloomFilterTime: 1.487us - BlockConditionsFilteredDictTime: 6.294us - BlockConditionsFilteredTime: 22.480us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.967us - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.214us - BlockInitTime: 58.826us - BlockLoadTime: 32.334ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.799ms - FirstReadSeekCount: 56 - FirstReadSeekTime: 21.903us - FirstReadTime: 3.473ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.880us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 26.44ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 128.283us - OutputIndexResultColumnTimer: 5.956us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 194.866K (194866) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.948us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 428.241us PipelineXTask (index=11):(Active: 141.958ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 139.660ms - CloseTime: 1.841ms - GetBlockTime: 16.478ms - OpenTime: 125.803us - PrepareTime: 321.438us - SinkTime: 122.983ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 19.979ms - WaitBfTime: 700.46ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.656ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.610us - CompressTime: 0ns - ExecTime: 123.72ms - InputRows: 15.161K (15161) - LocalBytesSent: 999.10 KB - LocalSendTime: 85.566us - LocalSentRows: 15.161K (15161) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 79.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 15.161K (15161) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 122.216ms - SplitBlockHashComputeTime: 342.453us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 14.74ms - CloseTime: 1.743ms - DeserializeAndMergeTime: 0ns - ExecTime: 18.84ms - ExprTime: 15.218us - GetResultsTime: 2.192ms - HashTableComputeTime: 6.670ms - HashTableEmplaceTime: 5.138ms - HashTableInputCount: 34.203K (34203) - HashTableIterateTime: 114.18us - HashTableSize: 15.161K (15161) - InsertKeysToColumnTime: 481.450us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 27.297us - ProjectionTime: 0ns - RowsProduced: 15.161K (15161) - SerializeDataTime: 1.393ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.204ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 90, type = minmax), RuntimeFilter: (id = 91, type = bloomfilter), - PushDownPredicates: [{EXTERNAL_BLOCKING_TIME >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.186us - BlocksProduced: 9 - CloseTime: 79.293us - ExecTime: 141.20ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 210.298us - ProcessConjunctTime: 28.970us - ProjectionTime: 6.3ms - RowsProduced: 34.203K (34203) - RowsRead: 34.203K (34203) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.736ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.559ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.136K (6136) - expr_input_rows: 93.616K (93616) RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 41.274K (41274) - expr_input_rows: 45.979K (45979) VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [23.271ms, ] - PerScannerRowsRead: [34.20K, ] - PerScannerWaitTime: [46.736ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.1ms - MemoryUsage: - FreeBlocks: 2.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.258ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 292ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.977ms - ScannerCtxSchedTime: 46.734ms - ScannerFilterTime: 52.478us - ScannerGetBlockTime: 23.172ms - ScannerInitTime: 71.277us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 347ns - BlockConditionsFilteredBloomFilterTime: 1.215us - BlockConditionsFilteredDictTime: 391ns - BlockConditionsFilteredTime: 20.610us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.174us - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.626us - BlockInitTime: 59.801us - BlockLoadTime: 24.63ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.721ms - FirstReadSeekCount: 60 - FirstReadSeekTime: 35.229us - FirstReadTime: 3.896ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.403us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.415ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 138.613us - OutputIndexResultColumnTimer: 6.256us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 208.747K (208747) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.119us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 416.8us Fragment 38: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 11.313ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.104ms - CloseTime: 45.917us - GetBlockTime: 1.302ms - OpenTime: 8.640us - PrepareTime: 147.290us - SinkTime: 9.739ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.480ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.678ms DATA_STREAM_SINK_OPERATOR (id=296,dst_id=296): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.843us - CompressTime: 0ns - ExecTime: 9.822ms - InputRows: 4.603K (4603) - LocalBytesSent: 237.57 KB - LocalSendTime: 98.31us - LocalSentRows: 4.603K (4603) - MemoryUsage: - PeakMemoryUsage: 346.19 KB - MergeBlockTime: 0ns - OpenTime: 71.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.603K (4603) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 501.66us - SplitBlockHashComputeTime: 159.107us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=295): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.814us - ExecTime: 1.297ms - InitProbeSideTime: 316.41us - JoinFilterTimer: 665ns - MemoryUsage: - PeakMemoryUsage: 100.00 KB - ProbeKeyArena: 100.00 KB - OpenTime: 17.400us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.168us - ProbeFindNextTime: 0ns - ProbeRows: 4.123K (4123) - ProbeTime: 1.19ms - ProbeWhenBuildSideOutputTime: 228.396us - ProbeWhenProbeSideOutputTime: 57.368us - ProbeWhenProcessHashTableTime: 73.498us - ProbeWhenSearchHashTableTime: 236.311us - ProjectionTime: 222.591us - RowsProduced: 4.603K (4603) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=294): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 13.288us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.331us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.75 KB - MemoryUsage: - Blocks: 145.75 KB - PeakMemoryUsage: 145.75 KB - OpenTime: 20.408us - ProjectionTime: 0ns - RowsProduced: 4.123K (4123) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 529.964ms PipelineXTask (index=2):(Active: 1.687ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.361ms - CloseTime: 41.351us - GetBlockTime: 713.705us - OpenTime: 9.89us - PrepareTime: 269.625us - SinkTime: 589.754us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.637ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 268.96ms DATA_STREAM_SINK_OPERATOR (id=296,dst_id=296): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.466us - CompressTime: 0ns - ExecTime: 663.109us - InputRows: 4.597K (4597) - LocalBytesSent: 237.25 KB - LocalSendTime: 79.973us - LocalSentRows: 4.597K (4597) - MemoryUsage: - PeakMemoryUsage: 346.19 KB - MergeBlockTime: 0ns - OpenTime: 56.97us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.597K (4597) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 301.884us - SplitBlockHashComputeTime: 105.710us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=295): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.239us - ExecTime: 863.970us - InitProbeSideTime: 139.724us - JoinFilterTimer: 255ns - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 170.550us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.492us - ProbeFindNextTime: 0ns - ProbeRows: 4.097K (4097) - ProbeTime: 561.311us - ProbeWhenBuildSideOutputTime: 131.767us - ProbeWhenProbeSideOutputTime: 28.387us - ProbeWhenProcessHashTableTime: 42.236us - ProbeWhenSearchHashTableTime: 163.415us - ProjectionTime: 107.178us - RowsProduced: 4.597K (4597) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=294): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 9.376us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.456us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.75 KB - MemoryUsage: - Blocks: 145.75 KB - PeakMemoryUsage: 145.75 KB - OpenTime: 16.312us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 517.829ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.136ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.29ms - CloseTime: 9.827us - GetBlockTime: 28.254us - OpenTime: 3.728us - PrepareTime: 88.115us - SinkTime: 953.864us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.113ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 365.561us HASH_JOIN_SINK_OPERATOR (id=295): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.322us - BuildRows: 4.604K (4604) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 100.535us - BuildTableInsertTime: 335.245us - BuildTableTime: 343.104us - CloseTime: 0ns - ExecTime: 974.501us - InputRows: 4.603K (4603) - MemoryUsage: - BuildBlocks: 215.10 KB - BuildKeyArena: 112.00 KB - HashTable: 54.48 KB - PeakMemoryUsage: 377.58 KB - OpenTime: 22.121us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 169.106us - RuntimeFilterComputeTime: 273.258us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=286): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 7.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.709us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 357.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 336.00 KB - OpenTime: 14.11us - ProjectionTime: 0ns - RowsProduced: 4.603K (4603) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 74.41ms PipelineXTask (index=3):(Active: 2.95ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.988ms - CloseTime: 12.762us - GetBlockTime: 23.908us - OpenTime: 4.331us - PrepareTime: 83.411us - SinkTime: 1.922ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.68ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 674.377us HASH_JOIN_SINK_OPERATOR (id=295): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.632us - BuildRows: 4.598K (4598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 100.632us - BuildTableInsertTime: 1.439ms - BuildTableTime: 1.445ms - CloseTime: 0ns - ExecTime: 1.949ms - InputRows: 4.597K (4597) - MemoryUsage: - BuildBlocks: 214.80 KB - BuildKeyArena: 112.00 KB - HashTable: 54.46 KB - PeakMemoryUsage: 377.25 KB - OpenTime: 27.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.60us - RuntimeFilterComputeTime: 333.117us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=286): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.122us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.674us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 357.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 336.00 KB - OpenTime: 24.153us - ProjectionTime: 0ns - RowsProduced: 4.597K (4597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 73.579ms Fragment 39: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.151ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.902ms - CloseTime: 22.879us - GetBlockTime: 2.43ms - OpenTime: 8.20us - PrepareTime: 208.879us - SinkTime: 787.374us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.113ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.978ms DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.308us - CompressTime: 0ns - ExecTime: 833.954us - InputRows: 7.87K (7870) - LocalBytesSent: 228.91 KB - LocalSendTime: 18.206us - LocalSentRows: 7.87K (7870) - MemoryUsage: - PeakMemoryUsage: 280.00 KB - MergeBlockTime: 0ns - OpenTime: 37.673us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.87K (7870) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 324.765us - SplitBlockHashComputeTime: 311.426us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=293): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 8.38us - ExecTime: 2.13ms - InitProbeSideTime: 293.453us - JoinFilterTimer: 740ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 18.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.735us - ProbeFindNextTime: 0ns - ProbeRows: 7.87K (7870) - ProbeTime: 719.262us - ProbeWhenBuildSideOutputTime: 19.712us - ProbeWhenProbeSideOutputTime: 191.497us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 138.345us - ProjectionTime: 1.248ms - RowsProduced: 7.87K (7870) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 77.649ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 3 - CloseTime: 0ns - ExecTime: 28.724us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 360.00 KB - OpenTime: 1.401us - ProjectionTime: 0ns - RowsProduced: 7.87K (7870) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 443.256ms PipelineXTask (index=3):(Active: 432.284us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 292.469us - CloseTime: 24.542us - GetBlockTime: 179.745us - OpenTime: 7.70us - PrepareTime: 102.131us - SinkTime: 69.156us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 398.612us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.86ms DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.275us - CompressTime: 0ns - ExecTime: 114.242us - InputRows: 350 - LocalBytesSent: 8.33 KB - LocalSendTime: 19.405us - LocalSentRows: 350 - MemoryUsage: - PeakMemoryUsage: 11.50 KB - MergeBlockTime: 0ns - OpenTime: 35.768us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 350 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.905us - SplitBlockHashComputeTime: 11.428us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=293): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 11.547us - ExecTime: 189.39us - InitProbeSideTime: 20.254us - JoinFilterTimer: 153ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.670us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 572ns - ProbeFindNextTime: 0ns - ProbeRows: 350 - ProbeTime: 58.77us - ProbeWhenBuildSideOutputTime: 2.40us - ProbeWhenProbeSideOutputTime: 13.836us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.807us - ProjectionTime: 94.734us - RowsProduced: 350 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 66.282ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 15.75us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 104.00 KB - OpenTime: 585ns - ProjectionTime: 0ns - RowsProduced: 350 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 426.374ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.456ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 679.237us - CloseTime: 142.861us - GetBlockTime: 117.588us - OpenTime: 464.34us - PrepareTime: 158.828us - SinkTime: 54.158us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.297ms - WaitBfTime: 89.941ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.742ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 52.832us - InputRows: 4.404K (4404) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.451us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=292. table name = QYWX_USER_BEHAVIOR_DATA): - RuntimeFilters: : RuntimeFilter: (id = 88, type = minmax), RuntimeFilter: (id = 89, type = bloomfilter), - PushDownPredicates: [{STAT_DATE >= [2021-01-01 00:00:00]}, {AVG_REPLY_TIME is [not null]}] - KeyRanges: ScanKeys:ScanKey=[13302448394 : zhangsb] - TabletIds: [21089] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 179.980us - BlocksProduced: 3 - CloseTime: 139.915us - ExecTime: 275.755ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 558.758us - ProcessConjunctTime: 97.714us - ProjectionTime: 0ns - RowsProduced: 4.404K (4404) - RowsRead: 4.404K (4404) - RuntimeFilterInfo: - filter id = 89 filtered: 1.918884M (1918884) - filter id = 89 input: 1.955222M (1955222) - ScannerWorkerWaitTime: 683.67ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 274.942ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [USER_ID, AVG_REPLY_TIME, STAT_DATE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=7, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [52.704ms, 2.501us, 53.952ms, ] - PerScannerRowsRead: [3, 0, 4.40K, ] - PerScannerWaitTime: [227.040ms, 227.511ms, 228.516ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 106.477ms - MemoryUsage: - FreeBlocks: 480.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 52.72ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 294ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 96.981ms - ScannerCtxSchedTime: 683.60ms - ScannerFilterTime: 11.995us - ScannerGetBlockTime: 106.636ms - ScannerInitTime: 143.27us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id 89: [type = BF, input = 1067267, filtered = 1042438] - BitmapIndexFilterTimer: 6.179us - BlockConditionsFilteredBloomFilterTime: 14.250us - BlockConditionsFilteredDictTime: 6.431us - BlockConditionsFilteredTime: 1.155ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 1.77ms - BlockInitSeekCount: 82 - BlockInitSeekTime: 429.43us - BlockInitTime: 1.839ms - BlockLoadTime: 157.589ms - BlocksLoad: 894 - CachedPagesNum: 753 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.997ms - FirstReadSeekCount: 2.67K (2670) - FirstReadSeekTime: 933.965us - FirstReadTime: 128.204ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.875us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 749.227us - OutputIndexResultColumnTimer: 2.581us - RawRowsRead: 3.60897M (3608970) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 2.550504M (2550504) - RowsShortCircuitPredFiltered: 2.695639M (2695639) - RowsShortCircuitPredInput: 2.720468M (2720468) - RowsStatsFiltered: 1.785856M (1785856) - RowsVectorPredFiltered: 888.502K (888502) - RowsVectorPredInput: 3.60897M (3608970) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 17.811ms - TotalPagesNum: 753 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.545ms PipelineXTask (index=4):(Active: 999.666us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 393.82us - CloseTime: 133.81us - GetBlockTime: 79.804us - OpenTime: 262.651us - PrepareTime: 201.753us - SinkTime: 22.561us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 855.628us - WaitBfTime: 95.904ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.295ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.614us - InputRows: 3.816K (3816) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.290us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=292. table name = QYWX_USER_BEHAVIOR_DATA): - RuntimeFilters: : RuntimeFilter: (id = 88, type = minmax), RuntimeFilter: (id = 89, type = bloomfilter), - PushDownPredicates: [{STAT_DATE >= [2021-01-01 00:00:00]}, {AVG_REPLY_TIME is [not null]}] - KeyRanges: ScanKeys:ScanKey=[13302448394 : zhangsb] - TabletIds: [21091] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 101.254us - BlocksProduced: 1 - CloseTime: 131.168us - ExecTime: 315.708ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 345.296us - ProcessConjunctTime: 63.614us - ProjectionTime: 0ns - RowsProduced: 3.816K (3816) - RowsRead: 3.816K (3816) - RuntimeFilterInfo: - filter id = 89 filtered: 2.382783M (2382783) - filter id = 89 input: 2.428939M (2428939) - ScannerWorkerWaitTime: 674.758ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 315.154ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [USER_ID, AVG_REPLY_TIME, STAT_DATE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=7, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [3.643us, 2.041us, 12.674ms, ] - PerScannerRowsRead: [0, 0, 3.82K, ] - PerScannerWaitTime: [224.726ms, 224.851ms, 225.179ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 12.578ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 225.533ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 277ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 99.220ms - ScannerCtxSchedTime: 674.753ms - ScannerFilterTime: 8.660us - ScannerGetBlockTime: 12.663ms - ScannerInitTime: 74.988us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id 89: [type = BF, input = 1064912, filtered = 1040557] - BitmapIndexFilterTimer: 4.626us - BlockConditionsFilteredBloomFilterTime: 13.162us - BlockConditionsFilteredDictTime: 3.414us - BlockConditionsFilteredTime: 853.680us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 794.140us - BlockInitSeekCount: 80 - BlockInitSeekTime: 406.18us - BlockInitTime: 1.445ms - BlockLoadTime: 217.371ms - BlocksLoad: 899 - CachedPagesNum: 755 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.467ms - FirstReadSeekCount: 2.685K (2685) - FirstReadSeekTime: 888.478us - FirstReadTime: 168.267ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.252us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 565.91us - OutputIndexResultColumnTimer: 2.128us - RawRowsRead: 3.629096M (3629096) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 2.600584M (2600584) - RowsShortCircuitPredFiltered: 2.743353M (2743353) - RowsShortCircuitPredInput: 2.767708M (2767708) - RowsStatsFiltered: 1.835008M (1835008) - RowsVectorPredFiltered: 861.388K (861388) - RowsVectorPredInput: 3.629096M (3629096) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 18.643ms - TotalPagesNum: 755 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 24.559ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 174.851us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 95.223us - CloseTime: 11.976us - GetBlockTime: 8.365us - OpenTime: 3.620us - PrepareTime: 58.479us - SinkTime: 61.937us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.478us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.638ms HASH_JOIN_SINK_OPERATOR (id=293): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.98us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.980us - BuildTableInsertTime: 28.967us - BuildTableTime: 32.711us - CloseTime: 0ns - ExecTime: 73.130us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 11.322us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=291): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.237us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.398us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 18.776us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 440.760ms PipelineXTask (index=5):(Active: 111.938us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.44us - CloseTime: 6.341us - GetBlockTime: 0ns - OpenTime: 4.324us - PrepareTime: 54.65us - SinkTime: 18.96us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.153us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.423ms HASH_JOIN_SINK_OPERATOR (id=293): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689632ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.753us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.745us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 447.198ms EXCHANGE_OPERATOR (id=291): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.636us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.957us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.448us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 40: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 244.510us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 89.214us - CloseTime: 20.769us - GetBlockTime: 47.336us - OpenTime: 3.493us - PrepareTime: 124.534us - SinkTime: 13.231us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.595us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.39ms DATA_STREAM_SINK_OPERATOR (id=291,dst_id=291): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.795us - CompressTime: 0ns - ExecTime: 64.404us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 8.301us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 40.66us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=290): - BlocksProduced: 0 - BuildTime: 35.465us - CloseTime: 194ns - ExecTime: 63.971us - HashTableComputeTime: 15.911us - HashTableEmplaceTime: 7.958us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 26.453us - ProjectionTime: 0ns - RowsProduced: 80 EXCHANGE_OPERATOR (id=289): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.386us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.978us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 13.813us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 412.357ms Fragment 41: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 847.367us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 339.204us - CloseTime: 29.528us - GetBlockTime: 55.936us - OpenTime: 244.907us - PrepareTime: 222.446us - SinkTime: 8.101us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 805.47us - WaitBfTime: 93.696ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.557ms DATA_STREAM_SINK_OPERATOR (id=289,dst_id=289): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.896us - CompressTime: 0ns - ExecTime: 36.695us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 3.981us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 20.86us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=288): - BlocksProduced: 0 - BuildTime: 27.754us - CloseTime: 167ns - ExecTime: 61.258us - HashTableComputeTime: 16.813us - HashTableEmplaceTime: 10.728us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 31.583us - ProjectionTime: 0ns - RowsProduced: 80 OLAP_SCAN_OPERATOR (id=287. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : RuntimeFilter: (id = 88, type = minmax), RuntimeFilter: (id = 89, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[13302448394 : zhangsb] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 133.809us - BlocksProduced: 1 - CloseTime: 18.445us - ExecTime: 229.893ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 336.252us - ProcessConjunctTime: 30.677us - ProjectionTime: 0ns - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - filter id = 89 filtered: 29 - filter id = 89 input: 109 - ScannerWorkerWaitTime: 229.339ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 229.514ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [USER_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [13.678us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [229.339ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 999ns - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 111.445us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.840us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 166.152us - ScannerCtxSchedTime: 229.338ms - ScannerFilterTime: 568ns - ScannerGetBlockTime: 12.121us - ScannerInitTime: 55.454us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id 89: [type = BF, input = 109, filtered = 29] - BitmapIndexFilterTimer: 214ns - BlockConditionsFilteredBloomFilterTime: 492ns - BlockConditionsFilteredDictTime: 355ns - BlockConditionsFilteredTime: 8.952us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.76us - BlockInitSeekCount: 13 - BlockInitSeekTime: 10.997us - BlockInitTime: 36.186us - BlockLoadTime: 61.492us - BlocksLoad: 2 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 104ns - FirstReadTime: 1.651us - IOTimer: 0ns - InvertedIndexFilterTime: 1.127us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 14.821us - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 29 - RowsShortCircuitPredInput: 109 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.14us - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 164ns Fragment 42: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.564ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.406ms - CloseTime: 31.328us - GetBlockTime: 1.946ms - OpenTime: 5.260us - PrepareTime: 105.900us - SinkTime: 1.404ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.522ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.718ms DATA_STREAM_SINK_OPERATOR (id=286,dst_id=286): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 4 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.764us - CompressTime: 0ns - ExecTime: 1.450ms - InputRows: 9.2K (9200) - LocalBytesSent: 429.90 KB - LocalSendTime: 65.477us - LocalSentRows: 9.2K (9200) - MemoryUsage: - PeakMemoryUsage: 714.00 KB - MergeBlockTime: 0ns - OpenTime: 34.926us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.2K (9200) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 883.898us - SplitBlockHashComputeTime: 328.326us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns CROSS_JOIN_OPERATOR (id=285): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 2.420us - ExecTime: 1.927ms - JoinFilterTimer: 614ns - LoopGenerateJoin: 711.432us - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.530us - ProbeRows: 80 - ProbeTime: 0ns - ProjectionTime: 474.340us - RowsProduced: 9.2K (9200) - WaitForDependency[CROSS_JOIN_OPERATOR_DEPENDENCY]Time: 50.298ms EXCHANGE_OPERATOR (id=284): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.897us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.153us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.25 KB - MemoryUsage: - Blocks: 6.25 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 22.959us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13.55ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 83.290us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.71us - CloseTime: 10.103us - GetBlockTime: 4.483us - OpenTime: 2.110us - PrepareTime: 33.227us - SinkTime: 7.760us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 66.400us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 508.478us CROSS_JOIN_SINK_OPERATOR (id=285): - JoinType: RIGHT_OUTER_JOIN - BuildRows: 115 - CloseTime: 0ns - ExecTime: 6.893us - InputRows: 115 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 225ns - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[CROSS_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=279): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.71us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.518us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1024.00 B - MemoryUsage: - Blocks: 1024.00 B - PeakMemoryUsage: 32.00 KB - OpenTime: 13.771us - ProjectionTime: 0ns - RowsProduced: 115 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 69.495ms Fragment 43: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 282.201us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 162.41us - CloseTime: 21.511us - GetBlockTime: 113.223us - OpenTime: 2.730us - PrepareTime: 88.523us - SinkTime: 24.267us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 251.637us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 258.227us DATA_STREAM_SINK_OPERATOR (id=284,dst_id=284): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.178us - CompressTime: 0ns - ExecTime: 64.582us - InputRows: 80 - LocalBytesSent: 2.49 KB - LocalSendTime: 16.600us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=283): - BlocksProduced: 1 - CloseTime: 1.60us - DeserializeAndMergeTime: 0ns - ExecTime: 136.823us - GetResultsTime: 55.977us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.617us - HashTableSize: 80 - InsertKeysToColumnTime: 10.646us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 23.961us - ProjectionTime: 39.428us - RowsProduced: 80 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 12.823ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 273.523us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 176.390us - CloseTime: 13.633us - GetBlockTime: 17.277us - OpenTime: 4.609us - PrepareTime: 73.134us - SinkTime: 123.776us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 249.403us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.290ms AGGREGATION_SINK_OPERATOR (id=283): - BuildTime: 0ns - CloseTime: 1.602us - DeserializeAndMergeTime: 10.185us - ExecTime: 160.192us - ExprTime: 0ns - HashTableComputeTime: 89.989us - HashTableEmplaceTime: 82.263us - HashTableInputCount: 80 - InputRows: 80 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 114.709us - OpenTime: 35.470us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=282): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.38 KB - MemoryUsage: - Blocks: 9.38 KB - PeakMemoryUsage: 11.75 KB - OpenTime: 18.355us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.600ms Fragment 44: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.403ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 733.586us - CloseTime: 110.745us - GetBlockTime: 388.596us - OpenTime: 292.386us - PrepareTime: 255.629us - SinkTime: 21.706us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.278ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.50us DATA_STREAM_SINK_OPERATOR (id=282,dst_id=282): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.481us - CompressTime: 0ns - ExecTime: 74.221us - InputRows: 80 - LocalBytesSent: 3.19 KB - LocalSendTime: 12.860us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 34.591us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=281): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 264.758us - CloseTime: 13.226us - DeserializeAndMergeTime: 0ns - ExecTime: 397.654us - ExprTime: 178.513us - GetResultsTime: 46.45us - HashTableComputeTime: 74.474us - HashTableEmplaceTime: 66.55us - HashTableInputCount: 80 - HashTableIterateTime: 1.788us - HashTableSize: 80 - InsertKeysToColumnTime: 10.812us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 0ns - OpenTime: 55.480us - ProjectionTime: 0ns - RowsProduced: 80 - SerializeDataTime: 18.397us - SerializeKeyTime: 0ns - SerializeResultTime: 49.591us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=280. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 775ns - BlocksProduced: 1 - CloseTime: 73.948us - ExecTime: 1.369ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 362.243us - ProcessConjunctTime: 90.380us - ProjectionTime: 9.344us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 309.537us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 866.561us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID, USER_NAME, DATA_TYPE] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [43.040us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [309.537us, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.529us - MemoryUsage: - FreeBlocks: 144.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 384.159us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 108ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 567.681us - ScannerCtxSchedTime: 306.877us - ScannerFilterTime: 1.682us - ScannerGetBlockTime: 33.155us - ScannerInitTime: 143.383us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 511ns - BlockConditionsFilteredBloomFilterTime: 2.45us - BlockConditionsFilteredDictTime: 36.89us - BlockConditionsFilteredTime: 60.520us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.200us - BlockInitSeekCount: 6 - BlockInitSeekTime: 21.820us - BlockInitTime: 112.87us - BlockLoadTime: 211.348us - BlocksLoad: 2 - CachedPagesNum: 8 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 7.64us - FirstReadTime: 10.56us - IOTimer: 0ns - InvertedIndexFilterTime: 2.458us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 27.528us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 18.822us - OutputIndexResultColumnTimer: 325ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 153ns - TotalPagesNum: 8 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.902us Fragment 45: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 22.190ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.971ms - CloseTime: 173.723us - GetBlockTime: 45.240us - OpenTime: 10.892ms - PrepareTime: 146.344us - SinkTime: 12.297us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 892.72us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.30ms DATA_STREAM_SINK_OPERATOR (id=279,dst_id=279): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.140us - CompressTime: 0ns - ExecTime: 50.172us - InputRows: 115 - LocalBytesSent: 920.00 B - LocalSendTime: 6.857us - LocalSentRows: 115 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.151us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 115 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=278. table name = DIMDATE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[20240101 : 20240107]ScanKey=[20240108 : 20240114]ScanKey=[20240115 : 20240121]ScanKey=[20240122 : 20240128]ScanKey=[20240129 : 20240135]ScanKey=[20240136 : 20240142]ScanKey=[20240143 : 20240149]ScanKey=[20240150 : 20240156]ScanKey=[20240157 : 20240163]ScanKey=[20240164 : 20240170]ScanKey=[20240171 : 20240177]ScanKey=[20240178 : 20240184]ScanKey=[20240185 : 20240191]ScanKey=[20240192 : 20240198]ScanKey=[20240199 : 20240205]ScanKey=[20240206 : 20240212]ScanKey=[20240213 : 20240219]ScanKey=[20240220 : 20240226]ScanKey=[20240227 : 20240233]ScanKey=[20240234 : 20240240]ScanKey=[20240241 : 20240247]ScanKey=[20240248 : 20240254]ScanKey=[20240255 : 20240261]ScanKey=[20240262 : 20240268]ScanKey=[20240269 : 20240275]ScanKey=[20240276 : 20240282]ScanKey=[20240283 : 20240289]ScanKey=[20240290 : 20240296]ScanKey=[20240297 : 20240303]ScanKey=[20240304 : 20240310]ScanKey=[20240311 : 20240317]ScanKey=[20240318 : 20240324]ScanKey=[20240325 : 20240331]ScanKey=[20240332 : 20240338]ScanKey=[20240339 : 20240345]ScanKey=[20240346 : 20240352]ScanKey=[20240353 : 20240359]ScanKey=[20240360 : 20240366]ScanKey=[20240367 : 20240373]ScanKey=[20240374 : 20240380]ScanKey=[20240381 : 20240387]ScanKey=[20240388 : 20240394]ScanKey=[20240395 : 20240401]ScanKey=[20240402 : 20240408]ScanKey=[20240409 : 20240415]ScanKey=[20240416 : 20240422]ScanKey=[20240423 : 20240424] - TabletIds: [18262] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 528ns - BlocksProduced: 1 - CloseTime: 142.925us - ExecTime: 68.831ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 10.970ms - ProcessConjunctTime: 132.377us - ProjectionTime: 0ns - RowsProduced: 115 - RowsRead: 115 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.966ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 57.673ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [DATEKEY] - PerScannerRunningTime: [15.825us, ] - PerScannerRowsRead: [115, ] - PerScannerWaitTime: [56.966ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.958us - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 590.674us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 78ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 709.792us - ScannerCtxSchedTime: 56.964ms - ScannerFilterTime: 1.309us - ScannerGetBlockTime: 12.972us - ScannerInitTime: 10.730ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 166ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.116us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 940 - BlockInitSeekTime: 82.642us - BlockInitTime: 282.422us - BlockLoadTime: 290.894us - BlocksLoad: 2 - CachedPagesNum: 1 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 153ns - FirstReadTime: 1.387us - IOTimer: 0ns - InvertedIndexFilterTime: 358ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 160ns - OutputIndexResultColumnTimer: 255ns - RawRowsRead: 115 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 13.034K (13034) - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 46: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 166.491us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 77.310us - CloseTime: 15.417us - GetBlockTime: 41.422us - OpenTime: 1.600us - PrepareTime: 64.750us - SinkTime: 12.200us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 142.49us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.395ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.722us - CompressTime: 0ns - ExecTime: 58.161us - InputRows: 2 - LocalBytesSent: 60.00 B - LocalSendTime: 7.760us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 33.687us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 709ns - DeserializeAndMergeTime: 0ns - ExecTime: 46.850us - GetResultsTime: 11.227us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 982ns - HashTableSize: 2 - InsertKeysToColumnTime: 2.927us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.85us - ProjectionTime: 19.391us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 617.154ms PipelineXTask (index=2):(Active: 193.13us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 87.398us - CloseTime: 31.746us - GetBlockTime: 50.270us - OpenTime: 476ns - PrepareTime: 68.106us - SinkTime: 17.275us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.509us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.416ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.247us - CompressTime: 0ns - ExecTime: 71.857us - InputRows: 4 - LocalBytesSent: 123.00 B - LocalSendTime: 11.566us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 39.796us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.418us - DeserializeAndMergeTime: 0ns - ExecTime: 56.182us - GetResultsTime: 12.221us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 977ns - HashTableSize: 4 - InsertKeysToColumnTime: 3.865us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.731us - ProjectionTime: 25.948us - RowsProduced: 4 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 541.220ms PipelineXTask (index=4):(Active: 195.170us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 93.773us - CloseTime: 30.314us - GetBlockTime: 60.671us - OpenTime: 923ns - PrepareTime: 64.632us - SinkTime: 14.571us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 157.662us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 61.762ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.948us - CompressTime: 0ns - ExecTime: 65.787us - InputRows: 2 - LocalBytesSent: 61.00 B - LocalSendTime: 9.478us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.938us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 826ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.543us - GetResultsTime: 15.598us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.90us - HashTableSize: 2 - InsertKeysToColumnTime: 3.59us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.359us - ProjectionTime: 33.171us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 549.11ms PipelineXTask (index=6):(Active: 158.243us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.4us - CloseTime: 8.686us - GetBlockTime: 41.311us - OpenTime: 2.100us - PrepareTime: 72.10us - SinkTime: 6.459us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.679us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.800us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.462us - CompressTime: 0ns - ExecTime: 39.445us - InputRows: 6 - LocalBytesSent: 182.00 B - LocalSendTime: 3.588us - LocalSentRows: 6 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 264ns - DeserializeAndMergeTime: 0ns - ExecTime: 49.175us - GetResultsTime: 19.296us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 246ns - HashTableSize: 6 - InsertKeysToColumnTime: 12.405us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.41us - ProjectionTime: 17.170us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 714.900ms PipelineXTask (index=8):(Active: 123.461us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.8us - CloseTime: 8.567us - GetBlockTime: 35.155us - OpenTime: 558ns - PrepareTime: 52.287us - SinkTime: 5.100us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.215us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.645us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.435us - CompressTime: 0ns - ExecTime: 34.87us - InputRows: 2 - LocalBytesSent: 66.00 B - LocalSendTime: 3.0us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 270ns - DeserializeAndMergeTime: 0ns - ExecTime: 43.122us - GetResultsTime: 12.419us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 153ns - HashTableSize: 2 - InsertKeysToColumnTime: 5.629us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.953us - ProjectionTime: 18.81us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 715.18ms PipelineXTask (index=10):(Active: 205.805us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 92.185us - CloseTime: 14.253us - GetBlockTime: 43.673us - OpenTime: 733ns - PrepareTime: 92.6us - SinkTime: 28.124us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 184.91us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.709us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.789us - CompressTime: 0ns - ExecTime: 65.442us - InputRows: 5 - LocalBytesSent: 145.00 B - LocalSendTime: 23.236us - LocalSentRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.904us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 5 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 841ns - DeserializeAndMergeTime: 0ns - ExecTime: 90.859us - GetResultsTime: 8.250us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 347ns - HashTableSize: 5 - InsertKeysToColumnTime: 3.204us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 47.484us - ProjectionTime: 24.113us - RowsProduced: 5 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 714.667ms PipelineXTask (index=12):(Active: 197.865us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.691us - CloseTime: 14.433us - GetBlockTime: 78.972us - OpenTime: 1.198us - PrepareTime: 62.187us - SinkTime: 10.858us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 177.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 603.839ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.42us - CompressTime: 0ns - ExecTime: 43.251us - InputRows: 3 - LocalBytesSent: 95.00 B - LocalSendTime: 6.182us - LocalSentRows: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 20.833us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 710ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.508us - GetResultsTime: 15.0us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 735ns - HashTableSize: 3 - InsertKeysToColumnTime: 4.511us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.140us - ProjectionTime: 39.554us - RowsProduced: 3 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 546.44ms PipelineXTask (index=14):(Active: 204.114us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 116.308us - CloseTime: 16.414us - GetBlockTime: 75.717us - OpenTime: 738ns - PrepareTime: 64.45us - SinkTime: 18.301us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.289us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.574ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.769us - CompressTime: 0ns - ExecTime: 56.966us - InputRows: 5 - LocalBytesSent: 150.00 B - LocalSendTime: 12.172us - LocalSentRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.420us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 5 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.20us - DeserializeAndMergeTime: 0ns - ExecTime: 80.343us - GetResultsTime: 24.262us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.368us - HashTableSize: 5 - InsertKeysToColumnTime: 10.803us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.119us - ProjectionTime: 36.6us - RowsProduced: 5 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 599.713ms PipelineXTask (index=16):(Active: 187.105us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.818us - CloseTime: 15.48us - GetBlockTime: 52.268us - OpenTime: 2.162us - PrepareTime: 65.455us - SinkTime: 21.156us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 164.512us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.196ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.976us - CompressTime: 0ns - ExecTime: 59.42us - InputRows: 3 - LocalBytesSent: 99.00 B - LocalSendTime: 16.435us - LocalSentRows: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.267us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 995ns - DeserializeAndMergeTime: 0ns - ExecTime: 70.566us - GetResultsTime: 12.158us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 891ns - HashTableSize: 3 - InsertKeysToColumnTime: 3.688us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 18.110us - ProjectionTime: 30.389us - RowsProduced: 3 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 688.392ms PipelineXTask (index=18):(Active: 160.357us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 79.57us - CloseTime: 16.285us - GetBlockTime: 53.856us - OpenTime: 602ns - PrepareTime: 57.736us - SinkTime: 7.178us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 135.664us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.322ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.345us - CompressTime: 0ns - ExecTime: 49.458us - InputRows: 6 - LocalBytesSent: 186.00 B - LocalSendTime: 4.524us - LocalSentRows: 6 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.415us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 378ns - DeserializeAndMergeTime: 0ns - ExecTime: 58.549us - GetResultsTime: 27.431us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 733ns - HashTableSize: 6 - InsertKeysToColumnTime: 14.611us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.5us - ProjectionTime: 19.980us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 688.403ms PipelineXTask (index=20):(Active: 197.577us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 122.192us - CloseTime: 17.75us - GetBlockTime: 79.137us - OpenTime: 748ns - PrepareTime: 51.826us - SinkTime: 20.87us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 172.609us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 664.432ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.758us - CompressTime: 0ns - ExecTime: 53.299us - InputRows: 4 - LocalBytesSent: 125.00 B - LocalSendTime: 14.462us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 20.111us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 825ns - DeserializeAndMergeTime: 0ns - ExecTime: 86.346us - GetResultsTime: 12.802us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.7us - HashTableSize: 4 - InsertKeysToColumnTime: 4.136us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.594us - ProjectionTime: 49.875us - RowsProduced: 4 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 724.640ms PipelineXTask (index=22):(Active: 217.326us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 123.253us - CloseTime: 20.788us - GetBlockTime: 87.501us - OpenTime: 774ns - PrepareTime: 67.24us - SinkTime: 14.983us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.758us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 686.105ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.917us - CompressTime: 0ns - ExecTime: 59.822us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 9.407us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.839us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 798ns - DeserializeAndMergeTime: 0ns - ExecTime: 91.783us - GetResultsTime: 22.852us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 948ns - HashTableSize: 1 - InsertKeysToColumnTime: 11.644us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.272us - ProjectionTime: 40.920us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 642.121ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 272.116us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 88.580us - CloseTime: 22.188us - GetBlockTime: 18.105us - OpenTime: 2.509us - PrepareTime: 152.335us - SinkTime: 39.601us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 242.281us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.857ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 852ns - DeserializeAndMergeTime: 2.753us - ExecTime: 63.736us - ExprTime: 0ns - HashTableComputeTime: 24.182us - HashTableEmplaceTime: 15.697us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 33.62us - OpenTime: 23.908us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 19.700us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 78.532us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 896.00 B - PeakMemoryUsage: 3.33 KB - OpenTime: 42.246us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 472.604ms PipelineXTask (index=3):(Active: 200.413us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 127.380us - CloseTime: 14.972us - GetBlockTime: 25.934us - OpenTime: 3.310us - PrepareTime: 49.152us - SinkTime: 68.956us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 177.161us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.266ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.18us - DeserializeAndMergeTime: 4.752us - ExecTime: 86.125us - ExprTime: 0ns - HashTableComputeTime: 45.782us - HashTableEmplaceTime: 26.173us - HashTableInputCount: 5 - InputRows: 5 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 61.0us - OpenTime: 17.177us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 12.351us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.997us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.38 KB - MemoryUsage: - Blocks: 1.38 KB - PeakMemoryUsage: 3.58 KB - OpenTime: 18.34us - ProjectionTime: 0ns - RowsProduced: 5 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 475.254ms PipelineXTask (index=5):(Active: 166.865us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.433us - CloseTime: 14.889us - GetBlockTime: 17.64us - OpenTime: 3.202us - PrepareTime: 43.738us - SinkTime: 47.230us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.613us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.468ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.342us - DeserializeAndMergeTime: 2.361us - ExecTime: 59.161us - ExprTime: 0ns - HashTableComputeTime: 32.274us - HashTableEmplaceTime: 16.909us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 39.463us - OpenTime: 12.243us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 12.173us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 896.00 B - PeakMemoryUsage: 2.84 KB - OpenTime: 16.326us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 520.626ms PipelineXTask (index=7):(Active: 155.895us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 73.238us - CloseTime: 7.875us - GetBlockTime: 21.504us - OpenTime: 3.5us - PrepareTime: 66.803us - SinkTime: 33.305us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.998us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.897ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 373ns - DeserializeAndMergeTime: 2.249us - ExecTime: 53.925us - ExprTime: 0ns - HashTableComputeTime: 23.966us - HashTableEmplaceTime: 12.572us - HashTableInputCount: 6 - InputRows: 6 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 29.126us - OpenTime: 20.877us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 6.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.536us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.88 KB - MemoryUsage: - Blocks: 1.88 KB - PeakMemoryUsage: 3.84 KB - OpenTime: 22.675us - ProjectionTime: 0ns - RowsProduced: 6 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 473.983ms PipelineXTask (index=9):(Active: 121.875us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 56.526us - CloseTime: 8.851us - GetBlockTime: 12.642us - OpenTime: 2.169us - PrepareTime: 49.394us - SinkTime: 26.880us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.978us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.52ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 385ns - DeserializeAndMergeTime: 872ns - ExecTime: 44.410us - ExprTime: 0ns - HashTableComputeTime: 20.139us - HashTableEmplaceTime: 12.975us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 23.481us - OpenTime: 17.315us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 7.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.701us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 896.00 B - PeakMemoryUsage: 3.33 KB - OpenTime: 14.402us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 473.978ms PipelineXTask (index=11):(Active: 224.44us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 118.701us - CloseTime: 13.556us - GetBlockTime: 23.502us - OpenTime: 2.838us - PrepareTime: 75.90us - SinkTime: 63.532us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.397us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.724ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 609ns - DeserializeAndMergeTime: 3.260us - ExecTime: 88.597us - ExprTime: 0ns - HashTableComputeTime: 45.586us - HashTableEmplaceTime: 20.895us - HashTableInputCount: 6 - InputRows: 6 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 55.687us - OpenTime: 25.719us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 11.347us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.329us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.88 KB - MemoryUsage: - Blocks: 1.88 KB - PeakMemoryUsage: 3.84 KB - OpenTime: 20.874us - ProjectionTime: 0ns - RowsProduced: 6 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 472.916ms PipelineXTask (index=13):(Active: 228.86us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 146.559us - CloseTime: 15.376us - GetBlockTime: 21.968us - OpenTime: 2.625us - PrepareTime: 58.510us - SinkTime: 88.333us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 203.502us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.689ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 874ns - DeserializeAndMergeTime: 4.861us - ExecTime: 101.607us - ExprTime: 0ns - HashTableComputeTime: 57.328us - HashTableEmplaceTime: 42.286us - HashTableInputCount: 3 - InputRows: 3 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 76.987us - OpenTime: 14.26us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 12.441us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 960.00 B - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.95 KB - OpenTime: 16.813us - ProjectionTime: 0ns - RowsProduced: 3 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 509.321ms PipelineXTask (index=15):(Active: 211.11us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 127.388us - CloseTime: 14.556us - GetBlockTime: 34.140us - OpenTime: 2.775us - PrepareTime: 61.625us - SinkTime: 51.828us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 187.636us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.587ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.383us - DeserializeAndMergeTime: 3.977us - ExecTime: 78.208us - ExprTime: 0ns - HashTableComputeTime: 29.921us - HashTableEmplaceTime: 18.862us - HashTableInputCount: 5 - InputRows: 5 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 41.963us - OpenTime: 27.249us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.736us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.242us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.44 KB - MemoryUsage: - Blocks: 1024.00 B - PeakMemoryUsage: 2.72 KB - OpenTime: 13.914us - ProjectionTime: 0ns - RowsProduced: 5 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 534.515ms PipelineXTask (index=17):(Active: 203.151us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 132.604us - CloseTime: 11.809us - GetBlockTime: 30.281us - OpenTime: 3.962us - PrepareTime: 49.627us - SinkTime: 62.985us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.241us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 181.235ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.321us - DeserializeAndMergeTime: 6.125us - ExecTime: 80.609us - ExprTime: 0ns - HashTableComputeTime: 33.261us - HashTableEmplaceTime: 20.800us - HashTableInputCount: 3 - InputRows: 3 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 52.684us - OpenTime: 17.727us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 9.405us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.581us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.31 KB - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.64 KB - OpenTime: 19.955us - ProjectionTime: 0ns - RowsProduced: 3 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 515.959ms PipelineXTask (index=19):(Active: 171.540us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 107.59us - CloseTime: 3.198us - GetBlockTime: 28.267us - OpenTime: 2.882us - PrepareTime: 53.341us - SinkTime: 52.504us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 159.947us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 181.382ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 725ns - DeserializeAndMergeTime: 3.493us - ExecTime: 67.158us - ExprTime: 0ns - HashTableComputeTime: 37.399us - HashTableEmplaceTime: 19.899us - HashTableInputCount: 8 - InputRows: 8 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 47.582us - OpenTime: 14.736us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 2.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.960us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.38 KB - MemoryUsage: - Blocks: 1.38 KB - PeakMemoryUsage: 2.85 KB - OpenTime: 22.953us - ProjectionTime: 0ns - RowsProduced: 8 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 515.871ms PipelineXTask (index=21):(Active: 197.689us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 80.625us - CloseTime: 25.930us - GetBlockTime: 13.644us - OpenTime: 3.335us - PrepareTime: 81.425us - SinkTime: 36.601us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 163.152us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 206.636ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.284us - DeserializeAndMergeTime: 1.544us - ExecTime: 80.973us - ExprTime: 0ns - HashTableComputeTime: 25.579us - HashTableEmplaceTime: 17.271us - HashTableInputCount: 4 - InputRows: 4 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 30.537us - OpenTime: 43.981us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 22.797us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.450us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 960.00 B - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 18.889us - ProjectionTime: 0ns - RowsProduced: 4 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 518.54ms PipelineXTask (index=23):(Active: 155.945us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.205us - CloseTime: 15.888us - GetBlockTime: 11.113us - OpenTime: 3.311us - PrepareTime: 63.455us - SinkTime: 30.959us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.997us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 111.135ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.591us - DeserializeAndMergeTime: 1.235us - ExecTime: 55.906us - ExprTime: 0ns - HashTableComputeTime: 19.555us - HashTableEmplaceTime: 11.192us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 24.348us - OpenTime: 24.255us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.966us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.735us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 448.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.70 KB - OpenTime: 24.75us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 531.27ms Fragment 47: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 630.978us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 387.543us - CloseTime: 37.535us - GetBlockTime: 183.612us - OpenTime: 7.588us - PrepareTime: 189.470us - SinkTime: 142.979us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 574.664us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.742ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.354us - CompressTime: 0ns - ExecTime: 228.972us - InputRows: 10 - LocalBytesSent: 420.00 B - LocalSendTime: 53.741us - LocalSentRows: 10 - MemoryUsage: - PeakMemoryUsage: 2.81 KB - MergeBlockTime: 0ns - OpenTime: 75.936us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 10 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.369us - SplitBlockHashComputeTime: 4.118us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 28.201us - CloseTime: 2.684us - DeserializeAndMergeTime: 0ns - ExecTime: 90.540us - ExprTime: 1.784us - GetResultsTime: 21.114us - HashTableComputeTime: 20.700us - HashTableEmplaceTime: 14.45us - HashTableInputCount: 10 - HashTableIterateTime: 1.264us - HashTableSize: 10 - InsertKeysToColumnTime: 6.389us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 30.83us - ProjectionTime: 0ns - RowsProduced: 10 - SerializeDataTime: 6.104us - SerializeKeyTime: 0ns - SerializeResultTime: 24.314us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 8.942us - ExecTime: 91.977us - InitProbeSideTime: 10.615us - JoinFilterTimer: 49ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.163us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 800ns - ProbeFindNextTime: 0ns - ProbeRows: 10 - ProbeTime: 34.550us - ProbeWhenBuildSideOutputTime: 1.663us - ProbeWhenProbeSideOutputTime: 2.229us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.28us - ProjectionTime: 27.43us - RowsProduced: 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 53.741us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 3.04 KB - OpenTime: 11.804us - ProjectionTime: 0ns - RowsProduced: 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 431.705ms PipelineXTask (index=5):(Active: 680.390us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 401.696us - CloseTime: 26.244us - GetBlockTime: 214.927us - OpenTime: 5.965us - PrepareTime: 239.474us - SinkTime: 138.176us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 640.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.414ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.841us - CompressTime: 0ns - ExecTime: 222.181us - InputRows: 8 - LocalBytesSent: 316.00 B - LocalSendTime: 54.610us - LocalSentRows: 8 - MemoryUsage: - PeakMemoryUsage: 3.13 KB - MergeBlockTime: 0ns - OpenTime: 72.763us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.31us - SplitBlockHashComputeTime: 3.717us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 29.690us - CloseTime: 3.398us - DeserializeAndMergeTime: 0ns - ExecTime: 146.480us - ExprTime: 1.971us - GetResultsTime: 36.81us - HashTableComputeTime: 23.144us - HashTableEmplaceTime: 14.294us - HashTableInputCount: 8 - HashTableIterateTime: 1.89us - HashTableSize: 8 - InsertKeysToColumnTime: 6.581us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 68.332us - ProjectionTime: 0ns - RowsProduced: 8 - SerializeDataTime: 17.103us - SerializeKeyTime: 0ns - SerializeResultTime: 40.990us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 6.983us - ExecTime: 134.827us - InitProbeSideTime: 20.637us - JoinFilterTimer: 144ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.122us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 833ns - ProbeFindNextTime: 0ns - ProbeRows: 8 - ProbeTime: 59.776us - ProbeWhenBuildSideOutputTime: 2.526us - ProbeWhenProbeSideOutputTime: 6.846us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.149us - ProjectionTime: 35.994us - RowsProduced: 8 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 18.864us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 832.00 B - OpenTime: 974ns - ProjectionTime: 0ns - RowsProduced: 8 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 406.427ms PipelineXTask (index=10):(Active: 728.526us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 479.795us - CloseTime: 42.339us - GetBlockTime: 206.460us - OpenTime: 7.8us - PrepareTime: 193.342us - SinkTime: 219.728us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 674.257us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.312ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.39us - CompressTime: 0ns - ExecTime: 310.825us - InputRows: 8 - LocalBytesSent: 331.00 B - LocalSendTime: 99.679us - LocalSentRows: 8 - MemoryUsage: - PeakMemoryUsage: 2.75 KB - MergeBlockTime: 0ns - OpenTime: 79.411us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.232us - SplitBlockHashComputeTime: 8.123us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 40.471us - CloseTime: 3.897us - DeserializeAndMergeTime: 0ns - ExecTime: 109.802us - ExprTime: 2.21us - GetResultsTime: 28.991us - HashTableComputeTime: 31.929us - HashTableEmplaceTime: 17.817us - HashTableInputCount: 9 - HashTableIterateTime: 922ns - HashTableSize: 8 - InsertKeysToColumnTime: 7.410us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 22.667us - ProjectionTime: 0ns - RowsProduced: 8 - SerializeDataTime: 7.301us - SerializeKeyTime: 0ns - SerializeResultTime: 37.429us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 21.201us - ExecTime: 140.722us - InitProbeSideTime: 14.223us - JoinFilterTimer: 37ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.845us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 969ns - ProbeFindNextTime: 0ns - ProbeRows: 9 - ProbeTime: 53.391us - ProbeWhenBuildSideOutputTime: 1.532us - ProbeWhenProbeSideOutputTime: 2.811us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.243us - ProjectionTime: 33.638us - RowsProduced: 9 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 11.229us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 896.00 B - OpenTime: 903ns - ProjectionTime: 0ns - RowsProduced: 9 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 420.16ms PipelineXTask (index=15):(Active: 671.823us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 415.196us - CloseTime: 30.0us - GetBlockTime: 201.907us - OpenTime: 6.23us - PrepareTime: 202.294us - SinkTime: 160.884us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 630.894us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.929ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.729us - CompressTime: 0ns - ExecTime: 264.706us - InputRows: 9 - LocalBytesSent: 379.00 B - LocalSendTime: 66.10us - LocalSentRows: 9 - MemoryUsage: - PeakMemoryUsage: 2.38 KB - MergeBlockTime: 0ns - OpenTime: 90.844us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.6us - SplitBlockHashComputeTime: 4.739us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 27.738us - CloseTime: 3.285us - DeserializeAndMergeTime: 0ns - ExecTime: 103.852us - ExprTime: 1.365us - GetResultsTime: 37.915us - HashTableComputeTime: 22.435us - HashTableEmplaceTime: 15.918us - HashTableInputCount: 10 - HashTableIterateTime: 4.515us - HashTableSize: 9 - InsertKeysToColumnTime: 17.184us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 27.387us - ProjectionTime: 0ns - RowsProduced: 9 - SerializeDataTime: 6.786us - SerializeKeyTime: 0ns - SerializeResultTime: 41.297us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 8.507us - ExecTime: 130.530us - InitProbeSideTime: 44.220us - JoinFilterTimer: 134ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.969us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 901ns - ProbeFindNextTime: 0ns - ProbeRows: 10 - ProbeTime: 76.317us - ProbeWhenBuildSideOutputTime: 2.21us - ProbeWhenProbeSideOutputTime: 5.78us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.41us - ProjectionTime: 24.101us - RowsProduced: 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 13.701us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 896.00 B - OpenTime: 1.20us - ProjectionTime: 0ns - RowsProduced: 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 436.744ms PipelineXTask (index=20):(Active: 724.92us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 487.878us - CloseTime: 44.310us - GetBlockTime: 204.176us - OpenTime: 9.113us - PrepareTime: 175.644us - SinkTime: 230.280us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 668.470us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.841ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.930us - CompressTime: 0ns - ExecTime: 310.685us - InputRows: 12 - LocalBytesSent: 482.00 B - LocalSendTime: 81.27us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 0ns - OpenTime: 59.850us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.110us - SplitBlockHashComputeTime: 5.728us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 32.495us - CloseTime: 3.178us - DeserializeAndMergeTime: 0ns - ExecTime: 101.332us - ExprTime: 1.666us - GetResultsTime: 28.333us - HashTableComputeTime: 26.210us - HashTableEmplaceTime: 19.403us - HashTableInputCount: 12 - HashTableIterateTime: 1.7us - HashTableSize: 12 - InsertKeysToColumnTime: 8.858us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 25.175us - ProjectionTime: 0ns - RowsProduced: 12 - SerializeDataTime: 6.894us - SerializeKeyTime: 0ns - SerializeResultTime: 33.520us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 15.113us - ExecTime: 137.612us - InitProbeSideTime: 11.306us - JoinFilterTimer: 125ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.243us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 933ns - ProbeFindNextTime: 0ns - ProbeRows: 12 - ProbeTime: 52.855us - ProbeWhenBuildSideOutputTime: 1.877us - ProbeWhenProbeSideOutputTime: 7.12us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.61us - ProjectionTime: 47.36us - RowsProduced: 12 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 12.55us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 1024.00 B - OpenTime: 883ns - ProjectionTime: 0ns - RowsProduced: 12 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 450.777ms PipelineXTask (index=25):(Active: 384.404us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 154.926us - CloseTime: 16.435us - GetBlockTime: 44.102us - OpenTime: 8.341us - PrepareTime: 197.711us - SinkTime: 78.651us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 359.251us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.847ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.746us - CompressTime: 0ns - ExecTime: 177.158us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.808us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 89.131us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 599ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 575ns - DeserializeAndMergeTime: 0ns - ExecTime: 36.906us - ExprTime: 0ns - GetResultsTime: 4.660us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 132ns - HashTableSize: 0 - InsertKeysToColumnTime: 582ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.756us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 838ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.997us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.829us - ExecTime: 44.431us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.481us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.130us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 9.733us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 283.00 B - OpenTime: 766ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 406.200ms PipelineXTask (index=30):(Active: 310.191us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 99.524us - CloseTime: 15.485us - GetBlockTime: 20.235us - OpenTime: 4.922us - PrepareTime: 183.190us - SinkTime: 55.951us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 287.265us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.733ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.775us - CompressTime: 0ns - ExecTime: 140.455us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.188us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.854us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 475ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 408ns - DeserializeAndMergeTime: 0ns - ExecTime: 42.763us - ExprTime: 0ns - GetResultsTime: 3.259us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 29ns - HashTableSize: 0 - InsertKeysToColumnTime: 251ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 35.735us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 613ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.293us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.220us - ExecTime: 29.370us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.725us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.380us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.527us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.539us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 973ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 471.370ms PipelineXTask (index=35):(Active: 287.485us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 90.169us - CloseTime: 11.96us - GetBlockTime: 12.485us - OpenTime: 6.577us - PrepareTime: 172.980us - SinkTime: 55.491us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 269.691us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.524ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.463us - CompressTime: 0ns - ExecTime: 140.215us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 19.803us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 77.602us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 310ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 333ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.345us - ExprTime: 0ns - GetResultsTime: 2.315us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 127ns - HashTableSize: 0 - InsertKeysToColumnTime: 90ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.332us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 322ns - SerializeKeyTime: 0ns - SerializeResultTime: 3.755us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.749us - ExecTime: 21.686us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.781us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.112us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 2.908us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.525us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 905ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 471.651ms PipelineXTask (index=40):(Active: 336.965us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 106.78us - CloseTime: 14.383us - GetBlockTime: 12.953us - OpenTime: 5.27us - PrepareTime: 204.43us - SinkTime: 61.115us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 314.43us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.807ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.260us - CompressTime: 0ns - ExecTime: 148.666us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.430us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.888us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 383ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 448ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.247us - ExprTime: 0ns - GetResultsTime: 2.295us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 24ns - HashTableSize: 0 - InsertKeysToColumnTime: 105ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.187us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 400ns - SerializeKeyTime: 0ns - SerializeResultTime: 3.661us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.446us - ExecTime: 31.162us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 22.101us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.536us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 2.738us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.394us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 921ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 471.472ms PipelineXTask (index=45):(Active: 566.415us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 264.257us - CloseTime: 39.816us - GetBlockTime: 64.326us - OpenTime: 10.120us - PrepareTime: 244.584us - SinkTime: 163.683us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 517.48us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.508ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.132us - CompressTime: 0ns - ExecTime: 285.657us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 79.965us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.154us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 645ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.440us - DeserializeAndMergeTime: 0ns - ExecTime: 44.856us - ExprTime: 0ns - GetResultsTime: 7.963us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 152ns - HashTableSize: 0 - InsertKeysToColumnTime: 838ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.650us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.990us - SerializeKeyTime: 0ns - SerializeResultTime: 13.864us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.937us - ExecTime: 67.896us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.728us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.27us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 33.975us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.512us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.53us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 472.241ms PipelineXTask (index=50):(Active: 408.15us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 210.32us - CloseTime: 20.248us - GetBlockTime: 34.517us - OpenTime: 7.211us - PrepareTime: 164.552us - SinkTime: 94.984us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 347.538us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.667us DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.563us - CompressTime: 0ns - ExecTime: 172.294us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.305us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 371ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.391us - DeserializeAndMergeTime: 0ns - ExecTime: 47.248us - ExprTime: 0ns - GetResultsTime: 8.614us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 46ns - HashTableSize: 0 - InsertKeysToColumnTime: 776ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 31.895us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.760us - SerializeKeyTime: 0ns - SerializeResultTime: 11.701us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.892us - ExecTime: 36.541us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.26us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.80us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.893us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.396us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.313us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 472.349ms PipelineXTask (index=55):(Active: 407.72us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 166.772us - CloseTime: 18.120us - GetBlockTime: 16.643us - OpenTime: 5.244us - PrepareTime: 209.993us - SinkTime: 77.960us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 334.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 402.530us DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.862us - CompressTime: 0ns - ExecTime: 168.675us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.632us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.90us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 315ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 534ns - DeserializeAndMergeTime: 0ns - ExecTime: 51.556us - ExprTime: 0ns - GetResultsTime: 3.641us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 121ns - HashTableSize: 0 - InsertKeysToColumnTime: 202ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 44.605us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 396ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.255us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.38us - ExecTime: 30.173us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.60us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.680us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.27us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.523us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 796ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 472.300ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 487.364us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 402.796us - CloseTime: 29.117us - GetBlockTime: 275.721us - OpenTime: 5.829us - PrepareTime: 44.160us - SinkTime: 65.644us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 446.554us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.628ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.919us - InputRows: 49 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.610us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 27.84us - ExecTime: 260.336us - InitProbeSideTime: 28.753us - JoinFilterTimer: 423ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.937us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.93us - ProbeFindNextTime: 0ns - ProbeRows: 49 - ProbeTime: 118.569us - ProbeWhenBuildSideOutputTime: 153ns - ProbeWhenProbeSideOutputTime: 19.710us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.456us - ProjectionTime: 84.644us - RowsProduced: 49 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 36.797us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 720.00 KB - OpenTime: 473ns - ProjectionTime: 0ns - RowsProduced: 49 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 356.647ms PipelineXTask (index=6):(Active: 197.958us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 132.237us - CloseTime: 9.65us - GetBlockTime: 70.565us - OpenTime: 6.413us - PrepareTime: 44.334us - SinkTime: 18.19us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.201us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.218ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 18.722us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.242us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.665us - ExecTime: 48.347us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.700us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.164us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 26.343us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 29.533us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 240.00 KB - OpenTime: 453ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 378.344ms PipelineXTask (index=11):(Active: 149.100us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 64.829us - CloseTime: 7.7us - GetBlockTime: 21.791us - OpenTime: 6.431us - PrepareTime: 63.986us - SinkTime: 13.115us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 131.173us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.512ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.765us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.98us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.241us - ExecTime: 52.645us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 28.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.906us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.628us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.885us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 711ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.398ms PipelineXTask (index=16):(Active: 90.778us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.579us - CloseTime: 2.623us - GetBlockTime: 12.87us - OpenTime: 3.252us - PrepareTime: 47.528us - SinkTime: 3.767us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.556us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.772ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.503us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.0us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.732us - ExecTime: 27.811us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.790us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.138us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.818us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 819ns - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 506ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.217ms PipelineXTask (index=21):(Active: 157.703us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 70.278us - CloseTime: 10.694us - GetBlockTime: 26.847us - OpenTime: 5.116us - PrepareTime: 61.197us - SinkTime: 13.517us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.230ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.281us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.122us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.598us - ExecTime: 43.875us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.937us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.547us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.50us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.388us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 904ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.973ms PipelineXTask (index=26):(Active: 120.928us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.479us - CloseTime: 5.831us - GetBlockTime: 25.945us - OpenTime: 3.805us - PrepareTime: 47.870us - SinkTime: 7.942us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.655us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.739ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.679us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.163us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.11us - ExecTime: 43.790us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.145us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.773us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.944us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.660us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 457ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.753ms PipelineXTask (index=31):(Active: 140.869us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 75.365us - CloseTime: 6.966us - GetBlockTime: 19.942us - OpenTime: 7.291us - PrepareTime: 46.230us - SinkTime: 30.285us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 127.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.325ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 30.870us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.178us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.245us - ExecTime: 32.100us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.35us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.948us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.906us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 480ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 406.29ms PipelineXTask (index=36):(Active: 113.383us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 41.70us - CloseTime: 2.736us - GetBlockTime: 12.547us - OpenTime: 3.247us - PrepareTime: 59.226us - SinkTime: 4.579us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.660ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.839us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.429us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.915us - ExecTime: 22.260us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.131us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.774us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.13us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.165us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 480ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.314ms PipelineXTask (index=41):(Active: 109.632us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.456us - CloseTime: 2.927us - GetBlockTime: 17.297us - OpenTime: 7.750us - PrepareTime: 43.424us - SinkTime: 6.930us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.971us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.113ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.704us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.72us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.997us - ExecTime: 32.610us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.922us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 1.718us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.429us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.893us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.44us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 398.899ms PipelineXTask (index=46):(Active: 102.78us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 40.486us - CloseTime: 6.278us - GetBlockTime: 14.673us - OpenTime: 2.990us - PrepareTime: 47.508us - SinkTime: 4.118us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.649us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.909ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.58us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.157us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.463us - ExecTime: 23.840us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.479us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.480us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.258us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.183us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 482ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 405.153ms PipelineXTask (index=51):(Active: 100.612us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.399us - CloseTime: 2.369us - GetBlockTime: 16.266us - OpenTime: 5.698us - PrepareTime: 42.693us - SinkTime: 4.616us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.986us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.232ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.584us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.200us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.601us - ExecTime: 31.709us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.498us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.137us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.994us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 934ns - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 490ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 398.867ms PipelineXTask (index=56):(Active: 124.631us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 64.235us - CloseTime: 4.714us - GetBlockTime: 33.989us - OpenTime: 7.664us - PrepareTime: 43.961us - SinkTime: 8.452us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.601us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 39.397ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.50us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.114us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.84us - ExecTime: 53.983us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.5us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.278us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 22.794us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.290us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 474ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 393.943ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.984ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 814.93us - CloseTime: 338.930us - GetBlockTime: 116.764us - OpenTime: 594.322us - PrepareTime: 222.781us - SinkTime: 32.523us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.620ms - WaitBfTime: 35.741ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.831ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 33.143us - InputRows: 10 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.238us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 63.396us - BlocksProduced: 1 - CloseTime: 335.471us - ExecTime: 243.960ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 730.411us - ProcessConjunctTime: 327.273us - ProjectionTime: 38.289us - RowsProduced: 10 - RowsRead: 10 - RuntimeFilterInfo: - filter id = -1 filtered: 1.75743M (1757430) - filter id = -1 input: 1.791142M (1791142) - ScannerWorkerWaitTime: 905.983ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 242.739ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DECIMAL32, GT), column_id=12, opposite=false ComparisonPredicateBase(STRING, EQ), column_id=17, opposite=false - PerScannerRunningTime: [6.327us, 9.110us, 12.977us, 3.266ms, ] - PerScannerRowsRead: [0, 0, 0, 10, ] - PerScannerWaitTime: [226.061ms, 226.071ms, 226.731ms, 227.119ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.843ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 90.566ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 395ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.454ms - ScannerCtxSchedTime: 905.977ms - ScannerFilterTime: 7.661us - ScannerGetBlockTime: 3.248ms - ScannerInitTime: 170.246us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1073778, filtered = 1050372] - BitmapIndexFilterTimer: 2.912us - BlockConditionsFilteredBloomFilterTime: 8.789us - BlockConditionsFilteredDictTime: 316.662us - BlockConditionsFilteredTime: 482.518us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 107.209us - BlockInitSeekCount: 37 - BlockInitSeekTime: 48.932us - BlockInitTime: 664.605us - BlockLoadTime: 92.527ms - BlocksLoad: 201 - CachedPagesNum: 317 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.405ms - FirstReadSeekCount: 588 - FirstReadSeekTime: 141.443us - FirstReadTime: 11.479ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.303us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 72.209ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 719.8us - OutputIndexResultColumnTimer: 8.472us - RawRowsRead: 788.075K (788075) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 245.206K (245206) - RowsDictFiltered: 245.206K (245206) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 525.186K (525186) - RowsShortCircuitPredInput: 536.889K (536889) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 251.186K (251186) - RowsVectorPredInput: 788.075K (788075) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 72.373ms - ShortPredEvalTime: 1.894ms - TotalPagesNum: 317 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.568ms PipelineXTask (index=7):(Active: 1.652ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 687.409us - CloseTime: 227.923us - GetBlockTime: 64.116us - OpenTime: 559.214us - PrepareTime: 166.77us - SinkTime: 27.127us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.411ms - WaitBfTime: 35.815ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.675ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 26.273us - InputRows: 8 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 946ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 42.915us - BlocksProduced: 1 - CloseTime: 225.209us - ExecTime: 235.875ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 651.382us - ProcessConjunctTime: 313.683us - ProjectionTime: 26.116us - RowsProduced: 8 - RowsRead: 8 - RuntimeFilterInfo: - filter id = -1 filtered: 1.810158M (1810158) - filter id = -1 input: 1.883412M (1883412) - ScannerWorkerWaitTime: 915.672ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 234.909ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DECIMAL32, GT), column_id=12, opposite=false ComparisonPredicateBase(STRING, EQ), column_id=17, opposite=false - PerScannerRunningTime: [8.852us, 15.585us, 15.681us, 3.018ms, ] - PerScannerRowsRead: [0, 0, 0, 8, ] - PerScannerWaitTime: [227.444ms, 228.245ms, 229.536ms, 230.446ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.648ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 25.842ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 292ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.310ms - ScannerCtxSchedTime: 915.667ms - ScannerFilterTime: 4.346us - ScannerGetBlockTime: 3.7ms - ScannerInitTime: 165.401us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1164718, filtered = 1102178] - BitmapIndexFilterTimer: 2.711us - BlockConditionsFilteredBloomFilterTime: 8.115us - BlockConditionsFilteredDictTime: 404.146us - BlockConditionsFilteredTime: 562.503us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 106.415us - BlockInitSeekCount: 43 - BlockInitSeekTime: 41.101us - BlockInitTime: 745.956us - BlockLoadTime: 27.532ms - BlocksLoad: 221 - CachedPagesNum: 348 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.46ms - FirstReadSeekCount: 648 - FirstReadSeekTime: 154.130us - FirstReadTime: 13.328ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.517us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.159ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.112ms - OutputIndexResultColumnTimer: 9.256us - RawRowsRead: 867.733K (867733) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 245.246K (245246) - RowsDictFiltered: 245.246K (245246) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 551.089K (551089) - RowsShortCircuitPredInput: 582.359K (582359) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 285.374K (285374) - RowsVectorPredInput: 867.733K (867733) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.314ms - ShortPredEvalTime: 2.388ms - TotalPagesNum: 348 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.820ms PipelineXTask (index=12):(Active: 2.491ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.111ms - CloseTime: 193.99us - GetBlockTime: 73.435us - OpenTime: 1.0ms - PrepareTime: 175.972us - SinkTime: 11.158us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.140ms - WaitBfTime: 37.377ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.517ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.465us - InputRows: 10 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 980ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.404us - BlocksProduced: 1 - CloseTime: 191.710us - ExecTime: 246.707ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 1.75ms - ProcessConjunctTime: 184.696us - ProjectionTime: 31.47us - RowsProduced: 10 - RowsRead: 10 - RuntimeFilterInfo: - filter id = -1 filtered: 1.829274M (1829274) - filter id = -1 input: 1.900854M (1900854) - ScannerWorkerWaitTime: 980.28ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 245.334ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DECIMAL32, GT), column_id=12, opposite=false ComparisonPredicateBase(STRING, EQ), column_id=17, opposite=false - PerScannerRunningTime: [5.772us, 9.416us, 13.504us, 2.612ms, ] - PerScannerRowsRead: [0, 0, 0, 10, ] - PerScannerWaitTime: [244.765ms, 244.832ms, 245.083ms, 245.347ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.255ms - MemoryUsage: - FreeBlocks: 480.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 27.377ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 252ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.402ms - ScannerCtxSchedTime: 980.23ms - ScannerFilterTime: 7.919us - ScannerGetBlockTime: 2.591ms - ScannerInitTime: 730.921us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1174710, filtered = 1112902] - BitmapIndexFilterTimer: 2.60us - BlockConditionsFilteredBloomFilterTime: 6.92us - BlockConditionsFilteredDictTime: 368.521us - BlockConditionsFilteredTime: 497.70us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 78.387us - BlockInitSeekCount: 57 - BlockInitSeekTime: 41.95us - BlockInitTime: 634.242us - BlockLoadTime: 28.878ms - BlocksLoad: 224 - CachedPagesNum: 358 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.500ms - FirstReadSeekCount: 657 - FirstReadSeekTime: 134.354us - FirstReadTime: 13.435ms - IOTimer: 0ns - InvertedIndexFilterTime: 17.68us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.74ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.340ms - OutputIndexResultColumnTimer: 15.888us - RawRowsRead: 877.72K (877720) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 259.643K (259643) - RowsDictFiltered: 259.643K (259643) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 556.451K (556451) - RowsShortCircuitPredInput: 587.355K (587355) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 290.365K (290365) - RowsVectorPredInput: 877.72K (877720) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.297ms - ShortPredEvalTime: 2.298ms - TotalPagesNum: 358 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.774ms PipelineXTask (index=17):(Active: 56.74ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.912ms - CloseTime: 224.252us - GetBlockTime: 94.186us - OpenTime: 27.732ms - PrepareTime: 191.292us - SinkTime: 31.455us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.935ms - WaitBfTime: 36.901ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.149ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 31.474us - InputRows: 12 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 943ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.147us - BlocksProduced: 1 - CloseTime: 221.616us - ExecTime: 303.763ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 27.841ms - ProcessConjunctTime: 262.361us - ProjectionTime: 33.928us - RowsProduced: 12 - RowsRead: 12 - RuntimeFilterInfo: - filter id = -1 filtered: 1.699856M (1699856) - filter id = -1 input: 1.783838M (1783838) - ScannerWorkerWaitTime: 905.752ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 275.573ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DECIMAL32, GT), column_id=12, opposite=false ComparisonPredicateBase(STRING, EQ), column_id=17, opposite=false - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [6.049us, 9.526us, 12.546us, 54.717ms, ] - PerScannerRowsRead: [0, 0, 0, 12, ] - PerScannerWaitTime: [225.832ms, 225.835ms, 226.859ms, 227.223ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 54.282ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 114.711ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 390ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.607ms - ScannerCtxSchedTime: 905.746ms - ScannerFilterTime: 7.639us - ScannerGetBlockTime: 54.702ms - ScannerInitTime: 27.373ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 979306, filtered = 911890] - BitmapIndexFilterTimer: 2.138us - BlockConditionsFilteredBloomFilterTime: 6.714us - BlockConditionsFilteredDictTime: 322.644us - BlockConditionsFilteredTime: 445.158us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 82.118us - BlockInitSeekCount: 43 - BlockInitSeekTime: 40.60us - BlockInitTime: 582.458us - BlockLoadTime: 168.147ms - BlocksLoad: 199 - CachedPagesNum: 444 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 25.591ms - FirstReadSeekCount: 601 - FirstReadSeekTime: 130.87us - FirstReadTime: 10.336ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.69us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 124.673ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.421ms - OutputIndexResultColumnTimer: 13.455us - RawRowsRead: 780.391K (780391) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 242.615K (242615) - RowsDictFiltered: 242.615K (242615) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 455.945K (455945) - RowsShortCircuitPredInput: 489.653K (489653) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 290.738K (290738) - RowsVectorPredInput: 780.391K (780391) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 124.917ms - ShortPredEvalTime: 1.927ms - TotalPagesNum: 444 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.469ms PipelineXTask (index=22):(Active: 1.316ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 539.875us - CloseTime: 133.2us - GetBlockTime: 45.648us - OpenTime: 452.821us - PrepareTime: 180.16us - SinkTime: 3.282us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.171ms - WaitBfTime: 30.422ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.519ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 3.796us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 970ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 38.942us - BlocksProduced: 0 - CloseTime: 131.796us - ExecTime: 245.334ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 547.549us - ProcessConjunctTime: 270.944us - ProjectionTime: 4.912us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.191548M (1191548) - filter id = -1 input: 1.260674M (1260674) - ScannerWorkerWaitTime: 729.621ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 244.606ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [19.035us, 8.399us, 14.755us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [242.917ms, 243.153ms, 243.551ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.802ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 293ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.58ms - ScannerCtxSchedTime: 729.617ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.105us - ScannerInitTime: 110.672us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 899662, filtered = 836444] - BitmapIndexFilterTimer: 1.532us - BlockConditionsFilteredBloomFilterTime: 4.161us - BlockConditionsFilteredDictTime: 284.77us - BlockConditionsFilteredTime: 372.803us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 57.481us - BlockInitSeekCount: 24 - BlockInitSeekTime: 24.457us - BlockInitTime: 467.408us - BlockLoadTime: 22.36ms - BlocksLoad: 180 - CachedPagesNum: 376 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.476ms - FirstReadSeekCount: 531 - FirstReadSeekTime: 88.180us - FirstReadTime: 8.900ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.419us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.835ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.20ms - OutputIndexResultColumnTimer: 11.615us - RawRowsRead: 714.766K (714766) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 240.805K (240805) - RowsDictFiltered: 240.805K (240805) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 418.222K (418222) - RowsShortCircuitPredInput: 449.831K (449831) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 264.935K (264935) - RowsVectorPredInput: 714.766K (714766) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 5.130ms - ShortPredEvalTime: 1.735ms - TotalPagesNum: 376 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.307ms PipelineXTask (index=27):(Active: 1.855ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 804.599us - CloseTime: 172.409us - GetBlockTime: 61.181us - OpenTime: 683.93us - PrepareTime: 184.430us - SinkTime: 15.243us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.668ms - WaitBfTime: 24.849ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.227ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.274us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.346us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 48.85us - BlocksProduced: 0 - CloseTime: 169.917us - ExecTime: 262.862ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 779.280us - ProcessConjunctTime: 268.63us - ProjectionTime: 6.318us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.172984M (1172984) - filter id = -1 input: 1.238992M (1238992) - ScannerWorkerWaitTime: 711.940ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.848ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [5.980us, 6.633us, 13.155us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [236.496ms, 237.144ms, 238.300ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 85.459ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 550ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.585ms - ScannerCtxSchedTime: 711.937ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.547us - ScannerInitTime: 329.205us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 890200, filtered = 829038] - BitmapIndexFilterTimer: 1.862us - BlockConditionsFilteredBloomFilterTime: 4.792us - BlockConditionsFilteredDictTime: 332.48us - BlockConditionsFilteredTime: 438.83us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 76.630us - BlockInitSeekCount: 35 - BlockInitSeekTime: 28.944us - BlockInitTime: 554.592us - BlockLoadTime: 84.689ms - BlocksLoad: 179 - CachedPagesNum: 381 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.574ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 103.356us - FirstReadTime: 70.651ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.294us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.85ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.155ms - OutputIndexResultColumnTimer: 12.420us - RawRowsRead: 708.636K (708636) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 341.69K (341690) - RowsDictFiltered: 341.69K (341690) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 414.519K (414519) - RowsShortCircuitPredInput: 445.1K (445100) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 263.536K (263536) - RowsVectorPredInput: 708.636K (708636) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 5.400ms - ShortPredEvalTime: 1.843ms - TotalPagesNum: 381 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.346ms PipelineXTask (index=32):(Active: 1.754ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 767.722us - CloseTime: 141.186us - GetBlockTime: 70.587us - OpenTime: 649.822us - PrepareTime: 183.440us - SinkTime: 10.24us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.599ms - WaitBfTime: 24.309ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.361ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 12.239us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.889us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.798us - BlocksProduced: 0 - CloseTime: 138.887us - ExecTime: 239.364ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 757.127us - ProcessConjunctTime: 348.367us - ProjectionTime: 6.22us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.149396M (1149396) - filter id = -1 input: 1.18876M (1188760) - ScannerWorkerWaitTime: 693.986ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 238.393ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [10.637us, 9.541us, 9.762us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [231.053ms, 231.238ms, 231.694ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.500ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 361ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.840ms - ScannerCtxSchedTime: 693.981ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 8.841us - ScannerInitTime: 212.815us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 838064, filtered = 804840] - BitmapIndexFilterTimer: 1.706us - BlockConditionsFilteredBloomFilterTime: 6.142us - BlockConditionsFilteredDictTime: 322.122us - BlockConditionsFilteredTime: 419.259us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.389us - BlockInitSeekCount: 24 - BlockInitSeekTime: 24.168us - BlockInitTime: 530.906us - BlockLoadTime: 19.643ms - BlocksLoad: 170 - CachedPagesNum: 356 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.866ms - FirstReadSeekCount: 501 - FirstReadSeekTime: 88.551us - FirstReadTime: 8.525ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.466us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.933ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 753.338us - OutputIndexResultColumnTimer: 10.954us - RawRowsRead: 673.414K (673414) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 343.677K (343677) - RowsDictFiltered: 343.677K (343677) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 402.42K (402420) - RowsShortCircuitPredInput: 419.032K (419032) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 254.382K (254382) - RowsVectorPredInput: 673.414K (673414) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.200ms - ShortPredEvalTime: 1.443ms - TotalPagesNum: 356 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.243ms PipelineXTask (index=37):(Active: 1.27ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 390.639us - CloseTime: 161.557us - GetBlockTime: 62.368us - OpenTime: 294.124us - PrepareTime: 172.177us - SinkTime: 10.890us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 857.156us - WaitBfTime: 37.28ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.696ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.859us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 883ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 28.930us - BlocksProduced: 0 - CloseTime: 159.176us - ExecTime: 244.953ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 386.266us - ProcessConjunctTime: 158.832us - ProjectionTime: 4.659us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.173566M (1173566) - filter id = -1 input: 1.212328M (1212328) - ScannerWorkerWaitTime: 732.262ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 244.341ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [6.062us, 7.033us, 6.486us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [243.637ms, 244.273ms, 244.352ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.191ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 218ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.414ms - ScannerCtxSchedTime: 732.259ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.794us - ScannerInitTime: 83.34us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 853162, filtered = 819920] - BitmapIndexFilterTimer: 1.460us - BlockConditionsFilteredBloomFilterTime: 4.126us - BlockConditionsFilteredDictTime: 341.445us - BlockConditionsFilteredTime: 424.384us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 58.759us - BlockInitSeekCount: 36 - BlockInitSeekTime: 27.758us - BlockInitTime: 522.208us - BlockLoadTime: 22.449ms - BlocksLoad: 174 - CachedPagesNum: 365 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.147ms - FirstReadSeekCount: 513 - FirstReadSeekTime: 86.218us - FirstReadTime: 9.662ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.193us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.814ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 753.739us - OutputIndexResultColumnTimer: 13.165us - RawRowsRead: 688.817K (688817) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 342.317K (342317) - RowsDictFiltered: 342.317K (342317) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 409.96K (409960) - RowsShortCircuitPredInput: 426.581K (426581) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 262.236K (262236) - RowsVectorPredInput: 688.817K (688817) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 5.148ms - ShortPredEvalTime: 1.587ms - TotalPagesNum: 365 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.431ms PipelineXTask (index=42):(Active: 1.321ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 541.276us - CloseTime: 112.510us - GetBlockTime: 60.857us - OpenTime: 442.318us - PrepareTime: 210.137us - SinkTime: 3.239us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.191ms - WaitBfTime: 24.932ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.748ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 3.430us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 916ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 36.96us - BlocksProduced: 0 - CloseTime: 110.763us - ExecTime: 245.732ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 540.965us - ProcessConjunctTime: 249.737us - ProjectionTime: 5.464us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.305156M (1305156) - filter id = -1 input: 1.368996M (1368996) - ScannerWorkerWaitTime: 705.418ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 245.15ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [6.754us, 6.878us, 10.483us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [234.075ms, 234.905ms, 236.437ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.834ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.94ms - ScannerCtxSchedTime: 705.412ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.457us - ScannerInitTime: 109.491us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 926522, filtered = 881104] - BitmapIndexFilterTimer: 1.536us - BlockConditionsFilteredBloomFilterTime: 4.41us - BlockConditionsFilteredDictTime: 397.835us - BlockConditionsFilteredTime: 498.179us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 67.613us - BlockInitSeekCount: 37 - BlockInitSeekTime: 33.498us - BlockInitTime: 616.516us - BlockLoadTime: 31.999ms - BlocksLoad: 182 - CachedPagesNum: 388 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.318ms - FirstReadSeekCount: 537 - FirstReadSeekTime: 103.633us - FirstReadTime: 15.766ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.493us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.677ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.339ms - OutputIndexResultColumnTimer: 23.996us - RawRowsRead: 724.4K (724400) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 341.854K (341854) - RowsDictFiltered: 341.854K (341854) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 440.552K (440552) - RowsShortCircuitPredInput: 463.261K (463261) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 261.139K (261139) - RowsVectorPredInput: 724.4K (724400) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 5.116ms - ShortPredEvalTime: 2.556ms - TotalPagesNum: 388 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.682ms PipelineXTask (index=47):(Active: 1.276ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 540.828us - CloseTime: 118.914us - GetBlockTime: 64.611us - OpenTime: 416.707us - PrepareTime: 190.279us - SinkTime: 9.282us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.128ms - WaitBfTime: 36.915ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.126ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.454us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 919ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 58.398us - BlocksProduced: 0 - CloseTime: 117.10us - ExecTime: 234.875ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 507.623us - ProcessConjunctTime: 239.846us - ProjectionTime: 4.937us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.30246M (1302460) - filter id = -1 input: 1.367066M (1367066) - ScannerWorkerWaitTime: 701.210ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 234.180ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [6.845us, 6.759us, 6.538us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [233.341ms, 233.675ms, 234.193ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.46ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 181ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.176ms - ScannerCtxSchedTime: 701.206ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.112us - ScannerInitTime: 93.576us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 925116, filtered = 879482] - BitmapIndexFilterTimer: 1.508us - BlockConditionsFilteredBloomFilterTime: 4.187us - BlockConditionsFilteredDictTime: 402.745us - BlockConditionsFilteredTime: 505.328us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 74.632us - BlockInitSeekCount: 22 - BlockInitSeekTime: 28.542us - BlockInitTime: 609.545us - BlockLoadTime: 23.272ms - BlocksLoad: 184 - CachedPagesNum: 389 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.135ms - FirstReadSeekCount: 543 - FirstReadSeekTime: 81.279us - FirstReadTime: 11.105ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.998us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.750ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 890.3us - OutputIndexResultColumnTimer: 10.38us - RawRowsRead: 728.74K (728740) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 344.296K (344296) - RowsDictFiltered: 344.296K (344296) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 439.741K (439741) - RowsShortCircuitPredInput: 462.558K (462558) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 266.182K (266182) - RowsVectorPredInput: 728.74K (728740) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.49ms - ShortPredEvalTime: 2.44ms - TotalPagesNum: 389 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.363ms PipelineXTask (index=52):(Active: 1.159ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 444.461us - CloseTime: 139.865us - GetBlockTime: 47.63us - OpenTime: 366.768us - PrepareTime: 198.330us - SinkTime: 6.240us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.8ms - WaitBfTime: 37.309ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.95ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.298us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.587us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.481us - BlocksProduced: 0 - CloseTime: 138.534us - ExecTime: 250.85ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 458.636us - ProcessConjunctTime: 203.163us - ProjectionTime: 8.612us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 2.971316M (2971316) - filter id = -1 input: 3.044028M (3044028) - ScannerWorkerWaitTime: 725.323ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 249.433ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [8.023us, 8.720us, 10.205us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [241.051ms, 241.154ms, 243.117ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.564ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 224ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.779ms - ScannerCtxSchedTime: 725.318ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.741us - ScannerInitTime: 109.581us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1466330, filtered = 1421010] - BitmapIndexFilterTimer: 2.71us - BlockConditionsFilteredBloomFilterTime: 5.896us - BlockConditionsFilteredDictTime: 343.782us - BlockConditionsFilteredTime: 466.837us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 68.649us - BlockInitSeekCount: 25 - BlockInitSeekTime: 26.50us - BlockInitTime: 583.904us - BlockLoadTime: 52.676ms - BlocksLoad: 274 - CachedPagesNum: 448 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.98ms - FirstReadSeekCount: 813 - FirstReadSeekTime: 144.994us - FirstReadTime: 16.98ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.9us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.859ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.13ms - OutputIndexResultColumnTimer: 11.658us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 710.505K (710505) - RowsShortCircuitPredInput: 733.165K (733165) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 366.046K (366046) - RowsVectorPredInput: 1.099211M (1099211) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.131ms - ShortPredEvalTime: 24.863ms - TotalPagesNum: 448 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.181ms PipelineXTask (index=57):(Active: 1.440ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 617.424us - CloseTime: 138.909us - GetBlockTime: 53.246us - OpenTime: 504.397us - PrepareTime: 168.658us - SinkTime: 22.885us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.286ms - WaitBfTime: 24.467ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.747ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.598us - InputRows: 9 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.80us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 84, type = minmax), RuntimeFilter: (id = 85, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {TOTAL_FEE >> [0]}, {PAY_STATUS IN [1]}] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 35.757us - BlocksProduced: 1 - CloseTime: 137.185us - ExecTime: 240.302ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 589.172us - ProcessConjunctTime: 283.599us - ProjectionTime: 27.490us - RowsProduced: 9 - RowsRead: 9 - RuntimeFilterInfo: - filter id = -1 filtered: 590.236K (590236) - filter id = -1 input: 619.236K (619236) - ScannerWorkerWaitTime: 696.765ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 239.496ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 84, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 85, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, STAFF_ID, PRODUCT_TEMPLATE_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DECIMAL32, GT), column_id=12, opposite=false ComparisonPredicateBase(STRING, EQ), column_id=17, opposite=false - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.933us, 13.590us, 3.328ms, ] - PerScannerRowsRead: [0, 0, 9, ] - PerScannerWaitTime: [231.676ms, 232.291ms, 232.796ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.986ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.709ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 248ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.421ms - ScannerCtxSchedTime: 696.761ms - ScannerFilterTime: 7.114us - ScannerGetBlockTime: 3.300ms - ScannerInitTime: 152.646us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 528518, filtered = 504706] - BitmapIndexFilterTimer: 1.782us - BlockConditionsFilteredBloomFilterTime: 5.764us - BlockConditionsFilteredDictTime: 196.710us - BlockConditionsFilteredTime: 290.585us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 59.335us - BlockInitSeekCount: 35 - BlockInitSeekTime: 32.741us - BlockInitTime: 405.459us - BlockLoadTime: 15.89ms - BlocksLoad: 107 - CachedPagesNum: 250 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.97ms - FirstReadSeekCount: 328 - FirstReadSeekTime: 92.7us - FirstReadTime: 6.595ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.789us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.417ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 585.153us - OutputIndexResultColumnTimer: 7.286us - RawRowsRead: 408.963K (408963) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 379.302K (379302) - RowsDictFiltered: 379.302K (379302) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 252.353K (252353) - RowsShortCircuitPredInput: 264.259K (264259) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 144.704K (144704) - RowsVectorPredInput: 408.963K (408963) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.512ms - ShortPredEvalTime: 1.223ms - TotalPagesNum: 250 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 779.114us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 430.384us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 334.847us - CloseTime: 15.238us - GetBlockTime: 11.233us - OpenTime: 2.167us - PrepareTime: 72.865us - SinkTime: 276.720us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.830us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 687.155us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.193us - BuildRows: 5.621K (5621) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 114.341us - BuildTableInsertTime: 81.605us - BuildTableTime: 106.731us - CloseTime: 0ns - ExecTime: 287.68us - InputRows: 5.62K (5620) - MemoryUsage: - BuildBlocks: 49.39 KB - BuildKeyArena: 0.00 - HashTable: 53.96 KB - PeakMemoryUsage: 103.35 KB - OpenTime: 11.123us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=265): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 13.527us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 60.245us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.00 KB - MemoryUsage: - Blocks: 54.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 37.206us - ProjectionTime: 0ns - RowsProduced: 5.62K (5620) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 49.280ms PipelineXTask (index=8):(Active: 151.978us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.333us - CloseTime: 7.149us - GetBlockTime: 0ns - OpenTime: 2.750us - PrepareTime: 98.476us - SinkTime: 14.120us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.233us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.307ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.891us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.10us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 37.988ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.596us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.339us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 48.635us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 115.227us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.51us - CloseTime: 12.270us - GetBlockTime: 0ns - OpenTime: 2.315us - PrepareTime: 60.800us - SinkTime: 14.948us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.508us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.223ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.916us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.274us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 49.309ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.645us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.566us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 107.983us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.850us - CloseTime: 6.303us - GetBlockTime: 0ns - OpenTime: 2.588us - PrepareTime: 68.88us - SinkTime: 8.174us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.827us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.381ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.266us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.193us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 49.189ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.372us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.443us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 90.523us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.665us - CloseTime: 4.583us - GetBlockTime: 0ns - OpenTime: 3.692us - PrepareTime: 50.595us - SinkTime: 6.829us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.114us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 291.858us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.296us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.882us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 49.969ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.47us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.86us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.47us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 99.344us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.674us - CloseTime: 5.358us - GetBlockTime: 0ns - OpenTime: 2.522us - PrepareTime: 60.367us - SinkTime: 7.677us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.833us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.705ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.432us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.951us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 42.875ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.458us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.128us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 130.266us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.892us - CloseTime: 5.950us - GetBlockTime: 0ns - OpenTime: 1.796us - PrepareTime: 92.334us - SinkTime: 8.386us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 117.704us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.358ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.763us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.642us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 37.945ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.332us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.505us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 37.345us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 129.29us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.661us - CloseTime: 4.393us - GetBlockTime: 0ns - OpenTime: 4.215us - PrepareTime: 47.770us - SinkTime: 7.170us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.560us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.744ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.30us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.89us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 44.810ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.913us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.58us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 82.337us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.958us - CloseTime: 5.16us - GetBlockTime: 0ns - OpenTime: 1.818us - PrepareTime: 52.591us - SinkTime: 5.871us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 72.89us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.464ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.315us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.854us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 37.874ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.683us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.786us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 110.207us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.155us - CloseTime: 6.699us - GetBlockTime: 0ns - OpenTime: 3.317us - PrepareTime: 51.962us - SinkTime: 17.240us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 388.917us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.520us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.426us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 49.811ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.164us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.164us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 111.148us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.569us - CloseTime: 9.247us - GetBlockTime: 0ns - OpenTime: 2.974us - PrepareTime: 49.68us - SinkTime: 23.711us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.869us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.417ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.29us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.503us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 41.201ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.829us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.305us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 123.649us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.243us - CloseTime: 4.682us - GetBlockTime: 0ns - OpenTime: 1.688us - PrepareTime: 82.251us - SinkTime: 5.285us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.706us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.439ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.57us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.913us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 37.905ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.127us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.128us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 290.945us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 205.373us - CloseTime: 8.666us - GetBlockTime: 7.295us - OpenTime: 2.385us - PrepareTime: 69.647us - SinkTime: 177.725us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 275.293us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.190ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.632us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.677us - BuildTableInsertTime: 34.247us - BuildTableTime: 40.885us - CloseTime: 0ns - ExecTime: 210.109us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 33.304us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.89us - RuntimeFilterComputeTime: 31.273us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=270): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.422us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.76us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 14.452us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 34.523ms PipelineXTask (index=9):(Active: 127.949us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.381us - CloseTime: 5.583us - GetBlockTime: 0ns - OpenTime: 4.897us - PrepareTime: 75.993us - SinkTime: 17.998us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.507us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.362ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 58.399us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 37.765us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 23.566ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.771us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.382us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.866us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 123.557us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 51.539us - CloseTime: 9.370us - GetBlockTime: 0ns - OpenTime: 2.855us - PrepareTime: 54.435us - SinkTime: 27.720us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.128us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.736ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.591us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.571us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 30.439ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.134us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.640us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.518us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 106.173us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.410us - CloseTime: 6.320us - GetBlockTime: 0ns - OpenTime: 2.37us - PrepareTime: 55.326us - SinkTime: 20.84us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.454us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.736ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.507us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.670us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 34.809ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.400us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.62us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.715us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 112.429us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.805us - CloseTime: 7.682us - GetBlockTime: 0ns - OpenTime: 3.248us - PrepareTime: 45.218us - SinkTime: 29.303us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.296us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 379.593us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.285us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.352us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.434ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.284us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.271us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 132.929us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 58.89us - CloseTime: 10.570us - GetBlockTime: 0ns - OpenTime: 2.344us - PrepareTime: 57.149us - SinkTime: 38.51us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.931us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.468ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 61.489us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.91us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.540ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.574us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.579us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 118.953us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.434us - CloseTime: 6.987us - GetBlockTime: 0ns - OpenTime: 1.776us - PrepareTime: 60.650us - SinkTime: 26.56us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.167us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.914ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 47.637us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.354us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 23.552ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.117us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.786us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.737us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 129.213us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 61.70us - CloseTime: 9.932us - GetBlockTime: 0ns - OpenTime: 2.250us - PrepareTime: 50.416us - SinkTime: 33.872us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.357us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.635ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.879us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.840us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 34.910ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.754us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.691us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.101us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 104.569us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.170us - CloseTime: 8.972us - GetBlockTime: 0ns - OpenTime: 3.105us - PrepareTime: 50.638us - SinkTime: 14.624us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.953us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.395ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.590us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.142us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.656ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.206us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.82us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.48us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 173.551us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 53.965us - CloseTime: 28.171us - GetBlockTime: 0ns - OpenTime: 2.778us - PrepareTime: 81.752us - SinkTime: 28.993us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.371us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 940.192us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.345us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.183us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.440ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.135us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.955us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.980us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 121.408us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.994us - CloseTime: 6.654us - GetBlockTime: 0ns - OpenTime: 2.110us - PrepareTime: 68.963us - SinkTime: 19.437us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.670us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.115ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.881us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.757us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 28.511ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.677us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.309us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 116.554us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.359us - CloseTime: 4.633us - GetBlockTime: 0ns - OpenTime: 2.819us - PrepareTime: 54.181us - SinkTime: 27.637us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.366us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.585ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896328e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.807us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.496us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.43ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.921us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.968us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.90us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 48: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 279.492us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 113.139us - CloseTime: 38.518us - GetBlockTime: 54.256us - OpenTime: 3.30us - PrepareTime: 117.731us - SinkTime: 19.238us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.53ms DATA_STREAM_SINK_OPERATOR (id=270,dst_id=270): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.626us - CompressTime: 0ns - ExecTime: 73.187us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 12.414us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 40.116us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=269): - BlocksProduced: 0 - BuildTime: 38.518us - CloseTime: 393ns - ExecTime: 70.442us - HashTableComputeTime: 17.981us - HashTableEmplaceTime: 11.196us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 28.630us - ProjectionTime: 0ns - RowsProduced: 80 EXCHANGE_OPERATOR (id=268): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 19.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.387us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 15.926us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 34.363ms Fragment 49: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.559ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.149ms - CloseTime: 59.537us - GetBlockTime: 85.804us - OpenTime: 1.23ms - PrepareTime: 317.578us - SinkTime: 13.136us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 713.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.103ms DATA_STREAM_SINK_OPERATOR (id=268,dst_id=268): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.144us - CompressTime: 0ns - ExecTime: 46.512us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 7.740us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 19.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=267): - BlocksProduced: 0 - BuildTime: 33.706us - CloseTime: 270ns - ExecTime: 59.594us - HashTableComputeTime: 17.402us - HashTableEmplaceTime: 9.640us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 23.450us - ProjectionTime: 0ns - RowsProduced: 80 OLAP_SCAN_OPERATOR (id=266. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 603ns - BlocksProduced: 1 - CloseTime: 42.435us - ExecTime: 21.945ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.90ms - ProcessConjunctTime: 41.270us - ProjectionTime: 6.737us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 21.242ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 20.758ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [42.500us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [21.242ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.630us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 276.800us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 118ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 409.845us - ScannerCtxSchedTime: 21.239ms - ScannerFilterTime: 1.640us - ScannerGetBlockTime: 32.625us - ScannerInitTime: 62.733us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 410ns - BlockConditionsFilteredBloomFilterTime: 2.332us - BlockConditionsFilteredDictTime: 5.332us - BlockConditionsFilteredTime: 22.822us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.90us - BlockInitSeekCount: 6 - BlockInitSeekTime: 19.310us - BlockInitTime: 73.841us - BlockLoadTime: 137.265us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 7.107us - FirstReadTime: 10.240us - IOTimer: 0ns - InvertedIndexFilterTime: 2.50us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.398us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 14.590us - OutputIndexResultColumnTimer: 275ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 137ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.995us Fragment 50: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 698.260us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 352.938us - CloseTime: 51.448us - GetBlockTime: 87.670us - OpenTime: 139.421us - PrepareTime: 145.501us - SinkTime: 74.193us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 616.471us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.566ms DATA_STREAM_SINK_OPERATOR (id=265,dst_id=265): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.47us - CompressTime: 0ns - ExecTime: 119.192us - InputRows: 5.62K (5620) - LocalBytesSent: 49.39 KB - LocalSendTime: 65.762us - LocalSentRows: 5.62K (5620) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.91us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 5.62K (5620) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=264. table name = DIM_PRODUCT_ONLINE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [18267] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 575ns - BlocksProduced: 2 - CloseTime: 33.725us - ExecTime: 43.381ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 203.669us - ProcessConjunctTime: 27.648us - ProjectionTime: 130.49us - RowsProduced: 5.62K (5620) - RowsRead: 5.62K (5620) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 42.538ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 42.926ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [PRODUCT_ID] - PerScannerRunningTime: [46.214us, ] - PerScannerRowsRead: [5.62K, ] - PerScannerWaitTime: [42.538ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 19.81us - MemoryUsage: - FreeBlocks: 108.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 137.248us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 299ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 384.960us - ScannerCtxSchedTime: 42.537ms - ScannerFilterTime: 6.744us - ScannerGetBlockTime: 36.134us - ScannerInitTime: 90.733us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 137ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.138us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.596us - BlockInitTime: 36.658us - BlockLoadTime: 104.955us - BlocksLoad: 3 - CachedPagesNum: 1 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2 - FirstReadSeekTime: 1.97us - FirstReadTime: 49.326us - IOTimer: 0ns - InvertedIndexFilterTime: 333ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 221ns - OutputIndexResultColumnTimer: 364ns - RawRowsRead: 5.62K (5620) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 51: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 234.540us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 126.322us - CloseTime: 15.922us - GetBlockTime: 89.603us - OpenTime: 688ns - PrepareTime: 84.714us - SinkTime: 15.924us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 208.593us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 161.635ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.332us - CompressTime: 0ns - ExecTime: 53.785us - InputRows: 157 - LocalBytesSent: 6.24 KB - LocalSendTime: 11.23us - LocalSentRows: 157 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.944us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 157 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.359us - DeserializeAndMergeTime: 0ns - ExecTime: 100.747us - GetResultsTime: 29.692us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.146us - HashTableSize: 157 - InsertKeysToColumnTime: 11.2us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.142us - ProjectionTime: 45.714us - RowsProduced: 157 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s20ms PipelineXTask (index=2):(Active: 243.367us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 134.836us - CloseTime: 10.710us - GetBlockTime: 85.710us - OpenTime: 23.416us - PrepareTime: 68.473us - SinkTime: 11.48us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 225.978us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.587ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.687us - CompressTime: 0ns - ExecTime: 60.202us - InputRows: 170 - LocalBytesSent: 6.78 KB - LocalSendTime: 8.530us - LocalSentRows: 170 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 39.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 170 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 158ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.274us - GetResultsTime: 50.433us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.675us - HashTableSize: 170 - InsertKeysToColumnTime: 18.312us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.66us - ProjectionTime: 28.386us - RowsProduced: 170 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s13ms PipelineXTask (index=4):(Active: 209.911us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 136.218us - CloseTime: 8.407us - GetBlockTime: 109.115us - OpenTime: 1.300us - PrepareTime: 58.635us - SinkTime: 11.108us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 194.363us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.636ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.235us - CompressTime: 0ns - ExecTime: 43.702us - InputRows: 183 - LocalBytesSent: 7.25 KB - LocalSendTime: 8.34us - LocalSentRows: 183 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.383us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 183 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 345ns - DeserializeAndMergeTime: 0ns - ExecTime: 117.239us - GetResultsTime: 57.965us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.375us - HashTableSize: 183 - InsertKeysToColumnTime: 37.247us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.328us - ProjectionTime: 35.742us - RowsProduced: 183 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s14ms PipelineXTask (index=6):(Active: 237.272us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 147.575us - CloseTime: 26.730us - GetBlockTime: 91.867us - OpenTime: 1.144us - PrepareTime: 56.749us - SinkTime: 32.685us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 199.961us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.467ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.464us - CompressTime: 0ns - ExecTime: 87.86us - InputRows: 194 - LocalBytesSent: 7.75 KB - LocalSendTime: 27.439us - LocalSentRows: 194 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 30.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 194 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 773ns - DeserializeAndMergeTime: 0ns - ExecTime: 96.601us - GetResultsTime: 39.377us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.986us - HashTableSize: 194 - InsertKeysToColumnTime: 23.942us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.187us - ProjectionTime: 39.438us - RowsProduced: 194 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 923.91ms PipelineXTask (index=8):(Active: 233.84us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 145.238us - CloseTime: 16.878us - GetBlockTime: 103.299us - OpenTime: 1.464us - PrepareTime: 63.335us - SinkTime: 15.740us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 206.626us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.195ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.445us - CompressTime: 0ns - ExecTime: 59.167us - InputRows: 183 - LocalBytesSent: 7.25 KB - LocalSendTime: 11.289us - LocalSentRows: 183 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.540us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 183 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 753ns - DeserializeAndMergeTime: 0ns - ExecTime: 109.372us - GetResultsTime: 43.605us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.109us - HashTableSize: 183 - InsertKeysToColumnTime: 19.982us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.500us - ProjectionTime: 33.122us - RowsProduced: 183 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 862.988ms PipelineXTask (index=10):(Active: 203.314us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 112.429us - CloseTime: 17.890us - GetBlockTime: 80.910us - OpenTime: 745ns - PrepareTime: 66.506us - SinkTime: 14.901us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.75us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.827ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.553us - CompressTime: 0ns - ExecTime: 72.373us - InputRows: 185 - LocalBytesSent: 7.36 KB - LocalSendTime: 10.675us - LocalSentRows: 185 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.558us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 185 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 550ns - DeserializeAndMergeTime: 0ns - ExecTime: 86.409us - GetResultsTime: 34.219us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.131us - HashTableSize: 185 - InsertKeysToColumnTime: 16.197us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.490us - ProjectionTime: 35.92us - RowsProduced: 185 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s50ms PipelineXTask (index=12):(Active: 207.627us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 119.945us - CloseTime: 19.757us - GetBlockTime: 86.432us - OpenTime: 978ns - PrepareTime: 61.554us - SinkTime: 15.75us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 180.571us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.399ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.165us - CompressTime: 0ns - ExecTime: 54.725us - InputRows: 181 - LocalBytesSent: 7.17 KB - LocalSendTime: 9.278us - LocalSentRows: 181 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 181 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.231us - DeserializeAndMergeTime: 0ns - ExecTime: 91.504us - GetResultsTime: 36.43us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.558us - HashTableSize: 181 - InsertKeysToColumnTime: 12.161us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.155us - ProjectionTime: 37.303us - RowsProduced: 181 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s23ms PipelineXTask (index=14):(Active: 260.190us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 193.310us - CloseTime: 16.850us - GetBlockTime: 125.291us - OpenTime: 1.210us - PrepareTime: 43.306us - SinkTime: 34.894us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.658us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 455.992ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.616us - CompressTime: 0ns - ExecTime: 65.84us - InputRows: 176 - LocalBytesSent: 6.93 KB - LocalSendTime: 29.288us - LocalSentRows: 176 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 17.425us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 176 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 921ns - DeserializeAndMergeTime: 0ns - ExecTime: 129.357us - GetResultsTime: 45.615us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.345us - HashTableSize: 176 - InsertKeysToColumnTime: 22.629us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.634us - ProjectionTime: 61.664us - RowsProduced: 176 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 862.642ms PipelineXTask (index=16):(Active: 263.338us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 155.453us - CloseTime: 14.838us - GetBlockTime: 96.475us - OpenTime: 2.412us - PrepareTime: 85.344us - SinkTime: 30.232us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 239.568us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.193ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.354us - CompressTime: 0ns - ExecTime: 96.219us - InputRows: 173 - LocalBytesSent: 6.86 KB - LocalSendTime: 24.312us - LocalSentRows: 173 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 54.156us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 173 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.80us - DeserializeAndMergeTime: 0ns - ExecTime: 107.21us - GetResultsTime: 45.806us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.565us - HashTableSize: 173 - InsertKeysToColumnTime: 25.271us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.879us - ProjectionTime: 38.377us - RowsProduced: 173 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 860.916ms PipelineXTask (index=18):(Active: 254.753us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 183.765us - CloseTime: 13.474us - GetBlockTime: 144.524us - OpenTime: 1.576us - PrepareTime: 51.433us - SinkTime: 18.572us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 234.541us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.125ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.789us - CompressTime: 0ns - ExecTime: 52.612us - InputRows: 181 - LocalBytesSent: 7.22 KB - LocalSendTime: 13.146us - LocalSentRows: 181 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.123us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 181 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 765ns - DeserializeAndMergeTime: 0ns - ExecTime: 153.111us - GetResultsTime: 91.860us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.245us - HashTableSize: 181 - InsertKeysToColumnTime: 70.688us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.0us - ProjectionTime: 38.259us - RowsProduced: 181 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 848.811ms PipelineXTask (index=20):(Active: 217.730us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 118.272us - CloseTime: 8.402us - GetBlockTime: 86.13us - OpenTime: 1.195us - PrepareTime: 82.870us - SinkTime: 11.546us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 200.610us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.584ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.184us - CompressTime: 0ns - ExecTime: 63.6us - InputRows: 167 - LocalBytesSent: 6.67 KB - LocalSendTime: 7.686us - LocalSentRows: 167 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 45.301us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 167 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 320ns - DeserializeAndMergeTime: 0ns - ExecTime: 92.627us - GetResultsTime: 33.181us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.525us - HashTableSize: 167 - InsertKeysToColumnTime: 18.38us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.106us - ProjectionTime: 45.243us - RowsProduced: 167 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s22ms PipelineXTask (index=22):(Active: 183.772us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 119.919us - CloseTime: 9.168us - GetBlockTime: 75.376us - OpenTime: 823ns - PrepareTime: 49.53us - SinkTime: 23.815us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.324us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.3ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.452us - CompressTime: 0ns - ExecTime: 62.865us - InputRows: 187 - LocalBytesSent: 7.36 KB - LocalSendTime: 19.687us - LocalSentRows: 187 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 32.200us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 187 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 626ns - DeserializeAndMergeTime: 0ns - ExecTime: 79.321us - GetResultsTime: 30.306us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.337us - HashTableSize: 187 - InsertKeysToColumnTime: 15.509us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.481us - ProjectionTime: 34.502us - RowsProduced: 187 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s47ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 321.150us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 230.792us - CloseTime: 15.245us - GetBlockTime: 29.940us - OpenTime: 3.248us - PrepareTime: 66.644us - SinkTime: 163.443us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 296.673us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 306.380ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 850ns - DeserializeAndMergeTime: 7.253us - ExecTime: 183.251us - ExprTime: 0ns - HashTableComputeTime: 133.775us - HashTableEmplaceTime: 71.945us - HashTableInputCount: 283 - InputRows: 283 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 153.396us - OpenTime: 20.502us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 13.30us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.377us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.50 KB - MemoryUsage: - Blocks: 12.75 KB - PeakMemoryUsage: 14.96 KB - OpenTime: 16.423us - ProjectionTime: 0ns - RowsProduced: 283 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 715.309ms PipelineXTask (index=3):(Active: 285.90us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 190.579us - CloseTime: 9.595us - GetBlockTime: 30.698us - OpenTime: 2.770us - PrepareTime: 76.83us - SinkTime: 132.5us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.518us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 274.591ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.553us - DeserializeAndMergeTime: 5.758us - ExecTime: 154.878us - ExprTime: 0ns - HashTableComputeTime: 102.246us - HashTableEmplaceTime: 69.773us - HashTableInputCount: 306 - InputRows: 306 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 122.77us - OpenTime: 25.76us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.810us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.568us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.75 KB - MemoryUsage: - Blocks: 12.75 KB - PeakMemoryUsage: 14.96 KB - OpenTime: 15.936us - ProjectionTime: 0ns - RowsProduced: 306 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 748.236ms PipelineXTask (index=5):(Active: 248.911us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 161.928us - CloseTime: 3.26us - GetBlockTime: 20.38us - OpenTime: 2.422us - PrepareTime: 76.277us - SinkTime: 120.116us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.938us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 274.767ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 705ns - DeserializeAndMergeTime: 7.289us - ExecTime: 135.717us - ExprTime: 0ns - HashTableComputeTime: 95.129us - HashTableEmplaceTime: 67.656us - HashTableInputCount: 354 - InputRows: 354 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 116.207us - OpenTime: 15.178us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 1.896us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.710us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.50 KB - MemoryUsage: - Blocks: 18.50 KB - PeakMemoryUsage: 20.71 KB - OpenTime: 44.336us - ProjectionTime: 0ns - RowsProduced: 354 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 748.171ms PipelineXTask (index=7):(Active: 350.87us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 269.814us - CloseTime: 13.964us - GetBlockTime: 29.647us - OpenTime: 6.173us - PrepareTime: 54.327us - SinkTime: 197.922us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 325.127us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.517ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.101us - DeserializeAndMergeTime: 7.261us - ExecTime: 216.585us - ExprTime: 0ns - HashTableComputeTime: 165.86us - HashTableEmplaceTime: 83.288us - HashTableInputCount: 350 - InputRows: 350 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 188.999us - OpenTime: 18.177us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.660us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.50 KB - MemoryUsage: - Blocks: 18.50 KB - PeakMemoryUsage: 20.71 KB - OpenTime: 15.833us - ProjectionTime: 0ns - RowsProduced: 350 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 796.423ms PipelineXTask (index=9):(Active: 15.648ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.570ms - CloseTime: 9.419us - GetBlockTime: 23.512us - OpenTime: 4.490us - PrepareTime: 58.443us - SinkTime: 15.497ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 320.140us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.290ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 779ns - DeserializeAndMergeTime: 8.776us - ExecTime: 15.522ms - ExprTime: 0ns - HashTableComputeTime: 131.760us - HashTableEmplaceTime: 71.101us - HashTableInputCount: 318 - InputRows: 318 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 15.487ms - OpenTime: 24.962us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 7.667us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.220us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.75 KB - MemoryUsage: - Blocks: 9.00 KB - PeakMemoryUsage: 11.21 KB - OpenTime: 18.603us - ProjectionTime: 0ns - RowsProduced: 318 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 719.436ms PipelineXTask (index=11):(Active: 365.168us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 263.19us - CloseTime: 29.489us - GetBlockTime: 27.42us - OpenTime: 2.967us - PrepareTime: 63.837us - SinkTime: 183.544us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 325.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.34ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.238us - DeserializeAndMergeTime: 8.528us - ExecTime: 205.638us - ExprTime: 0ns - HashTableComputeTime: 141.857us - HashTableEmplaceTime: 76.748us - HashTableInputCount: 320 - InputRows: 320 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 173.77us - OpenTime: 22.469us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 26.548us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.163us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.75 KB - MemoryUsage: - Blocks: 14.75 KB - PeakMemoryUsage: 16.96 KB - OpenTime: 23.37us - ProjectionTime: 0ns - RowsProduced: 320 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 787.356ms PipelineXTask (index=13):(Active: 261.414us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 168.919us - CloseTime: 5.555us - GetBlockTime: 19.262us - OpenTime: 3.216us - PrepareTime: 78.826us - SinkTime: 119.503us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 247.476us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 274.878ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 436ns - DeserializeAndMergeTime: 6.462us - ExecTime: 155.383us - ExprTime: 0ns - HashTableComputeTime: 89.475us - HashTableEmplaceTime: 55.649us - HashTableInputCount: 320 - InputRows: 320 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 113.24us - OpenTime: 35.838us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.713us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.00 KB - MemoryUsage: - Blocks: 13.00 KB - PeakMemoryUsage: 15.21 KB - OpenTime: 14.15us - ProjectionTime: 0ns - RowsProduced: 320 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 748.148ms PipelineXTask (index=15):(Active: 278.860us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 219.532us - CloseTime: 4.425us - GetBlockTime: 19.511us - OpenTime: 3.0us - PrepareTime: 46.621us - SinkTime: 160.514us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 262.528us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.440ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 468ns - DeserializeAndMergeTime: 7.657us - ExecTime: 174.213us - ExprTime: 0ns - HashTableComputeTime: 127.839us - HashTableEmplaceTime: 82.153us - HashTableInputCount: 343 - InputRows: 343 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 150.620us - OpenTime: 14.702us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 3.575us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.493us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.50 KB - MemoryUsage: - Blocks: 11.50 KB - PeakMemoryUsage: 13.71 KB - OpenTime: 12.280us - ProjectionTime: 0ns - RowsProduced: 343 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 722.698ms PipelineXTask (index=17):(Active: 217.421us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 144.374us - CloseTime: 13.274us - GetBlockTime: 20.837us - OpenTime: 3.900us - PrepareTime: 51.682us - SinkTime: 104.632us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.971us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.481ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 843ns - DeserializeAndMergeTime: 4.341us - ExecTime: 122.837us - ExprTime: 0ns - HashTableComputeTime: 86.786us - HashTableEmplaceTime: 46.288us - HashTableInputCount: 310 - InputRows: 310 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 99.803us - OpenTime: 17.608us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 10.494us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.98us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.00 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 25.21 KB - OpenTime: 16.304us - ProjectionTime: 0ns - RowsProduced: 310 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 621.405ms PipelineXTask (index=19):(Active: 155.92us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 94.261us - CloseTime: 4.26us - GetBlockTime: 9.46us - OpenTime: 1.944us - PrepareTime: 50.844us - SinkTime: 71.606us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 146.244us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.647ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.174us - DeserializeAndMergeTime: 3.955us - ExecTime: 88.911us - ExprTime: 0ns - HashTableComputeTime: 58.650us - HashTableEmplaceTime: 40.779us - HashTableInputCount: 322 - InputRows: 322 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 67.852us - OpenTime: 16.238us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.426us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.391us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.25 KB - MemoryUsage: - Blocks: 22.25 KB - PeakMemoryUsage: 24.46 KB - OpenTime: 13.274us - ProjectionTime: 0ns - RowsProduced: 322 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 621.399ms PipelineXTask (index=21):(Active: 200.397us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 141.311us - CloseTime: 3.475us - GetBlockTime: 18.987us - OpenTime: 2.658us - PrepareTime: 47.943us - SinkTime: 99.689us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.903us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.914ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 262ns - DeserializeAndMergeTime: 5.557us - ExecTime: 112.510us - ExprTime: 0ns - HashTableComputeTime: 83.412us - HashTableEmplaceTime: 55.837us - HashTableInputCount: 295 - InputRows: 295 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 95.288us - OpenTime: 12.894us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.772us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.37us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.75 KB - MemoryUsage: - Blocks: 13.00 KB - PeakMemoryUsage: 15.21 KB - OpenTime: 19.277us - ProjectionTime: 0ns - RowsProduced: 295 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 756.199ms PipelineXTask (index=23):(Active: 254.374us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 183.849us - CloseTime: 5.848us - GetBlockTime: 21.168us - OpenTime: 3.213us - PrepareTime: 56.303us - SinkTime: 127.368us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.330us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 276.887ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.235us - DeserializeAndMergeTime: 7.859us - ExecTime: 149.635us - ExprTime: 0ns - HashTableComputeTime: 102.402us - HashTableEmplaceTime: 71.543us - HashTableInputCount: 355 - InputRows: 355 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 417.98 KB - SerializeKeyArena: 412.00 KB - MergeTime: 120.828us - OpenTime: 21.737us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.20us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.537us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.50 KB - MemoryUsage: - Blocks: 18.50 KB - PeakMemoryUsage: 20.71 KB - OpenTime: 21.471us - ProjectionTime: 0ns - RowsProduced: 355 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 782.685ms Fragment 52: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 12.348ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.910ms - CloseTime: 62.907us - GetBlockTime: 11.446ms - OpenTime: 7.748us - PrepareTime: 358.692us - SinkTime: 345.114us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.254ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.336ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.614us - CompressTime: 0ns - ExecTime: 437.753us - InputRows: 1.209K (1209) - LocalBytesSent: 56.97 KB - LocalSendTime: 85.727us - LocalSentRows: 1.209K (1209) - MemoryUsage: - PeakMemoryUsage: 72.25 KB - MergeBlockTime: 0ns - OpenTime: 76.832us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.209K (1209) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 130.399us - SplitBlockHashComputeTime: 32.459us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 8.154ms - CloseTime: 17.310us - DeserializeAndMergeTime: 0ns - ExecTime: 8.390ms - ExprTime: 12.301us - GetResultsTime: 154.830us - HashTableComputeTime: 8.24ms - HashTableEmplaceTime: 1.82ms - HashTableInputCount: 19.012K (19012) - HashTableIterateTime: 15.11us - HashTableSize: 1.209K (1209) - InsertKeysToColumnTime: 75.419us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 37.242us - ProjectionTime: 0ns - RowsProduced: 1.209K (1209) - SerializeDataTime: 46.502us - SerializeKeyTime: 0ns - SerializeResultTime: 158.844us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 24.88us - ExecTime: 2.998ms - InitProbeSideTime: 494.620us - JoinFilterTimer: 1.34us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.609us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.41us - ProbeFindNextTime: 0ns - ProbeRows: 19.012K (19012) - ProbeTime: 1.458ms - ProbeWhenBuildSideOutputTime: 45.776us - ProbeWhenProbeSideOutputTime: 292.578us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 457.177us - ProjectionTime: 1.456ms - RowsProduced: 19.012K (19012) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 75.236us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 832.00 KB - OpenTime: 875ns - ProjectionTime: 0ns - RowsProduced: 19.012K (19012) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 458.556ms PipelineXTask (index=3):(Active: 37.638ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 37.329ms - CloseTime: 69.351us - GetBlockTime: 3.851ms - OpenTime: 9.567us - PrepareTime: 222.537us - SinkTime: 33.402ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.536ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.752ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.828us - CompressTime: 0ns - ExecTime: 33.536ms - InputRows: 1.214K (1214) - LocalBytesSent: 57.20 KB - LocalSendTime: 147.98us - LocalSentRows: 1.214K (1214) - MemoryUsage: - PeakMemoryUsage: 73.50 KB - MergeBlockTime: 0ns - OpenTime: 114.3us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.214K (1214) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.535us - SplitBlockHashComputeTime: 38.427us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.539ms - CloseTime: 23.301us - DeserializeAndMergeTime: 0ns - ExecTime: 1.768ms - ExprTime: 12.109us - GetResultsTime: 156.507us - HashTableComputeTime: 1.446ms - HashTableEmplaceTime: 779.971us - HashTableInputCount: 17.817K (17817) - HashTableIterateTime: 11.664us - HashTableSize: 1.214K (1214) - InsertKeysToColumnTime: 76.271us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 30.871us - ProjectionTime: 0ns - RowsProduced: 1.214K (1214) - SerializeDataTime: 43.934us - SerializeKeyTime: 0ns - SerializeResultTime: 160.134us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 18.201us - ExecTime: 2.91ms - InitProbeSideTime: 329.538us - JoinFilterTimer: 953ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 16.296us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.266us - ProbeFindNextTime: 0ns - ProbeRows: 17.817K (17817) - ProbeTime: 1.59ms - ProbeWhenBuildSideOutputTime: 46.377us - ProbeWhenProbeSideOutputTime: 300.16us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 285.935us - ProjectionTime: 969.832us - RowsProduced: 17.817K (17817) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 31.363us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 432.00 KB - OpenTime: 1.90us - ProjectionTime: 0ns - RowsProduced: 17.817K (17817) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 514.896ms PipelineXTask (index=6):(Active: 5.553ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.271ms - CloseTime: 64.109us - GetBlockTime: 4.526ms - OpenTime: 6.860us - PrepareTime: 202.88us - SinkTime: 673.474us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.619ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 290.653ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.40us - CompressTime: 0ns - ExecTime: 791.872us - InputRows: 1.453K (1453) - LocalBytesSent: 68.80 KB - LocalSendTime: 91.476us - LocalSentRows: 1.453K (1453) - MemoryUsage: - PeakMemoryUsage: 114.00 KB - MergeBlockTime: 0ns - OpenTime: 95.300us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.453K (1453) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 364.826us - SplitBlockHashComputeTime: 78.294us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.542ms - CloseTime: 23.149us - DeserializeAndMergeTime: 0ns - ExecTime: 1.873ms - ExprTime: 7.449us - GetResultsTime: 258.269us - HashTableComputeTime: 1.469ms - HashTableEmplaceTime: 689.547us - HashTableInputCount: 15.477K (15477) - HashTableIterateTime: 12.697us - HashTableSize: 1.453K (1453) - InsertKeysToColumnTime: 114.930us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 30.665us - ProjectionTime: 0ns - RowsProduced: 1.453K (1453) - SerializeDataTime: 102.966us - SerializeKeyTime: 0ns - SerializeResultTime: 263.216us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 11.949us - ExecTime: 2.661ms - InitProbeSideTime: 374.642us - JoinFilterTimer: 873ns - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.560us - ProbeFindNextTime: 0ns - ProbeRows: 15.477K (15477) - ProbeTime: 1.799ms - ProbeWhenBuildSideOutputTime: 37.100us - ProbeWhenProbeSideOutputTime: 178.755us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.113ms - ProjectionTime: 808.448us - RowsProduced: 15.477K (15477) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 27.123us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 432.00 KB - OpenTime: 850ns - ProjectionTime: 0ns - RowsProduced: 15.477K (15477) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 512.458ms PipelineXTask (index=9):(Active: 486.859us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 257.734us - CloseTime: 22.56us - GetBlockTime: 86.573us - OpenTime: 5.190us - PrepareTime: 194.694us - SinkTime: 114.570us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 453.620us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.411ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.265us - CompressTime: 0ns - ExecTime: 224.832us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.774us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 100.15us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 647ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.751us - DeserializeAndMergeTime: 0ns - ExecTime: 45.533us - ExprTime: 0ns - GetResultsTime: 14.158us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 144ns - HashTableSize: 0 - InsertKeysToColumnTime: 938ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.684us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.518us - SerializeKeyTime: 0ns - SerializeResultTime: 18.677us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.580us - ExecTime: 54.348us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 25.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.431us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.763us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 25.776us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 168.21 KB - OpenTime: 736ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 531.563ms PipelineXTask (index=12):(Active: 454.881us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 183.198us - CloseTime: 26.699us - GetBlockTime: 47.668us - OpenTime: 10.750us - PrepareTime: 227.120us - SinkTime: 102.179us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 420.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.900ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.739us - CompressTime: 0ns - ExecTime: 193.535us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.54us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.137us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 378ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.403us - DeserializeAndMergeTime: 0ns - ExecTime: 39.318us - ExprTime: 0ns - GetResultsTime: 8.802us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.104us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.526us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.232us - SerializeKeyTime: 0ns - SerializeResultTime: 12.621us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.294us - ExecTime: 90.849us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 57.45us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 9.217us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.9us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.120us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 929ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 561.151ms PipelineXTask (index=15):(Active: 386.288us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 138.289us - CloseTime: 23.937us - GetBlockTime: 37.284us - OpenTime: 7.11us - PrepareTime: 211.443us - SinkTime: 74.384us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 355.887us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.387ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.505us - CompressTime: 0ns - ExecTime: 170.832us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.280us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 84.434us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 501ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.350us - DeserializeAndMergeTime: 0ns - ExecTime: 68.49us - ExprTime: 0ns - GetResultsTime: 8.794us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 42ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.284us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 51.618us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.762us - SerializeKeyTime: 0ns - SerializeResultTime: 12.146us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.916us - ExecTime: 44.4us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.220us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.753us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.840us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.948us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.616us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 561.0ms PipelineXTask (index=18):(Active: 357.362us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 157.33us - CloseTime: 23.391us - GetBlockTime: 39.423us - OpenTime: 5.531us - PrepareTime: 165.380us - SinkTime: 89.375us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 326.282us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.627ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.337us - CompressTime: 0ns - ExecTime: 172.416us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 44.879us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.86us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 395ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.326us - DeserializeAndMergeTime: 0ns - ExecTime: 41.505us - ExprTime: 0ns - GetResultsTime: 7.486us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 122ns - HashTableSize: 0 - InsertKeysToColumnTime: 459ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.657us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.201us - SerializeKeyTime: 0ns - SerializeResultTime: 10.939us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.611us - ExecTime: 43.409us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.912us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.779us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.5us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.448us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 897ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 561.126ms PipelineXTask (index=21):(Active: 409.295us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 165.890us - CloseTime: 22.938us - GetBlockTime: 38.802us - OpenTime: 8.615us - PrepareTime: 206.720us - SinkTime: 95.553us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 379.8us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.364ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.937us - CompressTime: 0ns - ExecTime: 178.374us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.915us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.684us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 517ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.380us - DeserializeAndMergeTime: 0ns - ExecTime: 37.955us - ExprTime: 0ns - GetResultsTime: 7.717us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 141ns - HashTableSize: 0 - InsertKeysToColumnTime: 946ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.334us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.69us - SerializeKeyTime: 0ns - SerializeResultTime: 11.527us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.868us - ExecTime: 48.157us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.80us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.881us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.157us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.809us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.115us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 548.917ms PipelineXTask (index=24):(Active: 563.573us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 284.531us - CloseTime: 35.0us - GetBlockTime: 65.210us - OpenTime: 8.775us - PrepareTime: 228.563us - SinkTime: 183.112us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 520.426us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.126ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.359us - CompressTime: 0ns - ExecTime: 284.937us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 85.780us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 83.246us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 828ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.192us - DeserializeAndMergeTime: 0ns - ExecTime: 47.871us - ExprTime: 0ns - GetResultsTime: 11.199us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 128ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.484us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.668us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.914us - SerializeKeyTime: 0ns - SerializeResultTime: 19.23us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.129us - ExecTime: 102.70us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 57.94us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.860us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 26.359us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.149us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 864ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 555.876ms PipelineXTask (index=27):(Active: 479.28us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 164.404us - CloseTime: 20.700us - GetBlockTime: 28.275us - OpenTime: 5.126us - PrepareTime: 281.774us - SinkTime: 111.899us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 449.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.505ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.576us - CompressTime: 0ns - ExecTime: 212.406us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 58.345us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 87.533us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 384ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 416ns - DeserializeAndMergeTime: 0ns - ExecTime: 118.867us - ExprTime: 0ns - GetResultsTime: 5.816us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 127ns - HashTableSize: 0 - InsertKeysToColumnTime: 327ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 108.36us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 866ns - SerializeKeyTime: 0ns - SerializeResultTime: 9.71us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.235us - ExecTime: 30.428us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.364us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.490us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.298us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.547us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 751ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 555.835ms PipelineXTask (index=30):(Active: 380.578us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 141.631us - CloseTime: 18.666us - GetBlockTime: 31.414us - OpenTime: 6.663us - PrepareTime: 206.133us - SinkTime: 80.996us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 353.601us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.703ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.859us - CompressTime: 0ns - ExecTime: 163.844us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.388us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.569us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 367ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 928ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.998us - ExprTime: 0ns - GetResultsTime: 5.918us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 128ns - HashTableSize: 0 - InsertKeysToColumnTime: 332ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.559us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.228us - SerializeKeyTime: 0ns - SerializeResultTime: 8.670us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.654us - ExecTime: 34.234us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.653us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.842us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.227us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 16.954us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 15.856us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 561.144ms PipelineXTask (index=33):(Active: 401.662us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 205.790us - CloseTime: 23.912us - GetBlockTime: 46.517us - OpenTime: 7.772us - PrepareTime: 157.737us - SinkTime: 115.670us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 366.851us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.747ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.57us - CompressTime: 0ns - ExecTime: 201.56us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 66.795us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.967us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 403ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.663us - DeserializeAndMergeTime: 0ns - ExecTime: 41.534us - ExprTime: 0ns - GetResultsTime: 9.70us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 148ns - HashTableSize: 0 - InsertKeysToColumnTime: 912ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.552us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.472us - SerializeKeyTime: 0ns - SerializeResultTime: 13.32us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.952us - ExecTime: 46.177us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.789us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.162us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 18.928us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.945us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 706ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 560.839ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.283ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 553.443us - CloseTime: 82.489us - GetBlockTime: 78.88us - OpenTime: 422.212us - PrepareTime: 215.447us - SinkTime: 14.384us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.189ms - WaitBfTime: 57.455ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.309ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.505us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.249us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.758us - BlocksProduced: 0 - CloseTime: 79.39us - ExecTime: 300.766ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 576.504us - ProcessConjunctTime: 286.357us - ProjectionTime: 2.597us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.83198M (1831980) - filter id = -1 input: 2.117378M (2117378) - ScannerWorkerWaitTime: 456.377ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 300.31ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [4.795us, 5.993us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [227.954ms, 228.423ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 81.996ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 254ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.567ms - ScannerCtxSchedTime: 456.373ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.707us - ScannerInitTime: 74.31us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1448800, filtered = 1235240] - BitmapIndexFilterTimer: 724ns - BlockConditionsFilteredBloomFilterTime: 3.423us - BlockConditionsFilteredDictTime: 174.576us - BlockConditionsFilteredTime: 204.41us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.452us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 230.469us - BlockLoadTime: 81.557ms - BlocksLoad: 181 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.272ms - FirstReadSeekCount: 179 - FirstReadSeekTime: 46.681us - FirstReadTime: 9.552ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.241us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 61.681ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.310ms - OutputIndexResultColumnTimer: 7.164us - RawRowsRead: 724.4K (724400) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 617.62K (617620) - RowsShortCircuitPredInput: 724.4K (724400) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 61.875ms - ShortPredEvalTime: 2.717ms - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 79.214us PipelineXTask (index=4):(Active: 1.387ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 585.7us - CloseTime: 71.59us - GetBlockTime: 40.691us - OpenTime: 507.639us - PrepareTime: 213.571us - SinkTime: 11.332us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.306ms - WaitBfTime: 67.370ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.865ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.512us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.145us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.290us - BlocksProduced: 0 - CloseTime: 68.753us - ExecTime: 251.999ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 620.954us - ProcessConjunctTime: 371.910us - ProjectionTime: 3.416us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.838682M (1838682) - filter id = -1 input: 2.134482M (2134482) - ScannerWorkerWaitTime: 483.917ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 251.265ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [4.791us, 8.586us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [241.477ms, 242.439ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.477ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 155ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.888ms - ScannerCtxSchedTime: 483.915ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.394us - ScannerInitTime: 78.283us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1457480, filtered = 1238750] - BitmapIndexFilterTimer: 707ns - BlockConditionsFilteredBloomFilterTime: 2.67us - BlockConditionsFilteredDictTime: 88.190us - BlockConditionsFilteredTime: 118.234us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.474us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 132.1us - BlockLoadTime: 33.960ms - BlocksLoad: 183 - CachedPagesNum: 157 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 10.133ms - FirstReadSeekCount: 181 - FirstReadSeekTime: 54.448us - FirstReadTime: 13.505ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.175us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.954ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.874ms - OutputIndexResultColumnTimer: 10.441us - RawRowsRead: 728.74K (728740) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 619.375K (619375) - RowsShortCircuitPredInput: 728.74K (728740) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.222ms - ShortPredEvalTime: 3.280ms - TotalPagesNum: 157 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 92.504us PipelineXTask (index=7):(Active: 1.217ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 531.881us - CloseTime: 53.158us - GetBlockTime: 44.241us - OpenTime: 455.140us - PrepareTime: 164.733us - SinkTime: 5.493us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.152ms - WaitBfTime: 67.868ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.38ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.51us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.174us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.587us - BlocksProduced: 0 - CloseTime: 51.784us - ExecTime: 260.299ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 540.678us - ProcessConjunctTime: 311.112us - ProjectionTime: 2.401us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.86999M (1869990) - filter id = -1 input: 2.232094M (2232094) - ScannerWorkerWaitTime: 491.714ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 259.660ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [5.886us, 5.680us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [245.182ms, 246.532ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 35.994ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 155ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.88ms - ScannerCtxSchedTime: 491.712ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.174us - ScannerInitTime: 85.874us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1444400, filtered = 1227742] - BitmapIndexFilterTimer: 656ns - BlockConditionsFilteredBloomFilterTime: 1.708us - BlockConditionsFilteredDictTime: 93.520us - BlockConditionsFilteredTime: 121.270us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.669us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 135.439us - BlockLoadTime: 35.593ms - BlocksLoad: 180 - CachedPagesNum: 158 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 18.154ms - FirstReadSeekCount: 178 - FirstReadSeekTime: 52.314us - FirstReadTime: 9.289ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.124us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.45ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.340ms - OutputIndexResultColumnTimer: 6.969us - RawRowsRead: 722.2K (722200) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 613.871K (613871) - RowsShortCircuitPredInput: 722.2K (722200) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.260ms - ShortPredEvalTime: 2.773ms - TotalPagesNum: 158 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 83.341us PipelineXTask (index=10):(Active: 1.88ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 451.913us - CloseTime: 75.447us - GetBlockTime: 35.426us - OpenTime: 374.846us - PrepareTime: 176.833us - SinkTime: 16.546us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.2ms - WaitBfTime: 67.446ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 111.682ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.955us - InputRows: 10.403K (10403) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.91us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.48us - BlocksProduced: 3 - CloseTime: 74.338us - ExecTime: 246.395ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 488.930us - ProcessConjunctTime: 239.429us - ProjectionTime: 116.183us - RowsProduced: 10.403K (10403) - RowsRead: 10.403K (10403) - RuntimeFilterInfo: - filter id = -1 filtered: 843.918K (843918) - filter id = -1 input: 968.554K (968554) - ScannerWorkerWaitTime: 478.595ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 245.677ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [4.488us, 3.344ms, ] - PerScannerRowsRead: [0, 10.40K, ] - PerScannerWaitTime: [237.315ms, 241.280ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.62ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.139ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 239ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.86ms - ScannerCtxSchedTime: 478.589ms - ScannerFilterTime: 10.367us - ScannerGetBlockTime: 3.324ms - ScannerInitTime: 83.528us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 817926, filtered = 717440] - BitmapIndexFilterTimer: 834ns - BlockConditionsFilteredBloomFilterTime: 2.166us - BlockConditionsFilteredDictTime: 58.339us - BlockConditionsFilteredTime: 92.616us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.579us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 109.40us - BlockLoadTime: 12.895ms - BlocksLoad: 106 - CachedPagesNum: 103 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.233ms - FirstReadSeekCount: 122 - FirstReadSeekTime: 44.622us - FirstReadTime: 5.421ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.21us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.513ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 672.495us - OutputIndexResultColumnTimer: 4.465us - RawRowsRead: 408.963K (408963) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 358.72K (358720) - RowsShortCircuitPredInput: 408.963K (408963) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.456ms - ShortPredEvalTime: 1.490ms - TotalPagesNum: 103 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 37.370us PipelineXTask (index=13):(Active: 1.483ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 688.353us - CloseTime: 120.559us - GetBlockTime: 67.354us - OpenTime: 517.716us - PrepareTime: 145.652us - SinkTime: 68.901us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.350ms - WaitBfTime: 66.754ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.143ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 71.184us - InputRows: 10.473K (10473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.685us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.63us - BlocksProduced: 3 - CloseTime: 119.458us - ExecTime: 250.203ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 605.679us - ProcessConjunctTime: 357.454us - ProjectionTime: 118.836us - RowsProduced: 10.473K (10473) - RowsRead: 10.473K (10473) - RuntimeFilterInfo: - filter id = -1 filtered: 863.584K (863584) - filter id = -1 input: 990.058K (990058) - ScannerWorkerWaitTime: 470.421ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 249.291ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PerScannerRunningTime: [10.686us, 5.282ms, ] - PerScannerRowsRead: [0, 10.47K, ] - PerScannerWaitTime: [234.369ms, 236.051ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.845ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 31.971ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 316ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.798ms - ScannerCtxSchedTime: 470.416ms - ScannerFilterTime: 15.434us - ScannerGetBlockTime: 5.245ms - ScannerInitTime: 100.808us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 836816, filtered = 734766] - BitmapIndexFilterTimer: 883ns - BlockConditionsFilteredBloomFilterTime: 3.284us - BlockConditionsFilteredDictTime: 73.266us - BlockConditionsFilteredTime: 112.718us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.897us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 134.545us - BlockLoadTime: 36.475ms - BlocksLoad: 108 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.374ms - FirstReadSeekCount: 105 - FirstReadSeekTime: 50.376us - FirstReadTime: 6.563ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.977us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.43ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 10.981ms - OutputIndexResultColumnTimer: 5.259us - RawRowsRead: 418.408K (418408) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 367.383K (367383) - RowsShortCircuitPredInput: 418.408K (418408) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.979ms - ShortPredEvalTime: 1.675ms - TotalPagesNum: 104 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.180ms PipelineXTask (index=16):(Active: 1.92ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 470.629us - CloseTime: 77.215us - GetBlockTime: 51.651us - OpenTime: 368.500us - PrepareTime: 166.606us - SinkTime: 16.322us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.3ms - WaitBfTime: 66.502ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.505ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.744us - InputRows: 10.685K (10685) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.195us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 35.577us - BlocksProduced: 3 - CloseTime: 75.464us - ExecTime: 245.152ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 461.776us - ProcessConjunctTime: 207.719us - ProjectionTime: 81.690us - RowsProduced: 10.685K (10685) - RowsRead: 10.685K (10685) - RuntimeFilterInfo: - filter id = -1 filtered: 1.487804M (1487804) - filter id = -1 input: 1.829026M (1829026) - ScannerWorkerWaitTime: 464.123ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 244.480ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PerScannerRunningTime: [6.483us, 61.314ms, ] - PerScannerRowsRead: [0, 10.69K, ] - PerScannerWaitTime: [230.074ms, 234.049ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 60.995ms - MemoryUsage: - FreeBlocks: 488.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.881ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 205ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.938ms - ScannerCtxSchedTime: 464.119ms - ScannerFilterTime: 10.826us - ScannerGetBlockTime: 61.293ms - ScannerInitTime: 83.244us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 990324, filtered = 807214] - BitmapIndexFilterTimer: 1.432us - BlockConditionsFilteredBloomFilterTime: 4.102us - BlockConditionsFilteredDictTime: 60.575us - BlockConditionsFilteredTime: 99.680us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.386us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 119.12us - BlockLoadTime: 75.569ms - BlocksLoad: 127 - CachedPagesNum: 121 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.932ms - FirstReadSeekCount: 124 - FirstReadSeekTime: 35.724us - FirstReadTime: 6.345ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.896us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.525ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.107ms - OutputIndexResultColumnTimer: 5.428us - RawRowsRead: 495.162K (495162) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 403.607K (403607) - RowsShortCircuitPredInput: 495.162K (495162) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.639ms - ShortPredEvalTime: 1.935ms - TotalPagesNum: 121 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 65.48us PipelineXTask (index=19):(Active: 1.12ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 432.779us - CloseTime: 90.177us - GetBlockTime: 71.124us - OpenTime: 304.97us - PrepareTime: 175.478us - SinkTime: 17.575us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 911.628us - WaitBfTime: 67.775ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.913ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.490us - InputRows: 10.114K (10114) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.165us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.112us - BlocksProduced: 3 - CloseTime: 87.840us - ExecTime: 272.635ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 387.458us - ProcessConjunctTime: 179.240us - ProjectionTime: 85.970us - RowsProduced: 10.114K (10114) - RowsRead: 10.114K (10114) - RuntimeFilterInfo: - filter id = -1 filtered: 939.358K (939358) - filter id = -1 input: 1.146688M (1146688) - ScannerWorkerWaitTime: 487.256ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 272.2ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - PerScannerRunningTime: [7.766us, 3.236ms, ] - PerScannerRowsRead: [0, 10.11K, ] - PerScannerWaitTime: [243.275ms, 243.980ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.900ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 138.84ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 326ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.357ms - ScannerCtxSchedTime: 487.253ms - ScannerFilterTime: 8.968us - ScannerGetBlockTime: 3.213ms - ScannerInitTime: 78.474us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 997080, filtered = 813464] - BitmapIndexFilterTimer: 999ns - BlockConditionsFilteredBloomFilterTime: 3.301us - BlockConditionsFilteredDictTime: 55.769us - BlockConditionsFilteredTime: 100.542us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 18.15us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 121.676us - BlockLoadTime: 140.628ms - BlocksLoad: 128 - CachedPagesNum: 121 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.33ms - FirstReadSeekCount: 125 - FirstReadSeekTime: 38.990us - FirstReadTime: 6.567ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.688us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 125.161ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.123ms - OutputIndexResultColumnTimer: 5.394us - RawRowsRead: 498.54K (498540) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 406.732K (406732) - RowsShortCircuitPredInput: 498.54K (498540) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 125.178ms - ShortPredEvalTime: 1.978ms - TotalPagesNum: 121 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 56.378us PipelineXTask (index=22):(Active: 1.354ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 609.25us - CloseTime: 68.183us - GetBlockTime: 38.608us - OpenTime: 509.363us - PrepareTime: 156.783us - SinkTime: 33.918us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.273ms - WaitBfTime: 67.460ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.798ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 34.406us - InputRows: 10.631K (10631) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.196us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 35.472us - BlocksProduced: 3 - CloseTime: 66.921us - ExecTime: 254.981ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 602.129us - ProcessConjunctTime: 333.993us - ProjectionTime: 85.772us - RowsProduced: 10.631K (10631) - RowsRead: 10.631K (10631) - RuntimeFilterInfo: - filter id = -1 filtered: 928.546K (928546) - filter id = -1 input: 1.137256M (1137256) - ScannerWorkerWaitTime: 497.72ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 254.186ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=21, opposite=false - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [7.428us, 3.452ms, ] - PerScannerRowsRead: [0, 10.63K, ] - PerScannerWaitTime: [247.292ms, 249.779ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.143ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 52.895ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 234ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.709ms - ScannerCtxSchedTime: 497.68ms - ScannerFilterTime: 11.496us - ScannerGetBlockTime: 3.431ms - ScannerInitTime: 113.944us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 984896, filtered = 800878] - BitmapIndexFilterTimer: 1.362us - BlockConditionsFilteredBloomFilterTime: 5.750us - BlockConditionsFilteredDictTime: 64.9us - BlockConditionsFilteredTime: 99.762us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.823us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 120.927us - BlockLoadTime: 55.757ms - BlocksLoad: 126 - CachedPagesNum: 120 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.842ms - FirstReadSeekCount: 142 - FirstReadSeekTime: 44.477us - FirstReadTime: 6.530ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.680us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.388ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.149ms - OutputIndexResultColumnTimer: 14.4us - RawRowsRead: 492.448K (492448) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 400.439K (400439) - RowsShortCircuitPredInput: 492.448K (492448) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.423ms - ShortPredEvalTime: 40.79ms - TotalPagesNum: 120 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 59.319us PipelineXTask (index=25):(Active: 1.105ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 483.410us - CloseTime: 41.690us - GetBlockTime: 39.580us - OpenTime: 412.948us - PrepareTime: 158.553us - SinkTime: 10.392us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.55ms - WaitBfTime: 63.353ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.293ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.553us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.200us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 49.648us - BlocksProduced: 0 - CloseTime: 38.216us - ExecTime: 390.631ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 506.364us - ProcessConjunctTime: 222.416us - ProjectionTime: 1.794us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 684.072K (684072) - filter id = -1 input: 846.612K (846612) - ScannerWorkerWaitTime: 250.68ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 390.46ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [7.595us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [250.068ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 139.883ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 148ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.31ms - ScannerCtxSchedTime: 250.66ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.930us - ScannerInitTime: 119.448us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 846612, filtered = 684072] - BitmapIndexFilterTimer: 305ns - BlockConditionsFilteredBloomFilterTime: 670ns - BlockConditionsFilteredDictTime: 33.878us - BlockConditionsFilteredTime: 49.439us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.436us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 55.621us - BlockLoadTime: 139.655ms - BlocksLoad: 106 - CachedPagesNum: 91 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.406ms - FirstReadSeekCount: 105 - FirstReadSeekTime: 33.250us - FirstReadTime: 7.143ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.34us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 124.339ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.172ms - OutputIndexResultColumnTimer: 16.517us - RawRowsRead: 423.306K (423306) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 342.036K (342036) - RowsShortCircuitPredInput: 423.306K (423306) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 124.506ms - ShortPredEvalTime: 1.874ms - TotalPagesNum: 91 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 52.199us PipelineXTask (index=28):(Active: 1.700ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 760.526us - CloseTime: 42.829us - GetBlockTime: 15.683us - OpenTime: 711.511us - PrepareTime: 170.507us - SinkTime: 2.760us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.644ms - WaitBfTime: 66.90ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.546ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 3.483us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.171us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 58.496us - BlocksProduced: 0 - CloseTime: 41.362us - ExecTime: 253.377ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 813.828us - ProcessConjunctTime: 414.906us - ProjectionTime: 1.998us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 694.66K (694660) - filter id = -1 input: 856.196K (856196) - ScannerWorkerWaitTime: 227.798ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.504ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [7.150us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [227.798ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.617ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 184ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.699ms - ScannerCtxSchedTime: 227.796ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.14us - ScannerInitTime: 206.342us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 856196, filtered = 694660] - BitmapIndexFilterTimer: 611ns - BlockConditionsFilteredBloomFilterTime: 3.275us - BlockConditionsFilteredDictTime: 39.31us - BlockConditionsFilteredTime: 59.330us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.687us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 69.307us - BlockLoadTime: 24.325ms - BlocksLoad: 107 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 6.184ms - FirstReadSeekCount: 106 - FirstReadSeekTime: 32.41us - FirstReadTime: 9.860ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.308us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.151ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.680ms - OutputIndexResultColumnTimer: 8.845us - RawRowsRead: 428.098K (428098) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 347.33K (347330) - RowsShortCircuitPredInput: 428.098K (428098) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.429ms - ShortPredEvalTime: 2.394ms - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 74.32us PipelineXTask (index=31):(Active: 71.129ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 70.482ms - CloseTime: 46.156us - GetBlockTime: 69.993ms - OpenTime: 436.442us - PrepareTime: 153.896us - SinkTime: 20.470us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.142ms - WaitBfTime: 65.966ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.488ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.730us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.147us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 58.574us - BlocksProduced: 0 - CloseTime: 39.384us - ExecTime: 313.449ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 528.899us - ProcessConjunctTime: 270.477us - ProjectionTime: 1.415us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 640.138K (640138) - filter id = -1 input: 781.164K (781164) - ScannerWorkerWaitTime: 226.760ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 242.886ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [5.172us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [226.760ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 16.42ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.67ms - ScannerCtxSchedTime: 226.757ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.685us - ScannerInitTime: 75.917us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 781164, filtered = 640138] - BitmapIndexFilterTimer: 465ns - BlockConditionsFilteredBloomFilterTime: 1.137us - BlockConditionsFilteredDictTime: 36.997us - BlockConditionsFilteredTime: 52.953us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.886us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 60.397us - BlockLoadTime: 15.756ms - BlocksLoad: 98 - CachedPagesNum: 83 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.364ms - FirstReadSeekCount: 97 - FirstReadSeekTime: 21.578us - FirstReadTime: 7.456ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.320us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.938ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 900.173us - OutputIndexResultColumnTimer: 12.818us - RawRowsRead: 390.582K (390582) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 320.069K (320069) - RowsShortCircuitPredInput: 390.582K (390582) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.38ms - ShortPredEvalTime: 1.598ms - TotalPagesNum: 83 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.628us PipelineXTask (index=34):(Active: 1.49ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 425.268us - CloseTime: 49.210us - GetBlockTime: 48.211us - OpenTime: 323.370us - PrepareTime: 241.371us - SinkTime: 30.764us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 940.881us - WaitBfTime: 60.71ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.218ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 32.456us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.397us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 82, type = minmax), RuntimeFilter: (id = 83, type = in_or_bloomfilter), - PushDownPredicates: [{STAFF_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}, {SUBMIT_DATE >= [2021-01-01 00:00:00]}] - KeyRanges: ScanKeys: - TabletIds: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.306us - BlocksProduced: 0 - CloseTime: 46.284us - ExecTime: 436.406ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 499.172us - ProcessConjunctTime: 205.154us - ProjectionTime: 2.70us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 652.984K (652984) - filter id = -1 input: 799.106K (799106) - ScannerWorkerWaitTime: 236.65ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 435.810ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 82, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 83, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [SUBMIT_DATE, TOTAL_FEE, PAY_STATUS, STAFF_ID] - PerScannerRunningTime: [7.878us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [236.065ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 199.645ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.904ms - ScannerCtxSchedTime: 236.63ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.929us - ScannerInitTime: 64.973us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 799106, filtered = 652984] - BitmapIndexFilterTimer: 343ns - BlockConditionsFilteredBloomFilterTime: 1.68us - BlockConditionsFilteredDictTime: 138.258us - BlockConditionsFilteredTime: 156.22us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.203us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 165.295us - BlockLoadTime: 199.333ms - BlocksLoad: 100 - CachedPagesNum: 85 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.515ms - FirstReadSeekCount: 99 - FirstReadSeekTime: 36.108us - FirstReadTime: 7.513ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.319us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 183.384ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.222ms - OutputIndexResultColumnTimer: 6.597us - RawRowsRead: 399.553K (399553) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 326.492K (326492) - RowsShortCircuitPredInput: 399.553K (399553) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 183.579ms - ShortPredEvalTime: 1.834ms - TotalPagesNum: 85 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 53.301us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 282.709us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 198.773us - CloseTime: 9.20us - GetBlockTime: 9.746us - OpenTime: 4.172us - PrepareTime: 65.14us - SinkTime: 157.500us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 263.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.29us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 6.804us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.728us - BuildTableInsertTime: 32.594us - BuildTableTime: 38.948us - CloseTime: 0ns - ExecTime: 185.242us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 28.545us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.962us - RuntimeFilterComputeTime: 27.82us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=257): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.704us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 2.75 KB - OpenTime: 19.662us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 65.738ms PipelineXTask (index=5):(Active: 129.42us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.852us - CloseTime: 9.158us - GetBlockTime: 0ns - OpenTime: 2.437us - PrepareTime: 60.982us - SinkTime: 29.720us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.881us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.347ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.65us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.491us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 56.842ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.282us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.298us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 105.155us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.738us - CloseTime: 12.405us - GetBlockTime: 0ns - OpenTime: 2.242us - PrepareTime: 54.956us - SinkTime: 14.875us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.353us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.352ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.37us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.372us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 56.832ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.580us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.438us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.149us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 102.247us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.573us - CloseTime: 5.810us - GetBlockTime: 0ns - OpenTime: 2.793us - PrepareTime: 53.54us - SinkTime: 19.118us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.710ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.334us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.370us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 58.621ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.580us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.51us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.484us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 148.927us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.950us - CloseTime: 15.82us - GetBlockTime: 0ns - OpenTime: 2.969us - PrepareTime: 81.668us - SinkTime: 22.253us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.309us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 961.20us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.75us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.309us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 65.533ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.621us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.891us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.497us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 119.218us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.740us - CloseTime: 4.495us - GetBlockTime: 0ns - OpenTime: 2.607us - PrepareTime: 69.447us - SinkTime: 20.422us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.630us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 665.819us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.731us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.512us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 65.856ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.295us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.861us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.749us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 126.112us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.939us - CloseTime: 4.206us - GetBlockTime: 0ns - OpenTime: 2.990us - PrepareTime: 81.943us - SinkTime: 13.488us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.383us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.437ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.168us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.608us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 64.918ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.926us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.986us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 40.236us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 130.7us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.637us - CloseTime: 9.694us - GetBlockTime: 0ns - OpenTime: 3.163us - PrepareTime: 65.342us - SinkTime: 27.986us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.481us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.796ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.415us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.770us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 60.619ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.769us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 127.450us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.990us - CloseTime: 7.492us - GetBlockTime: 0ns - OpenTime: 1.816us - PrepareTime: 70.412us - SinkTime: 20.922us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.905us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.857ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.273us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.511us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 60.579ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.810us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.49us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.575us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 126.751us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 56.8us - CloseTime: 6.740us - GetBlockTime: 0ns - OpenTime: 2.442us - PrepareTime: 55.813us - SinkTime: 26.591us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.105us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.514us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.365us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.21us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 65.830ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.512us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.194us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 171.43us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 75.278us - CloseTime: 13.524us - GetBlockTime: 0ns - OpenTime: 2.704us - PrepareTime: 73.479us - SinkTime: 45.962us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.761us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.10us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 77.662us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.199us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 65.871ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.783us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.318us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 189.578us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.913us - CloseTime: 6.141us - GetBlockTime: 0ns - OpenTime: 3.109us - PrepareTime: 123.437us - SinkTime: 26.626us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 174.143us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 138.142us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963273 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.331us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.843us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 65.889ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.494us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.26us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.678us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 53: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 255.441us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.31us - CloseTime: 31.566us - GetBlockTime: 55.58us - OpenTime: 2.843us - PrepareTime: 117.96us - SinkTime: 20.306us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 216.256us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.984us DATA_STREAM_SINK_OPERATOR (id=257,dst_id=257): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.312us - CompressTime: 0ns - ExecTime: 60.750us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 14.586us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.965us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 109 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=256): - BlocksProduced: 0 - BuildTime: 45.588us - CloseTime: 260ns - ExecTime: 69.834us - HashTableComputeTime: 16.10us - HashTableEmplaceTime: 8.252us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 22.240us - ProjectionTime: 0ns - RowsProduced: 109 EXCHANGE_OPERATOR (id=255): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 15.510us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 51.706us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 2.75 KB - OpenTime: 29.440us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 65.599ms Fragment 54: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 16.872ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.346ms - CloseTime: 60.52us - GetBlockTime: 112.157us - OpenTime: 8.177ms - PrepareTime: 276.356us - SinkTime: 23.334us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 974.828us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.821ms DATA_STREAM_SINK_OPERATOR (id=255,dst_id=255): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.750us - CompressTime: 0ns - ExecTime: 56.462us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 17.122us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 20.105us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 109 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=254): - BlocksProduced: 0 - BuildTime: 46.510us - CloseTime: 420ns - ExecTime: 167.964us - HashTableComputeTime: 18.360us - HashTableEmplaceTime: 8.636us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 118.741us - ProjectionTime: 0ns - RowsProduced: 109 OLAP_SCAN_OPERATOR (id=253. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 821ns - BlocksProduced: 1 - CloseTime: 41.962us - ExecTime: 61.862ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 8.247ms - ProcessConjunctTime: 43.607us - ProjectionTime: 0ns - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 53.318ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 53.512ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID] - PerScannerRunningTime: [27.867us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [53.318ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.663us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 127.343us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 81ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 205.927us - ScannerCtxSchedTime: 53.316ms - ScannerFilterTime: 595ns - ScannerGetBlockTime: 26.119us - ScannerInitTime: 8.81ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 158ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.89us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 6 - BlockInitSeekTime: 15.720us - BlockInitTime: 52.390us - BlockLoadTime: 63.539us - BlocksLoad: 2 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 137ns - FirstReadTime: 3.462us - IOTimer: 0ns - InvertedIndexFilterTime: 268ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 121ns - OutputIndexResultColumnTimer: 147ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 55: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 280.105us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 201.730us - CloseTime: 9.57us - GetBlockTime: 153.574us - OpenTime: 1.582us - PrepareTime: 61.101us - SinkTime: 29.274us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 263.825us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.596ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.958us - CompressTime: 0ns - ExecTime: 61.408us - InputRows: 448 - LocalBytesSent: 28.75 KB - LocalSendTime: 25.954us - LocalSentRows: 448 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.785us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 448 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 345ns - DeserializeAndMergeTime: 0ns - ExecTime: 163.528us - GetResultsTime: 79.429us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.335us - HashTableSize: 448 - InsertKeysToColumnTime: 36.773us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.318us - ProjectionTime: 63.378us - RowsProduced: 448 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s344ms PipelineXTask (index=2):(Active: 431.356us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 244.586us - CloseTime: 12.169us - GetBlockTime: 187.125us - OpenTime: 1.697us - PrepareTime: 166.149us - SinkTime: 30.560us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 409.213us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.879ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.515us - CompressTime: 0ns - ExecTime: 155.656us - InputRows: 439 - LocalBytesSent: 28.14 KB - LocalSendTime: 25.81us - LocalSentRows: 439 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 116.290us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 439 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.78us - DeserializeAndMergeTime: 0ns - ExecTime: 194.766us - GetResultsTime: 104.323us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.252us - HashTableSize: 439 - InsertKeysToColumnTime: 39.434us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.895us - ProjectionTime: 67.869us - RowsProduced: 439 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s487ms PipelineXTask (index=4):(Active: 257.798us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 185.682us - CloseTime: 9.208us - GetBlockTime: 143.994us - OpenTime: 648ns - PrepareTime: 57.277us - SinkTime: 26.132us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 241.859us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.269ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.935us - CompressTime: 0ns - ExecTime: 53.46us - InputRows: 408 - LocalBytesSent: 26.27 KB - LocalSendTime: 16.539us - LocalSentRows: 408 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 19.737us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 408 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 344ns - DeserializeAndMergeTime: 0ns - ExecTime: 153.330us - GetResultsTime: 74.654us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.537us - HashTableSize: 408 - InsertKeysToColumnTime: 28.631us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.302us - ProjectionTime: 60.721us - RowsProduced: 408 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s302ms PipelineXTask (index=6):(Active: 342.131us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 201.389us - CloseTime: 17.548us - GetBlockTime: 145.312us - OpenTime: 1.889us - PrepareTime: 114.170us - SinkTime: 28.745us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 316.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.288ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.643us - CompressTime: 0ns - ExecTime: 68.256us - InputRows: 376 - LocalBytesSent: 24.20 KB - LocalSendTime: 22.567us - LocalSentRows: 376 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 376 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 844ns - DeserializeAndMergeTime: 0ns - ExecTime: 156.331us - GetResultsTime: 75.417us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.399us - HashTableSize: 376 - InsertKeysToColumnTime: 28.522us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.546us - ProjectionTime: 46.131us - RowsProduced: 376 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s378ms PipelineXTask (index=8):(Active: 246.361us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 170.9us - CloseTime: 11.746us - GetBlockTime: 131.173us - OpenTime: 690ns - PrepareTime: 58.587us - SinkTime: 23.967us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.340us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.738ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.329us - CompressTime: 0ns - ExecTime: 57.956us - InputRows: 453 - LocalBytesSent: 29.13 KB - LocalSendTime: 20.106us - LocalSentRows: 453 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.296us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 453 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 368ns - DeserializeAndMergeTime: 0ns - ExecTime: 139.711us - GetResultsTime: 57.500us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.507us - HashTableSize: 453 - InsertKeysToColumnTime: 18.62us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.324us - ProjectionTime: 65.165us - RowsProduced: 453 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s378ms PipelineXTask (index=10):(Active: 281.170us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 173.285us - CloseTime: 9.798us - GetBlockTime: 132.287us - OpenTime: 966ns - PrepareTime: 90.870us - SinkTime: 25.805us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.342us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.426ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.702us - CompressTime: 0ns - ExecTime: 58.965us - InputRows: 416 - LocalBytesSent: 26.70 KB - LocalSendTime: 22.987us - LocalSentRows: 416 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.46us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 416 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 375ns - DeserializeAndMergeTime: 0ns - ExecTime: 137.359us - GetResultsTime: 87.604us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 15.475us - HashTableSize: 416 - InsertKeysToColumnTime: 34.390us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.405us - ProjectionTime: 38.449us - RowsProduced: 416 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s374ms PipelineXTask (index=12):(Active: 218.132us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 145.12us - CloseTime: 8.687us - GetBlockTime: 112.189us - OpenTime: 953ns - PrepareTime: 57.944us - SinkTime: 18.992us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 202.849us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.601ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.348us - CompressTime: 0ns - ExecTime: 49.274us - InputRows: 440 - LocalBytesSent: 28.22 KB - LocalSendTime: 16.783us - LocalSentRows: 440 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.227us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 440 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 343ns - DeserializeAndMergeTime: 0ns - ExecTime: 118.447us - GetResultsTime: 65.739us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.400us - HashTableSize: 440 - InsertKeysToColumnTime: 30.706us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.914us - ProjectionTime: 39.205us - RowsProduced: 440 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s379ms PipelineXTask (index=14):(Active: 258.756us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 168.813us - CloseTime: 15.379us - GetBlockTime: 122.169us - OpenTime: 373ns - PrepareTime: 68.813us - SinkTime: 28.484us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.904us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.32ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.842us - CompressTime: 0ns - ExecTime: 65.899us - InputRows: 405 - LocalBytesSent: 26.02 KB - LocalSendTime: 23.531us - LocalSentRows: 405 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.136us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 405 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 740ns - DeserializeAndMergeTime: 0ns - ExecTime: 131.755us - GetResultsTime: 61.347us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.651us - HashTableSize: 405 - InsertKeysToColumnTime: 18.933us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.666us - ProjectionTime: 48.357us - RowsProduced: 405 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s315ms PipelineXTask (index=16):(Active: 281.40us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 195.316us - CloseTime: 15.680us - GetBlockTime: 142.332us - OpenTime: 1.366us - PrepareTime: 63.427us - SinkTime: 35.156us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 259.203us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.194ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.675us - CompressTime: 0ns - ExecTime: 66.546us - InputRows: 373 - LocalBytesSent: 23.96 KB - LocalSendTime: 30.195us - LocalSentRows: 373 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 19.713us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 373 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.83us - DeserializeAndMergeTime: 0ns - ExecTime: 151.203us - GetResultsTime: 70.240us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.366us - HashTableSize: 373 - InsertKeysToColumnTime: 22.253us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.890us - ProjectionTime: 57.18us - RowsProduced: 373 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s482ms PipelineXTask (index=18):(Active: 216.750us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 140.258us - CloseTime: 10.882us - GetBlockTime: 104.969us - OpenTime: 1.944us - PrepareTime: 58.287us - SinkTime: 15.490us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.790us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.117ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.800us - CompressTime: 0ns - ExecTime: 51.632us - InputRows: 353 - LocalBytesSent: 22.66 KB - LocalSendTime: 12.839us - LocalSentRows: 353 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.729us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 353 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 330ns - DeserializeAndMergeTime: 0ns - ExecTime: 116.126us - GetResultsTime: 54.367us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.180us - HashTableSize: 353 - InsertKeysToColumnTime: 25.776us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.790us - ProjectionTime: 41.462us - RowsProduced: 353 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s380ms PipelineXTask (index=20):(Active: 213.320us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 135.154us - CloseTime: 14.714us - GetBlockTime: 93.26us - OpenTime: 1.140us - PrepareTime: 57.904us - SinkTime: 28.647us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 193.456us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.316ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.517us - CompressTime: 0ns - ExecTime: 63.360us - InputRows: 373 - LocalBytesSent: 23.94 KB - LocalSendTime: 23.312us - LocalSentRows: 373 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.764us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 373 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 577ns - DeserializeAndMergeTime: 0ns - ExecTime: 103.433us - GetResultsTime: 41.272us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.802us - HashTableSize: 373 - InsertKeysToColumnTime: 14.535us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.685us - ProjectionTime: 38.561us - RowsProduced: 373 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s368ms PipelineXTask (index=22):(Active: 248.413us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 154.255us - CloseTime: 13.341us - GetBlockTime: 119.71us - OpenTime: 1.240us - PrepareTime: 60.146us - SinkTime: 19.336us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 214.374us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.990ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.320us - CompressTime: 0ns - ExecTime: 53.285us - InputRows: 480 - LocalBytesSent: 30.81 KB - LocalSendTime: 13.969us - LocalSentRows: 480 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.262us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 480 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 800ns - DeserializeAndMergeTime: 0ns - ExecTime: 126.240us - GetResultsTime: 65.358us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.435us - HashTableSize: 480 - InsertKeysToColumnTime: 24.295us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.573us - ProjectionTime: 40.693us - RowsProduced: 480 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s475ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 901.68us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 823.501us - CloseTime: 13.940us - GetBlockTime: 175.24us - OpenTime: 2.960us - PrepareTime: 55.295us - SinkTime: 606.857us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 877.4us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.251ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.84us - DeserializeAndMergeTime: 224.570us - ExecTime: 625.4us - ExprTime: 0ns - HashTableComputeTime: 335.603us - HashTableEmplaceTime: 187.39us - HashTableInputCount: 3.304K (3304) - InputRows: 3.304K (3304) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.05 MB - SerializeKeyArena: 1.04 MB - MergeTime: 594.319us - OpenTime: 19.874us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.923us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 196.546us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 327.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 15.133us - ProjectionTime: 0ns - RowsProduced: 3.304K (3304) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s249ms PipelineXTask (index=3):(Active: 1.46ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 943.604us - CloseTime: 12.908us - GetBlockTime: 151.262us - OpenTime: 3.732us - PrepareTime: 80.149us - SinkTime: 728.947us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 215.934ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.689us - DeserializeAndMergeTime: 236.624us - ExecTime: 768.901us - ExprTime: 0ns - HashTableComputeTime: 416.306us - HashTableEmplaceTime: 268.380us - HashTableInputCount: 3.195K (3195) - InputRows: 3.195K (3195) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 710.336us - OpenTime: 42.228us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.856us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.894us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 297.00 KB - MemoryUsage: - Blocks: 108.00 KB - PeakMemoryUsage: 108.00 KB - OpenTime: 16.333us - ProjectionTime: 0ns - RowsProduced: 3.195K (3195) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s270ms PipelineXTask (index=5):(Active: 898.733us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 817.71us - CloseTime: 8.480us - GetBlockTime: 114.401us - OpenTime: 1.980us - PrepareTime: 66.519us - SinkTime: 648.478us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 877.397us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.373ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.217us - DeserializeAndMergeTime: 210.67us - ExecTime: 668.660us - ExprTime: 0ns - HashTableComputeTime: 384.530us - HashTableEmplaceTime: 247.392us - HashTableInputCount: 2.985K (2985) - InputRows: 2.985K (2985) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 634.18us - OpenTime: 22.159us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 147.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 283.50 KB - MemoryUsage: - Blocks: 106.00 KB - PeakMemoryUsage: 106.00 KB - OpenTime: 33.812us - ProjectionTime: 0ns - RowsProduced: 2.985K (2985) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s269ms PipelineXTask (index=7):(Active: 812.560us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 730.964us - CloseTime: 6.29us - GetBlockTime: 114.938us - OpenTime: 2.857us - PrepareTime: 67.333us - SinkTime: 574.724us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 796.304us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.723ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.261us - DeserializeAndMergeTime: 160.551us - ExecTime: 606.929us - ExprTime: 0ns - HashTableComputeTime: 363.113us - HashTableEmplaceTime: 213.429us - HashTableInputCount: 2.783K (2783) - InputRows: 2.783K (2783) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 561.895us - OpenTime: 33.656us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.340us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.702us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 231.50 KB - MemoryUsage: - Blocks: 107.50 KB - PeakMemoryUsage: 107.50 KB - OpenTime: 15.646us - ProjectionTime: 0ns - RowsProduced: 2.783K (2783) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s257ms PipelineXTask (index=9):(Active: 937.969us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 860.887us - CloseTime: 6.405us - GetBlockTime: 137.106us - OpenTime: 3.344us - PrepareTime: 62.6us - SinkTime: 680.649us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 919.762us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.197ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.1us - DeserializeAndMergeTime: 190.215us - ExecTime: 713.473us - ExprTime: 0ns - HashTableComputeTime: 422.236us - HashTableEmplaceTime: 286.787us - HashTableInputCount: 3.392K (3392) - InputRows: 3.392K (3392) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.06 MB - SerializeKeyArena: 1.04 MB - MergeTime: 671.742us - OpenTime: 33.879us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 153.533us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 327.50 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 15.291us - ProjectionTime: 0ns - RowsProduced: 3.392K (3392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s252ms PipelineXTask (index=11):(Active: 726.948us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 660.600us - CloseTime: 4.378us - GetBlockTime: 112.444us - OpenTime: 2.640us - PrepareTime: 54.468us - SinkTime: 512.383us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 714.670us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.306ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 2.256us - DeserializeAndMergeTime: 166.965us - ExecTime: 534.721us - ExprTime: 0ns - HashTableComputeTime: 298.701us - HashTableEmplaceTime: 180.62us - HashTableInputCount: 2.987K (2987) - InputRows: 2.987K (2987) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 492.558us - OpenTime: 22.380us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.676us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.735us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 291.00 KB - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 154.50 KB - OpenTime: 16.15us - ProjectionTime: 0ns - RowsProduced: 2.987K (2987) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s256ms PipelineXTask (index=13):(Active: 760.690us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 658.851us - CloseTime: 4.531us - GetBlockTime: 90.890us - OpenTime: 3.369us - PrepareTime: 87.943us - SinkTime: 536.72us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 746.358us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 127.711ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 2.48us - DeserializeAndMergeTime: 163.764us - ExecTime: 593.759us - ExprTime: 0ns - HashTableComputeTime: 337.538us - HashTableEmplaceTime: 216.556us - HashTableInputCount: 3.286K (3286) - InputRows: 3.286K (3286) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 528.990us - OpenTime: 57.155us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.898us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 308.50 KB - MemoryUsage: - Blocks: 156.50 KB - PeakMemoryUsage: 156.50 KB - OpenTime: 12.873us - ProjectionTime: 0ns - RowsProduced: 3.286K (3286) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s251ms PipelineXTask (index=15):(Active: 778.852us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 687.733us - CloseTime: 7.418us - GetBlockTime: 95.506us - OpenTime: 2.950us - PrepareTime: 76.715us - SinkTime: 550.667us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 762.750us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.907ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.142us - DeserializeAndMergeTime: 162.75us - ExecTime: 572.605us - ExprTime: 0ns - HashTableComputeTime: 325.336us - HashTableEmplaceTime: 212.322us - HashTableInputCount: 2.812K (2812) - InputRows: 2.812K (2812) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 537.184us - OpenTime: 23.475us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.569us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.821us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 245.00 KB - MemoryUsage: - Blocks: 102.50 KB - PeakMemoryUsage: 102.50 KB - OpenTime: 16.247us - ProjectionTime: 0ns - RowsProduced: 2.812K (2812) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s245ms PipelineXTask (index=17):(Active: 896.97us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 798.876us - CloseTime: 9.273us - GetBlockTime: 111.377us - OpenTime: 3.193us - PrepareTime: 78.28us - SinkTime: 635.661us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 874.304us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.850ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 5.560us - DeserializeAndMergeTime: 177.8us - ExecTime: 664.473us - ExprTime: 0ns - HashTableComputeTime: 405.82us - HashTableEmplaceTime: 259.387us - HashTableInputCount: 2.763K (2763) - InputRows: 2.763K (2763) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 622.246us - OpenTime: 25.933us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 132.343us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 238.00 KB - MemoryUsage: - Blocks: 94.00 KB - PeakMemoryUsage: 94.00 KB - OpenTime: 29.780us - ProjectionTime: 0ns - RowsProduced: 2.763K (2763) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s282ms PipelineXTask (index=19):(Active: 650.907us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 567.833us - CloseTime: 6.322us - GetBlockTime: 89.57us - OpenTime: 2.657us - PrepareTime: 69.150us - SinkTime: 445.2us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 636.72us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.563ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 2.738us - DeserializeAndMergeTime: 141.54us - ExecTime: 483.613us - ExprTime: 0ns - HashTableComputeTime: 275.89us - HashTableEmplaceTime: 157.434us - HashTableInputCount: 2.628K (2628) - InputRows: 2.628K (2628) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 436.652us - OpenTime: 37.497us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.94us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.848us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 193.50 KB - MemoryUsage: - Blocks: 96.50 KB - PeakMemoryUsage: 96.50 KB - OpenTime: 13.426us - ProjectionTime: 0ns - RowsProduced: 2.628K (2628) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s256ms PipelineXTask (index=21):(Active: 657.974us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 571.479us - CloseTime: 5.709us - GetBlockTime: 98.456us - OpenTime: 2.652us - PrepareTime: 71.963us - SinkTime: 440.977us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 643.553us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.330ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 670ns - DeserializeAndMergeTime: 134.491us - ExecTime: 473.555us - ExprTime: 0ns - HashTableComputeTime: 263.987us - HashTableEmplaceTime: 162.587us - HashTableInputCount: 2.803K (2803) - InputRows: 2.803K (2803) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 433.130us - OpenTime: 33.422us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.16us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 241.00 KB - MemoryUsage: - Blocks: 112.00 KB - PeakMemoryUsage: 112.00 KB - OpenTime: 19.196us - ProjectionTime: 0ns - RowsProduced: 2.803K (2803) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s251ms PipelineXTask (index=23):(Active: 1.111ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.39ms - CloseTime: 3.181us - GetBlockTime: 118.950us - OpenTime: 3.610us - PrepareTime: 59.905us - SinkTime: 864.954us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.94ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 233.631ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 824ns - DeserializeAndMergeTime: 214.902us - ExecTime: 891.595us - ExprTime: 0ns - HashTableComputeTime: 580.154us - HashTableEmplaceTime: 426.347us - HashTableInputCount: 3.428K (3428) - InputRows: 3.428K (3428) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.06 MB - SerializeKeyArena: 1.04 MB - MergeTime: 848.372us - OpenTime: 28.936us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 323.00 KB - MemoryUsage: - Blocks: 157.00 KB - PeakMemoryUsage: 157.00 KB - OpenTime: 14.245us - ProjectionTime: 0ns - RowsProduced: 3.428K (3428) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s252ms Fragment 56: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 61.877ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.204ms - CloseTime: 43.273ms - GetBlockTime: 17.684ms - OpenTime: 8.625us - PrepareTime: 380.933us - SinkTime: 458.960us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.793ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.952ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.126us - CompressTime: 0ns - ExecTime: 567.612us - InputRows: 3.087K (3087) - LocalBytesSent: 180.51 KB - LocalSendTime: 87.548us - LocalSentRows: 3.087K (3087) - MemoryUsage: - PeakMemoryUsage: 283.00 KB - MergeBlockTime: 0ns - OpenTime: 96.131us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.087K (3087) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 203.607us - SplitBlockHashComputeTime: 71.928us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.553ms - CloseTime: 43.231ms - DeserializeAndMergeTime: 0ns - ExecTime: 46.236ms - ExprTime: 208.452us - GetResultsTime: 368.759us - HashTableComputeTime: 2.97ms - HashTableEmplaceTime: 1.585ms - HashTableInputCount: 16.639K (16639) - HashTableIterateTime: 19.16us - HashTableSize: 3.087K (3087) - InsertKeysToColumnTime: 125.170us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 56.565us - ProjectionTime: 0ns - RowsProduced: 3.087K (3087) - SerializeDataTime: 197.998us - SerializeKeyTime: 0ns - SerializeResultTime: 370.486us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 11.564us - ExecTime: 14.671ms - InitProbeSideTime: 24.651us - JoinFilterTimer: 1.64us - MemoryUsage: - PeakMemoryUsage: 7.48 KB - ProbeKeyArena: 7.48 KB - OpenTime: 25.880us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 689ns - ProbeFindNextTime: 0ns - ProbeRows: 479 - ProbeTime: 10.993ms - ProbeWhenBuildSideOutputTime: 1.261ms - ProbeWhenProbeSideOutputTime: 9.45ms - ProbeWhenProcessHashTableTime: 44.949us - ProbeWhenSearchHashTableTime: 407.671us - ProjectionTime: 3.629ms - RowsProduced: 16.639K (16639) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s200ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.220us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 34.985us - ProjectionTime: 0ns - RowsProduced: 479 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 971.9ms PipelineXTask (index=2):(Active: 5.439ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.59ms - CloseTime: 91.902us - GetBlockTime: 4.614ms - OpenTime: 14.730us - PrepareTime: 266.601us - SinkTime: 381.388us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.285ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.530ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.95us - CompressTime: 0ns - ExecTime: 488.283us - InputRows: 2.357K (2357) - LocalBytesSent: 137.97 KB - LocalSendTime: 86.272us - LocalSentRows: 2.357K (2357) - MemoryUsage: - PeakMemoryUsage: 182.50 KB - MergeBlockTime: 0ns - OpenTime: 94.451us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.357K (2357) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 160.514us - SplitBlockHashComputeTime: 52.440us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.552ms - CloseTime: 53.338us - DeserializeAndMergeTime: 0ns - ExecTime: 1.945ms - ExprTime: 131.286us - GetResultsTime: 282.288us - HashTableComputeTime: 1.361ms - HashTableEmplaceTime: 1.56ms - HashTableInputCount: 8.835K (8835) - HashTableIterateTime: 13.21us - HashTableSize: 2.357K (2357) - InsertKeysToColumnTime: 96.433us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 39.415us - ProjectionTime: 0ns - RowsProduced: 2.357K (2357) - SerializeDataTime: 153.632us - SerializeKeyTime: 0ns - SerializeResultTime: 284.325us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 9.481us - ExecTime: 2.738ms - InitProbeSideTime: 37.456us - JoinFilterTimer: 451ns - MemoryUsage: - PeakMemoryUsage: 7.53 KB - ProbeKeyArena: 7.53 KB - OpenTime: 20.419us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.101us - ProbeFindNextTime: 0ns - ProbeRows: 482 - ProbeTime: 949.870us - ProbeWhenBuildSideOutputTime: 547.888us - ProbeWhenProbeSideOutputTime: 112.974us - ProbeWhenProcessHashTableTime: 22.602us - ProbeWhenSearchHashTableTime: 121.383us - ProjectionTime: 1.748ms - RowsProduced: 8.835K (8835) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s218ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.997us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.67us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.00 KB - MemoryUsage: - Blocks: 12.00 KB - PeakMemoryUsage: 12.00 KB - OpenTime: 27.782us - ProjectionTime: 0ns - RowsProduced: 482 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.864ms PipelineXTask (index=4):(Active: 14.333ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.871ms - CloseTime: 203.287us - GetBlockTime: 13.277ms - OpenTime: 5.795us - PrepareTime: 246.829us - SinkTime: 528.546us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.119ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.641ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.733us - CompressTime: 0ns - ExecTime: 618.974us - InputRows: 3.366K (3366) - LocalBytesSent: 215.81 KB - LocalSendTime: 70.294us - LocalSentRows: 3.366K (3366) - MemoryUsage: - PeakMemoryUsage: 347.00 KB - MergeBlockTime: 0ns - OpenTime: 77.635us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.366K (3366) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 260.502us - SplitBlockHashComputeTime: 73.10us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.867ms - CloseTime: 160.448us - DeserializeAndMergeTime: 0ns - ExecTime: 4.626ms - ExprTime: 270.203us - GetResultsTime: 523.79us - HashTableComputeTime: 2.898ms - HashTableEmplaceTime: 1.958ms - HashTableInputCount: 27.777K (27777) - HashTableIterateTime: 19.231us - HashTableSize: 3.366K (3366) - InsertKeysToColumnTime: 141.378us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 29.124us - ProjectionTime: 0ns - RowsProduced: 3.366K (3366) - SerializeDataTime: 328.808us - SerializeKeyTime: 0ns - SerializeResultTime: 525.254us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 13.517us - ExecTime: 8.757ms - InitProbeSideTime: 27.111us - JoinFilterTimer: 1.372us - MemoryUsage: - PeakMemoryUsage: 7.75 KB - ProbeKeyArena: 7.75 KB - OpenTime: 21.632us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 692ns - ProbeFindNextTime: 0ns - ProbeRows: 496 - ProbeTime: 3.697ms - ProbeWhenBuildSideOutputTime: 2.300ms - ProbeWhenProbeSideOutputTime: 286.653us - ProbeWhenProcessHashTableTime: 74.428us - ProbeWhenSearchHashTableTime: 802.178us - ProjectionTime: 5.7ms - RowsProduced: 27.777K (27777) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s220ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.708us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.613us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.00 KB - MemoryUsage: - Blocks: 12.00 KB - PeakMemoryUsage: 12.00 KB - OpenTime: 15.561us - ProjectionTime: 0ns - RowsProduced: 496 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.856ms PipelineXTask (index=6):(Active: 9.4ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 8.625ms - CloseTime: 102.631us - GetBlockTime: 8.70ms - OpenTime: 5.670us - PrepareTime: 264.69us - SinkTime: 493.889us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.883ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.596ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.80us - CompressTime: 0ns - ExecTime: 572.933us - InputRows: 3.159K (3159) - LocalBytesSent: 184.75 KB - LocalSendTime: 81.197us - LocalSentRows: 3.159K (3159) - MemoryUsage: - PeakMemoryUsage: 286.50 KB - MergeBlockTime: 0ns - OpenTime: 67.721us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.159K (3159) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 231.818us - SplitBlockHashComputeTime: 69.243us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.365ms - CloseTime: 65.210us - DeserializeAndMergeTime: 0ns - ExecTime: 2.845ms - ExprTime: 176.42us - GetResultsTime: 360.301us - HashTableComputeTime: 2.20ms - HashTableEmplaceTime: 1.439ms - HashTableInputCount: 18.873K (18873) - HashTableIterateTime: 17.787us - HashTableSize: 3.159K (3159) - InsertKeysToColumnTime: 115.495us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 33.137us - ProjectionTime: 0ns - RowsProduced: 3.159K (3159) - SerializeDataTime: 194.862us - SerializeKeyTime: 0ns - SerializeResultTime: 362.909us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 11.63us - ExecTime: 5.301ms - InitProbeSideTime: 17.95us - JoinFilterTimer: 840ns - MemoryUsage: - PeakMemoryUsage: 7.28 KB - ProbeKeyArena: 7.28 KB - OpenTime: 39.571us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 792ns - ProbeFindNextTime: 0ns - ProbeRows: 466 - ProbeTime: 1.906ms - ProbeWhenBuildSideOutputTime: 1.138ms - ProbeWhenProbeSideOutputTime: 190.395us - ProbeWhenProcessHashTableTime: 43.310us - ProbeWhenSearchHashTableTime: 377.157us - ProjectionTime: 3.334ms - RowsProduced: 18.873K (18873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s286ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.925us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.381us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 20.175us - ProjectionTime: 0ns - RowsProduced: 466 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.848ms PipelineXTask (index=8):(Active: 6.903ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.544ms - CloseTime: 108.946us - GetBlockTime: 6.23ms - OpenTime: 5.229us - PrepareTime: 237.847us - SinkTime: 483.343us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.784ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.666ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.69us - CompressTime: 0ns - ExecTime: 567.927us - InputRows: 2.775K (2775) - LocalBytesSent: 162.27 KB - LocalSendTime: 80.370us - LocalSentRows: 2.775K (2775) - MemoryUsage: - PeakMemoryUsage: 234.00 KB - MergeBlockTime: 0ns - OpenTime: 72.740us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.775K (2775) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 192.956us - SplitBlockHashComputeTime: 76.221us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.899ms - CloseTime: 70.558us - DeserializeAndMergeTime: 0ns - ExecTime: 2.388ms - ExprTime: 129.103us - GetResultsTime: 374.515us - HashTableComputeTime: 1.649ms - HashTableEmplaceTime: 1.263ms - HashTableInputCount: 12.18K (12180) - HashTableIterateTime: 26.811us - HashTableSize: 2.775K (2775) - InsertKeysToColumnTime: 123.996us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 30.182us - ProjectionTime: 0ns - RowsProduced: 2.775K (2775) - SerializeDataTime: 197.694us - SerializeKeyTime: 0ns - SerializeResultTime: 376.59us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.943us - ExecTime: 3.707ms - InitProbeSideTime: 93.570us - JoinFilterTimer: 485ns - MemoryUsage: - PeakMemoryUsage: 7.03 KB - ProbeKeyArena: 7.03 KB - OpenTime: 19.935us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 819ns - ProbeFindNextTime: 0ns - ProbeRows: 450 - ProbeTime: 1.409ms - ProbeWhenBuildSideOutputTime: 777.237us - ProbeWhenProbeSideOutputTime: 140.440us - ProbeWhenProcessHashTableTime: 33.696us - ProbeWhenSearchHashTableTime: 241.465us - ProjectionTime: 2.256ms - RowsProduced: 12.18K (12180) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s220ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.244us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.999us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 17.779us - ProjectionTime: 0ns - RowsProduced: 450 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.830ms PipelineXTask (index=10):(Active: 7.995ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.671ms - CloseTime: 114.294us - GetBlockTime: 7.181ms - OpenTime: 5.130us - PrepareTime: 198.920us - SinkTime: 442.635us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.871ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.219ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.563us - CompressTime: 0ns - ExecTime: 521.698us - InputRows: 3.086K (3086) - LocalBytesSent: 180.46 KB - LocalSendTime: 70.457us - LocalSentRows: 3.086K (3086) - MemoryUsage: - PeakMemoryUsage: 280.50 KB - MergeBlockTime: 0ns - OpenTime: 65.820us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.086K (3086) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 214.806us - SplitBlockHashComputeTime: 66.665us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.131ms - CloseTime: 64.78us - DeserializeAndMergeTime: 0ns - ExecTime: 2.587ms - ExprTime: 169.148us - GetResultsTime: 336.490us - HashTableComputeTime: 1.827ms - HashTableEmplaceTime: 1.351ms - HashTableInputCount: 16.74K (16740) - HashTableIterateTime: 19.311us - HashTableSize: 3.086K (3086) - InsertKeysToColumnTime: 111.992us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 33.393us - ProjectionTime: 0ns - RowsProduced: 3.086K (3086) - SerializeDataTime: 182.3us - SerializeKeyTime: 0ns - SerializeResultTime: 338.81us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 10.456us - ExecTime: 4.638ms - InitProbeSideTime: 23.194us - JoinFilterTimer: 714ns - MemoryUsage: - PeakMemoryUsage: 7.33 KB - ProbeKeyArena: 7.33 KB - OpenTime: 18.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 708ns - ProbeFindNextTime: 0ns - ProbeRows: 469 - ProbeTime: 1.620ms - ProbeWhenBuildSideOutputTime: 964.636us - ProbeWhenProbeSideOutputTime: 165.755us - ProbeWhenProcessHashTableTime: 48.959us - ProbeWhenSearchHashTableTime: 295.390us - ProjectionTime: 2.980ms - RowsProduced: 16.74K (16740) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s287ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 21.957us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 15.474us - ProjectionTime: 0ns - RowsProduced: 469 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.808ms PipelineXTask (index=12):(Active: 6.495ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.92ms - CloseTime: 93.473us - GetBlockTime: 5.613ms - OpenTime: 8.581us - PrepareTime: 290.922us - SinkTime: 432.39us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.392ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 386.281ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.916us - CompressTime: 0ns - ExecTime: 527.881us - InputRows: 2.891K (2891) - LocalBytesSent: 169.09 KB - LocalSendTime: 75.303us - LocalSentRows: 2.891K (2891) - MemoryUsage: - PeakMemoryUsage: 260.00 KB - MergeBlockTime: 0ns - OpenTime: 83.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.891K (2891) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 201.782us - SplitBlockHashComputeTime: 64.845us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.745ms - CloseTime: 54.178us - DeserializeAndMergeTime: 0ns - ExecTime: 2.195ms - ExprTime: 144.314us - GetResultsTime: 298.980us - HashTableComputeTime: 1.519ms - HashTableEmplaceTime: 1.161ms - HashTableInputCount: 12.893K (12893) - HashTableIterateTime: 18.645us - HashTableSize: 2.891K (2891) - InsertKeysToColumnTime: 91.974us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 74.103us - ProjectionTime: 0ns - RowsProduced: 2.891K (2891) - SerializeDataTime: 161.217us - SerializeKeyTime: 0ns - SerializeResultTime: 301.25us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 9.383us - ExecTime: 3.533ms - InitProbeSideTime: 18.556us - JoinFilterTimer: 686ns - MemoryUsage: - PeakMemoryUsage: 7.30 KB - ProbeKeyArena: 7.30 KB - OpenTime: 33.684us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 744ns - ProbeFindNextTime: 0ns - ProbeRows: 467 - ProbeTime: 1.160ms - ProbeWhenBuildSideOutputTime: 659.798us - ProbeWhenProbeSideOutputTime: 143.852us - ProbeWhenProcessHashTableTime: 30.347us - ProbeWhenSearchHashTableTime: 195.60us - ProjectionTime: 2.322ms - RowsProduced: 12.893K (12893) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s885ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.413us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.976us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 23.311us - ProjectionTime: 0ns - RowsProduced: 467 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 965.697ms PipelineXTask (index=14):(Active: 56.445ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.962ms - CloseTime: 162.673us - GetBlockTime: 55.379ms - OpenTime: 9.420us - PrepareTime: 304.17us - SinkTime: 524.703us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.525ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.855ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.201us - CompressTime: 0ns - ExecTime: 597.855us - InputRows: 2.999K (2999) - LocalBytesSent: 175.44 KB - LocalSendTime: 96.343us - LocalSentRows: 2.999K (2999) - MemoryUsage: - PeakMemoryUsage: 270.50 KB - MergeBlockTime: 0ns - OpenTime: 63.300us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.999K (2999) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 226.86us - SplitBlockHashComputeTime: 69.607us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 50.708ms - CloseTime: 125.351us - DeserializeAndMergeTime: 0ns - ExecTime: 51.331ms - ExprTime: 48.955ms - GetResultsTime: 439.465us - HashTableComputeTime: 1.654ms - HashTableEmplaceTime: 1.252ms - HashTableInputCount: 13.279K (13279) - HashTableIterateTime: 28.223us - HashTableSize: 2.999K (2999) - InsertKeysToColumnTime: 155.327us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 29.796us - ProjectionTime: 0ns - RowsProduced: 2.999K (2999) - SerializeDataTime: 222.390us - SerializeKeyTime: 0ns - SerializeResultTime: 441.749us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 14.790us - ExecTime: 4.140ms - InitProbeSideTime: 20.474us - JoinFilterTimer: 741ns - MemoryUsage: - PeakMemoryUsage: 7.34 KB - ProbeKeyArena: 7.34 KB - OpenTime: 22.776us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.295us - ProbeFindNextTime: 0ns - ProbeRows: 470 - ProbeTime: 1.461ms - ProbeWhenBuildSideOutputTime: 781.351us - ProbeWhenProbeSideOutputTime: 156.320us - ProbeWhenProcessHashTableTime: 39.842us - ProbeWhenSearchHashTableTime: 267.367us - ProjectionTime: 2.630ms - RowsProduced: 13.279K (13279) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s83ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.636us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.315us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 17.275us - ProjectionTime: 0ns - RowsProduced: 470 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 963.806ms PipelineXTask (index=16):(Active: 9.661ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.307ms - CloseTime: 100.476us - GetBlockTime: 8.725ms - OpenTime: 9.560us - PrepareTime: 237.776us - SinkTime: 523.768us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.364ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.53us - CompressTime: 0ns - ExecTime: 610.535us - InputRows: 3.437K (3437) - LocalBytesSent: 200.95 KB - LocalSendTime: 80.732us - LocalSentRows: 3.437K (3437) - MemoryUsage: - PeakMemoryUsage: 324.50 KB - MergeBlockTime: 0ns - OpenTime: 76.525us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.437K (3437) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 235.465us - SplitBlockHashComputeTime: 78.178us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.506ms - CloseTime: 68.422us - DeserializeAndMergeTime: 0ns - ExecTime: 3.85ms - ExprTime: 174.37us - GetResultsTime: 448.987us - HashTableComputeTime: 2.152ms - HashTableEmplaceTime: 1.524ms - HashTableInputCount: 21.368K (21368) - HashTableIterateTime: 28.179us - HashTableSize: 3.437K (3437) - InsertKeysToColumnTime: 152.531us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 35.665us - ProjectionTime: 0ns - RowsProduced: 3.437K (3437) - SerializeDataTime: 236.349us - SerializeKeyTime: 0ns - SerializeResultTime: 450.649us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 11.214us - ExecTime: 5.662ms - InitProbeSideTime: 15.963us - JoinFilterTimer: 1.142us - MemoryUsage: - PeakMemoryUsage: 7.45 KB - ProbeKeyArena: 7.45 KB - OpenTime: 25.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 548ns - ProbeFindNextTime: 0ns - ProbeRows: 477 - ProbeTime: 1.921ms - ProbeWhenBuildSideOutputTime: 1.204ms - ProbeWhenProbeSideOutputTime: 226.755us - ProbeWhenProcessHashTableTime: 64.927us - ProbeWhenSearchHashTableTime: 215.782us - ProjectionTime: 3.694ms - RowsProduced: 21.368K (21368) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s133ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 29.941us - ProjectionTime: 0ns - RowsProduced: 477 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 958.796ms PipelineXTask (index=18):(Active: 29.663ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.272ms - CloseTime: 98.16us - GetBlockTime: 28.725ms - OpenTime: 10.769us - PrepareTime: 273.300us - SinkTime: 481.353us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.539ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 328.176ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.160us - CompressTime: 0ns - ExecTime: 569.541us - InputRows: 2.745K (2745) - LocalBytesSent: 160.58 KB - LocalSendTime: 64.825us - LocalSentRows: 2.745K (2745) - MemoryUsage: - PeakMemoryUsage: 228.00 KB - MergeBlockTime: 0ns - OpenTime: 77.7us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.745K (2745) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 225.332us - SplitBlockHashComputeTime: 69.517us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 24.171ms - CloseTime: 64.673us - DeserializeAndMergeTime: 0ns - ExecTime: 24.718ms - ExprTime: 170.664us - GetResultsTime: 395.431us - HashTableComputeTime: 23.862ms - HashTableEmplaceTime: 1.350ms - HashTableInputCount: 12.977K (12977) - HashTableIterateTime: 33.640us - HashTableSize: 2.745K (2745) - InsertKeysToColumnTime: 127.353us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 61.803us - ProjectionTime: 0ns - RowsProduced: 2.745K (2745) - SerializeDataTime: 204.995us - SerializeKeyTime: 0ns - SerializeResultTime: 397.64us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 11.446us - ExecTime: 4.93ms - InitProbeSideTime: 23.305us - JoinFilterTimer: 644ns - MemoryUsage: - PeakMemoryUsage: 6.95 KB - ProbeKeyArena: 6.95 KB - OpenTime: 27.67us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 900ns - ProbeFindNextTime: 0ns - ProbeRows: 445 - ProbeTime: 1.529ms - ProbeWhenBuildSideOutputTime: 859.742us - ProbeWhenProbeSideOutputTime: 152.186us - ProbeWhenProcessHashTableTime: 31.862us - ProbeWhenSearchHashTableTime: 301.295us - ProjectionTime: 2.514ms - RowsProduced: 12.977K (12977) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s969ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.915us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 16.598us - ProjectionTime: 0ns - RowsProduced: 445 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.942ms PipelineXTask (index=20):(Active: 8.4ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.647ms - CloseTime: 101.709us - GetBlockTime: 7.58ms - OpenTime: 8.840us - PrepareTime: 239.197us - SinkTime: 535.801us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.891ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 385.668ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.105us - CompressTime: 0ns - ExecTime: 619.943us - InputRows: 3.157K (3157) - LocalBytesSent: 184.66 KB - LocalSendTime: 87.291us - LocalSentRows: 3.157K (3157) - MemoryUsage: - PeakMemoryUsage: 294.50 KB - MergeBlockTime: 0ns - OpenTime: 70.571us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.157K (3157) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 261.519us - SplitBlockHashComputeTime: 70.713us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.80ms - CloseTime: 62.381us - DeserializeAndMergeTime: 0ns - ExecTime: 2.596ms - ExprTime: 153.344us - GetResultsTime: 371.251us - HashTableComputeTime: 1.815ms - HashTableEmplaceTime: 1.329ms - HashTableInputCount: 16.705K (16705) - HashTableIterateTime: 19.1us - HashTableSize: 3.157K (3157) - InsertKeysToColumnTime: 116.83us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 54.852us - ProjectionTime: 0ns - RowsProduced: 3.157K (3157) - SerializeDataTime: 205.436us - SerializeKeyTime: 0ns - SerializeResultTime: 373.440us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 11.106us - ExecTime: 4.514ms - InitProbeSideTime: 17.122us - JoinFilterTimer: 825ns - MemoryUsage: - PeakMemoryUsage: 7.16 KB - ProbeKeyArena: 7.16 KB - OpenTime: 22.722us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.33us - ProbeFindNextTime: 0ns - ProbeRows: 458 - ProbeTime: 1.595ms - ProbeWhenBuildSideOutputTime: 892.654us - ProbeWhenProbeSideOutputTime: 170.486us - ProbeWhenProcessHashTableTime: 41.337us - ProbeWhenSearchHashTableTime: 289.387us - ProjectionTime: 2.874ms - RowsProduced: 16.705K (16705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s874ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.80us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.638us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 20.7us - ProjectionTime: 0ns - RowsProduced: 458 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 967.729ms PipelineXTask (index=22):(Active: 9.924ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.485ms - CloseTime: 96.136us - GetBlockTime: 8.880ms - OpenTime: 10.77us - PrepareTime: 326.249us - SinkTime: 531.128us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.391ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 347.175ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.659us - CompressTime: 0ns - ExecTime: 600.994us - InputRows: 3.307K (3307) - LocalBytesSent: 193.34 KB - LocalSendTime: 99.318us - LocalSentRows: 3.307K (3307) - MemoryUsage: - PeakMemoryUsage: 315.50 KB - MergeBlockTime: 0ns - OpenTime: 57.673us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.307K (3307) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 203.931us - SplitBlockHashComputeTime: 70.256us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.343ms - CloseTime: 61.198us - DeserializeAndMergeTime: 0ns - ExecTime: 2.803ms - ExprTime: 177.538us - GetResultsTime: 335.546us - HashTableComputeTime: 2.25ms - HashTableEmplaceTime: 1.444ms - HashTableInputCount: 21.727K (21727) - HashTableIterateTime: 20.553us - HashTableSize: 3.307K (3307) - InsertKeysToColumnTime: 123.195us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 34.207us - ProjectionTime: 0ns - RowsProduced: 3.307K (3307) - SerializeDataTime: 170.446us - SerializeKeyTime: 0ns - SerializeResultTime: 337.212us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 11.137us - ExecTime: 6.79ms - InitProbeSideTime: 21.195us - JoinFilterTimer: 1.265us - MemoryUsage: - PeakMemoryUsage: 7.20 KB - ProbeKeyArena: 7.20 KB - OpenTime: 26.652us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.374us - ProbeFindNextTime: 0ns - ProbeRows: 461 - ProbeTime: 1.827ms - ProbeWhenBuildSideOutputTime: 1.51ms - ProbeWhenProbeSideOutputTime: 195.939us - ProbeWhenProcessHashTableTime: 54.43us - ProbeWhenSearchHashTableTime: 312.600us - ProjectionTime: 4.201ms - RowsProduced: 21.727K (21727) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s969ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.255us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.00 KB - MemoryUsage: - Blocks: 11.00 KB - PeakMemoryUsage: 11.00 KB - OpenTime: 23.164us - ProjectionTime: 0ns - RowsProduced: 461 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 970.949ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.353ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.238ms - CloseTime: 22.169us - GetBlockTime: 296.438us - OpenTime: 2.963us - PrepareTime: 86.247us - SinkTime: 1.879ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.319ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 157.545ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.888us - BuildRows: 16.64K (16640) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.372ms - BuildTableInsertTime: 220.646us - BuildTableTime: 223.275us - CloseTime: 0ns - ExecTime: 1.912ms - InputRows: 16.639K (16639) - MemoryUsage: - BuildBlocks: 1.06 MB - BuildKeyArena: 260.00 KB - HashTable: 209.25 KB - PeakMemoryUsage: 1.52 MB - OpenTime: 37.171us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.957us - RuntimeFilterComputeTime: 197.453us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 20.418us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 329.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.66 MB - MemoryUsage: - Blocks: 1016.00 KB - PeakMemoryUsage: 1016.00 KB - OpenTime: 21.654us - ProjectionTime: 0ns - RowsProduced: 16.639K (16639) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s112ms PipelineXTask (index=3):(Active: 1.352ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.272ms - CloseTime: 12.312us - GetBlockTime: 158.522us - OpenTime: 10.804us - PrepareTime: 51.73us - SinkTime: 1.51ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.325ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.820ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.563us - BuildRows: 8.836K (8836) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 672.148us - BuildTableInsertTime: 162.102us - BuildTableTime: 167.44us - CloseTime: 0ns - ExecTime: 1.68ms - InputRows: 8.835K (8835) - MemoryUsage: - BuildBlocks: 577.84 KB - BuildKeyArena: 138.06 KB - HashTable: 107.15 KB - PeakMemoryUsage: 823.05 KB - OpenTime: 19.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.555us - RuntimeFilterComputeTime: 136.76us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.282us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 176.196us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 912.00 KB - MemoryUsage: - Blocks: 656.00 KB - PeakMemoryUsage: 656.00 KB - OpenTime: 13.293us - ProjectionTime: 0ns - RowsProduced: 8.835K (8835) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s33ms PipelineXTask (index=5):(Active: 2.635ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.561ms - CloseTime: 7.414us - GetBlockTime: 271.692us - OpenTime: 2.566us - PrepareTime: 58.880us - SinkTime: 2.236ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.616ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 172.86ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.416us - BuildRows: 27.778K (27778) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.519ms - BuildTableInsertTime: 322.661us - BuildTableTime: 325.267us - CloseTime: 0ns - ExecTime: 2.256ms - InputRows: 27.777K (27777) - MemoryUsage: - BuildBlocks: 1.78 MB - BuildKeyArena: 434.03 KB - HashTable: 263.64 KB - PeakMemoryUsage: 2.46 MB - OpenTime: 23.37us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.327us - RuntimeFilterComputeTime: 324.877us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 279.465us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.42 MB - MemoryUsage: - Blocks: 1.86 MB - PeakMemoryUsage: 1.86 MB - OpenTime: 8.82us - ProjectionTime: 0ns - RowsProduced: 27.777K (27777) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s33ms PipelineXTask (index=7):(Active: 2.444ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.352ms - CloseTime: 9.920us - GetBlockTime: 307.334us - OpenTime: 1.986us - PrepareTime: 75.61us - SinkTime: 1.985ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.421ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.408ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.775us - BuildRows: 18.874K (18874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.385ms - BuildTableInsertTime: 313.640us - BuildTableTime: 315.586us - CloseTime: 0ns - ExecTime: 2.15ms - InputRows: 18.873K (18873) - MemoryUsage: - BuildBlocks: 1.21 MB - BuildKeyArena: 294.91 KB - HashTable: 220.16 KB - PeakMemoryUsage: 1.71 MB - OpenTime: 37.394us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.778us - RuntimeFilterComputeTime: 223.49us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.614us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 322.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.78 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 15.11us - ProjectionTime: 0ns - RowsProduced: 18.873K (18873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s109ms PipelineXTask (index=9):(Active: 1.420ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.312ms - CloseTime: 10.904us - GetBlockTime: 191.971us - OpenTime: 1.694us - PrepareTime: 90.529us - SinkTime: 1.71ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.399ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.884ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.539us - BuildRows: 12.181K (12181) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 740.255us - BuildTableInsertTime: 140.48us - BuildTableTime: 143.157us - CloseTime: 0ns - ExecTime: 1.101ms - InputRows: 12.18K (12180) - MemoryUsage: - BuildBlocks: 796.44 KB - BuildKeyArena: 190.33 KB - HashTable: 123.48 KB - PeakMemoryUsage: 1.08 MB - OpenTime: 32.970us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.132us - RuntimeFilterComputeTime: 128.464us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.457us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 209.432us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 816.00 KB - PeakMemoryUsage: 816.00 KB - OpenTime: 14.510us - ProjectionTime: 0ns - RowsProduced: 12.18K (12180) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s32ms PipelineXTask (index=11):(Active: 2.389ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.295ms - CloseTime: 5.800us - GetBlockTime: 217.268us - OpenTime: 2.208us - PrepareTime: 79.632us - SinkTime: 2.21ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.370ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.741ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.326us - BuildRows: 16.741K (16741) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.358ms - BuildTableInsertTime: 231.115us - BuildTableTime: 233.608us - CloseTime: 0ns - ExecTime: 2.57ms - InputRows: 16.74K (16740) - MemoryUsage: - BuildBlocks: 1.07 MB - BuildKeyArena: 261.58 KB - HashTable: 209.75 KB - PeakMemoryUsage: 1.53 MB - OpenTime: 39.280us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 155.619us - RuntimeFilterComputeTime: 209.694us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.329us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 224.636us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.50 MB - MemoryUsage: - Blocks: 992.00 KB - PeakMemoryUsage: 992.00 KB - OpenTime: 12.74us - ProjectionTime: 0ns - RowsProduced: 16.74K (16740) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s106ms PipelineXTask (index=13):(Active: 1.607ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.539ms - CloseTime: 7.481us - GetBlockTime: 222.186us - OpenTime: 3.360us - PrepareTime: 51.438us - SinkTime: 1.242ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.583ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 177.776ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.416us - BuildRows: 12.894K (12894) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 843.819us - BuildTableInsertTime: 142.811us - BuildTableTime: 145.801us - CloseTime: 0ns - ExecTime: 1.255ms - InputRows: 12.893K (12893) - MemoryUsage: - BuildBlocks: 843.14 KB - BuildKeyArena: 201.47 KB - HashTable: 126.96 KB - PeakMemoryUsage: 1.14 MB - OpenTime: 19.46us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.943us - RuntimeFilterComputeTime: 179.301us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.24us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 232.978us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.19 MB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 13.128us - ProjectionTime: 0ns - RowsProduced: 12.893K (12893) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s48ms PipelineXTask (index=15):(Active: 1.497ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.422ms - CloseTime: 6.749us - GetBlockTime: 171.319us - OpenTime: 2.50us - PrepareTime: 61.510us - SinkTime: 1.192ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.475ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.273ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.239us - BuildRows: 13.28K (13280) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 779.359us - BuildTableInsertTime: 185.400us - BuildTableTime: 187.984us - CloseTime: 0ns - ExecTime: 1.206ms - InputRows: 13.279K (13279) - MemoryUsage: - BuildBlocks: 868.46 KB - BuildKeyArena: 207.50 KB - HashTable: 128.85 KB - PeakMemoryUsage: 1.18 MB - OpenTime: 16.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.83us - RuntimeFilterComputeTime: 172.747us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 182.799us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.15 MB - MemoryUsage: - Blocks: 344.00 KB - PeakMemoryUsage: 344.00 KB - OpenTime: 17.171us - ProjectionTime: 0ns - RowsProduced: 13.279K (13279) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s41ms PipelineXTask (index=17):(Active: 2.249ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.128ms - CloseTime: 8.207us - GetBlockTime: 229.705us - OpenTime: 4.62us - PrepareTime: 102.879us - SinkTime: 1.839ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.226ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.928ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.493us - BuildRows: 21.369K (21369) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.257ms - BuildTableInsertTime: 281.801us - BuildTableTime: 283.486us - CloseTime: 0ns - ExecTime: 1.897ms - InputRows: 21.368K (21368) - MemoryUsage: - BuildBlocks: 1.36 MB - BuildKeyArena: 333.89 KB - HashTable: 232.34 KB - PeakMemoryUsage: 1.92 MB - OpenTime: 60.226us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.803us - RuntimeFilterComputeTime: 252.972us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.869us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 247.147us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.06 MB - MemoryUsage: - Blocks: 656.00 KB - PeakMemoryUsage: 656.00 KB - OpenTime: 19.160us - ProjectionTime: 0ns - RowsProduced: 21.368K (21368) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s42ms PipelineXTask (index=19):(Active: 1.616ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.547ms - CloseTime: 12.79us - GetBlockTime: 202.361us - OpenTime: 2.736us - PrepareTime: 48.717us - SinkTime: 1.269ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.588ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 198.356ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.113us - BuildRows: 12.978K (12978) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 870.495us - BuildTableInsertTime: 163.918us - BuildTableTime: 167.484us - CloseTime: 0ns - ExecTime: 1.280ms - InputRows: 12.977K (12977) - MemoryUsage: - BuildBlocks: 848.61 KB - BuildKeyArena: 202.78 KB - HashTable: 127.37 KB - PeakMemoryUsage: 1.15 MB - OpenTime: 16.274us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.923us - RuntimeFilterComputeTime: 148.335us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 213.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.20 MB - MemoryUsage: - Blocks: 472.00 KB - PeakMemoryUsage: 472.00 KB - OpenTime: 11.662us - ProjectionTime: 0ns - RowsProduced: 12.977K (12977) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s60ms PipelineXTask (index=21):(Active: 2.6ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.921ms - CloseTime: 14.527us - GetBlockTime: 163.910us - OpenTime: 2.833us - PrepareTime: 62.16us - SinkTime: 1.694ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.978ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.125ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.963us - BuildRows: 16.706K (16706) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.214ms - BuildTableInsertTime: 221.171us - BuildTableTime: 224.817us - CloseTime: 0ns - ExecTime: 1.711ms - InputRows: 16.705K (16705) - MemoryUsage: - BuildBlocks: 1.07 MB - BuildKeyArena: 261.03 KB - HashTable: 209.58 KB - PeakMemoryUsage: 1.53 MB - OpenTime: 20.882us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.866us - RuntimeFilterComputeTime: 187.64us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 182.517us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.59 MB - MemoryUsage: - Blocks: 736.00 KB - PeakMemoryUsage: 736.00 KB - OpenTime: 15.270us - ProjectionTime: 0ns - RowsProduced: 16.705K (16705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s44ms PipelineXTask (index=23):(Active: 2.230ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.163ms - CloseTime: 4.561us - GetBlockTime: 220.108us - OpenTime: 2.515us - PrepareTime: 54.524us - SinkTime: 1.887ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.213ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 172.14ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.926us - BuildRows: 21.728K (21728) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.323ms - BuildTableInsertTime: 254.189us - BuildTableTime: 255.418us - CloseTime: 0ns - ExecTime: 1.902ms - InputRows: 21.727K (21727) - MemoryUsage: - BuildBlocks: 1.39 MB - BuildKeyArena: 339.50 KB - HashTable: 234.10 KB - PeakMemoryUsage: 1.95 MB - OpenTime: 17.306us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.233us - RuntimeFilterComputeTime: 259.545us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.832us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 229.945us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.03 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 15.21us - ProjectionTime: 0ns - RowsProduced: 21.727K (21727) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s43ms Fragment 57: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.418ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 778.368us - CloseTime: 32.927us - GetBlockTime: 27.219us - OpenTime: 277.520us - PrepareTime: 318.144us - SinkTime: 432.179us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.373ms - WaitBfTime: 883.510ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.758ms DATA_STREAM_SINK_OPERATOR (id=247,dst_id=247): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.897us - CompressTime: 0ns - ExecTime: 525.779us - InputRows: 5.62K (5620) - LocalBytesSent: 101.86 KB - LocalSendTime: 82.159us - LocalSentRows: 5.62K (5620) - MemoryUsage: - PeakMemoryUsage: 134.00 KB - MergeBlockTime: 0ns - OpenTime: 81.432us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 5.62K (5620) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 155.970us - SplitBlockHashComputeTime: 55.893us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=246. table name = DIM_PRODUCT_ONLINE): - RuntimeFilters: : RuntimeFilter: (id = 80, type = minmax), RuntimeFilter: (id = 81, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [18267] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.15us - BlocksProduced: 2 - CloseTime: 18.301us - ExecTime: 86.688ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 392.39us - ProcessConjunctTime: 76.770us - ProjectionTime: 234.454us - RowsProduced: 5.62K (5620) - RowsRead: 5.62K (5620) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 85.248ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 86.15ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 80, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 81, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [PRODUCT_ID, PRODUCT_CATEGORY_ID] - PerScannerRunningTime: [62.818us, ] - PerScannerRowsRead: [5.62K, ] - PerScannerWaitTime: [85.248ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.385us - MemoryUsage: - FreeBlocks: 212.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 330.66us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 92ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 768.484us - ScannerCtxSchedTime: 85.245ms - ScannerFilterTime: 2.743us - ScannerGetBlockTime: 54.872us - ScannerInitTime: 158.692us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 238ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.330us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 11.497us - BlockInitTime: 56.960us - BlockLoadTime: 254.861us - BlocksLoad: 3 - CachedPagesNum: 3 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4 - FirstReadSeekTime: 76.672us - FirstReadTime: 181.319us - IOTimer: 0ns - InvertedIndexFilterTime: 632ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 443ns - OutputIndexResultColumnTimer: 271ns - RawRowsRead: 5.62K (5620) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 3 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 58: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 31.68ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.851ms - CloseTime: 36.118us - GetBlockTime: 26.797ms - OpenTime: 5.367us - PrepareTime: 168.762us - SinkTime: 3.948ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.927ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.98ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.411us - CompressTime: 0ns - ExecTime: 4.43ms - InputRows: 24.497K (24497) - LocalBytesSent: 1.56 MB - LocalSendTime: 164.829us - LocalSentRows: 24.497K (24497) - MemoryUsage: - PeakMemoryUsage: 2.34 MB - MergeBlockTime: 0ns - OpenTime: 91.860us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 24.497K (24497) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.942ms - SplitBlockHashComputeTime: 284.732us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 17.887us - ExecTime: 26.662ms - InitProbeSideTime: 557.893us - JoinFilterTimer: 1.560us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.70us - OtherJoinConjunctTime: 11.98ms - ProbeExprCallTime: 3.595us - ProbeFindNextTime: 0ns - ProbeRows: 36.373K (36373) - ProbeTime: 25.378ms - ProbeWhenBuildSideOutputTime: 10.712ms - ProbeWhenProbeSideOutputTime: 1.495ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.122ms - ProjectionTime: 1.199ms - RowsProduced: 24.497K (24497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s48ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 116.666us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 3.37 MB - OpenTime: 3.235us - ProjectionTime: 0ns - RowsProduced: 36.373K (36373) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 863.250ms PipelineXTask (index=3):(Active: 11.71ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.876ms - CloseTime: 30.357us - GetBlockTime: 7.230ms - OpenTime: 4.777us - PrepareTime: 154.286us - SinkTime: 3.569ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 245.242ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.206us - CompressTime: 0ns - ExecTime: 3.639ms - InputRows: 25.609K (25609) - LocalBytesSent: 1.64 MB - LocalSendTime: 168.266us - LocalSentRows: 25.609K (25609) - MemoryUsage: - PeakMemoryUsage: 2.47 MB - MergeBlockTime: 0ns - OpenTime: 68.767us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 25.609K (25609) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.703ms - SplitBlockHashComputeTime: 275.354us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 14.338us - ExecTime: 7.177ms - InitProbeSideTime: 505.996us - JoinFilterTimer: 777ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 45.195us - OtherJoinConjunctTime: 1.723ms - ProbeExprCallTime: 4.31us - ProbeFindNextTime: 0ns - ProbeRows: 36.43K (36430) - ProbeTime: 6.16ms - ProbeWhenBuildSideOutputTime: 1.342ms - ProbeWhenProbeSideOutputTime: 1.138ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.35ms - ProjectionTime: 1.47ms - RowsProduced: 25.609K (25609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s957ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 58.671us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 705ns - ProjectionTime: 0ns - RowsProduced: 36.43K (36430) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 975.288ms PipelineXTask (index=6):(Active: 9.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.514ms - CloseTime: 37.251us - GetBlockTime: 6.505ms - OpenTime: 8.324us - PrepareTime: 142.169us - SinkTime: 2.926ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.651ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.169ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.200us - CompressTime: 0ns - ExecTime: 3.10ms - InputRows: 21.345K (21345) - LocalBytesSent: 1.36 MB - LocalSendTime: 154.452us - LocalSentRows: 21.345K (21345) - MemoryUsage: - PeakMemoryUsage: 1.95 MB - MergeBlockTime: 0ns - OpenTime: 72.522us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 21.345K (21345) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.120ms - SplitBlockHashComputeTime: 208.764us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 17.52us - ExecTime: 6.464ms - InitProbeSideTime: 451.931us - JoinFilterTimer: 874ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 28.280us - OtherJoinConjunctTime: 1.625ms - ProbeExprCallTime: 3.477us - ProbeFindNextTime: 0ns - ProbeRows: 36.405K (36405) - ProbeTime: 5.454ms - ProbeWhenBuildSideOutputTime: 1.68ms - ProbeWhenProbeSideOutputTime: 1.7ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 944.540us - ProjectionTime: 918.90us - RowsProduced: 21.345K (21345) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s886ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 49.674us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 783ns - ProjectionTime: 0ns - RowsProduced: 36.405K (36405) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 974.365ms PipelineXTask (index=9):(Active: 8.940ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.757ms - CloseTime: 25.692us - GetBlockTime: 6.177ms - OpenTime: 5.430us - PrepareTime: 145.513us - SinkTime: 2.496ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.865ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.68ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.780us - CompressTime: 0ns - ExecTime: 2.568ms - InputRows: 20.489K (20489) - LocalBytesSent: 1.31 MB - LocalSendTime: 115.622us - LocalSentRows: 20.489K (20489) - MemoryUsage: - PeakMemoryUsage: 1.90 MB - MergeBlockTime: 0ns - OpenTime: 65.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 20.489K (20489) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.838ms - SplitBlockHashComputeTime: 190.655us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 12.157us - ExecTime: 6.124ms - InitProbeSideTime: 410.838us - JoinFilterTimer: 702ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 24.212us - OtherJoinConjunctTime: 1.619ms - ProbeExprCallTime: 3.31us - ProbeFindNextTime: 0ns - ProbeRows: 36.356K (36356) - ProbeTime: 5.156ms - ProbeWhenBuildSideOutputTime: 1.49ms - ProbeWhenProbeSideOutputTime: 963.174us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 866.577us - ProjectionTime: 887.377us - RowsProduced: 20.489K (20489) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s886ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 42.865us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 736ns - ProjectionTime: 0ns - RowsProduced: 36.356K (36356) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 974.295ms PipelineXTask (index=12):(Active: 8.240ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.80ms - CloseTime: 24.711us - GetBlockTime: 5.642ms - OpenTime: 8.403us - PrepareTime: 121.266us - SinkTime: 2.367ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.179ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.773ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.857us - CompressTime: 0ns - ExecTime: 2.445ms - InputRows: 16.287K (16287) - LocalBytesSent: 1.04 MB - LocalSendTime: 112.472us - LocalSentRows: 16.287K (16287) - MemoryUsage: - PeakMemoryUsage: 1.54 MB - MergeBlockTime: 0ns - OpenTime: 73.841us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.287K (16287) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.687ms - SplitBlockHashComputeTime: 171.171us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 13.235us - ExecTime: 5.587ms - InitProbeSideTime: 442.548us - JoinFilterTimer: 786ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.589us - OtherJoinConjunctTime: 1.315ms - ProbeExprCallTime: 2.712us - ProbeFindNextTime: 0ns - ProbeRows: 36.025K (36025) - ProbeTime: 4.826ms - ProbeWhenBuildSideOutputTime: 899.40us - ProbeWhenProbeSideOutputTime: 968.147us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 891.242us - ProjectionTime: 679.129us - RowsProduced: 16.287K (16287) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s792ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 45.438us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 592ns - ProjectionTime: 0ns - RowsProduced: 36.025K (36025) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 966.421ms PipelineXTask (index=15):(Active: 7.468ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.268ms - CloseTime: 58.697us - GetBlockTime: 5.160ms - OpenTime: 4.768us - PrepareTime: 130.830us - SinkTime: 2.41ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.386ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 273.858ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.20us - CompressTime: 0ns - ExecTime: 2.125ms - InputRows: 14.358K (14358) - LocalBytesSent: 939.27 KB - LocalSendTime: 153.223us - LocalSentRows: 14.358K (14358) - MemoryUsage: - PeakMemoryUsage: 1.32 MB - MergeBlockTime: 0ns - OpenTime: 68.901us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 14.358K (14358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.428ms - SplitBlockHashComputeTime: 145.563us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 35.139us - ExecTime: 5.140ms - InitProbeSideTime: 449.528us - JoinFilterTimer: 716ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.577us - OtherJoinConjunctTime: 1.209ms - ProbeExprCallTime: 2.292us - ProbeFindNextTime: 0ns - ProbeRows: 36.576K (36576) - ProbeTime: 4.419ms - ProbeWhenBuildSideOutputTime: 755.820us - ProbeWhenProbeSideOutputTime: 831.165us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 848.282us - ProjectionTime: 626.129us - RowsProduced: 14.358K (14358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s790ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 48.492us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 806ns - ProjectionTime: 0ns - RowsProduced: 36.576K (36576) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 966.432ms PipelineXTask (index=18):(Active: 8.813ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 8.640ms - CloseTime: 38.466us - GetBlockTime: 6.152ms - OpenTime: 6.940us - PrepareTime: 121.694us - SinkTime: 2.406ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.764ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 528.726ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.554us - CompressTime: 0ns - ExecTime: 2.481ms - InputRows: 16.49K (16490) - LocalBytesSent: 1.05 MB - LocalSendTime: 130.600us - LocalSentRows: 16.49K (16490) - MemoryUsage: - PeakMemoryUsage: 1.46 MB - MergeBlockTime: 0ns - OpenTime: 65.400us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 16.49K (16490) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.681ms - SplitBlockHashComputeTime: 187.455us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 20.207us - ExecTime: 6.84ms - InitProbeSideTime: 487.67us - JoinFilterTimer: 9.124us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.198us - OtherJoinConjunctTime: 1.395ms - ProbeExprCallTime: 3.741us - ProbeFindNextTime: 0ns - ProbeRows: 29.979K (29979) - ProbeTime: 5.221ms - ProbeWhenBuildSideOutputTime: 1.204ms - ProbeWhenProbeSideOutputTime: 885.313us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 947.495us - ProjectionTime: 757.523us - RowsProduced: 16.49K (16490) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s596ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 70.728us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 736ns - ProjectionTime: 0ns - RowsProduced: 29.979K (29979) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 974.901ms PipelineXTask (index=21):(Active: 6.221ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.22ms - CloseTime: 42.36us - GetBlockTime: 4.206ms - OpenTime: 11.222us - PrepareTime: 140.927us - SinkTime: 1.752ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.750ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.6ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.946us - CompressTime: 0ns - ExecTime: 1.834ms - InputRows: 12.342K (12342) - LocalBytesSent: 806.57 KB - LocalSendTime: 189.524us - LocalSentRows: 12.342K (12342) - MemoryUsage: - PeakMemoryUsage: 1.07 MB - MergeBlockTime: 0ns - OpenTime: 68.168us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.342K (12342) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.161ms - SplitBlockHashComputeTime: 134.660us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 21.589us - ExecTime: 4.188ms - InitProbeSideTime: 680.72us - JoinFilterTimer: 609ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 33.110us - OtherJoinConjunctTime: 957.373us - ProbeExprCallTime: 2.76us - ProbeFindNextTime: 0ns - ProbeRows: 18.263K (18263) - ProbeTime: 3.563ms - ProbeWhenBuildSideOutputTime: 678.526us - ProbeWhenProbeSideOutputTime: 569.491us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 511.426us - ProjectionTime: 546.965us - RowsProduced: 12.342K (12342) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s908ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 44.85us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.59 MB - OpenTime: 900ns - ProjectionTime: 0ns - RowsProduced: 18.263K (18263) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 975.519ms PipelineXTask (index=24):(Active: 5.666ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.464ms - CloseTime: 32.103us - GetBlockTime: 3.447ms - OpenTime: 7.568us - PrepareTime: 154.747us - SinkTime: 1.968ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.624ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.232ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.696us - CompressTime: 0ns - ExecTime: 2.44ms - InputRows: 12.359K (12359) - LocalBytesSent: 808.14 KB - LocalSendTime: 142.242us - LocalSentRows: 12.359K (12359) - MemoryUsage: - PeakMemoryUsage: 1.08 MB - MergeBlockTime: 0ns - OpenTime: 66.806us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.359K (12359) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.377ms - SplitBlockHashComputeTime: 135.987us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 17.55us - ExecTime: 3.445ms - InitProbeSideTime: 199.772us - JoinFilterTimer: 617ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 24.629us - OtherJoinConjunctTime: 967.720us - ProbeExprCallTime: 1.559us - ProbeFindNextTime: 0ns - ProbeRows: 18.194K (18194) - ProbeTime: 2.864ms - ProbeWhenBuildSideOutputTime: 544.944us - ProbeWhenProbeSideOutputTime: 581.558us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 412.554us - ProjectionTime: 513.855us - RowsProduced: 12.359K (12359) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s866ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 24.468us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 640ns - ProjectionTime: 0ns - RowsProduced: 18.194K (18194) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 975.510ms PipelineXTask (index=27):(Active: 9.549ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 9.359ms - CloseTime: 42.613us - GetBlockTime: 6.133ms - OpenTime: 8.388us - PrepareTime: 132.836us - SinkTime: 3.141ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.497ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.3ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.550us - CompressTime: 0ns - ExecTime: 3.215ms - InputRows: 11.957K (11957) - LocalBytesSent: 782.10 KB - LocalSendTime: 194.402us - LocalSentRows: 11.957K (11957) - MemoryUsage: - PeakMemoryUsage: 1.12 MB - MergeBlockTime: 0ns - OpenTime: 63.206us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.957K (11957) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.187ms - SplitBlockHashComputeTime: 222.235us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 24.24us - ExecTime: 6.103ms - InitProbeSideTime: 320.895us - JoinFilterTimer: 1.5us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 29.504us - OtherJoinConjunctTime: 1.657ms - ProbeExprCallTime: 3.222us - ProbeFindNextTime: 0ns - ProbeRows: 18.06K (18060) - ProbeTime: 5.185ms - ProbeWhenBuildSideOutputTime: 1.99ms - ProbeWhenProbeSideOutputTime: 1.104ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 693.475us - ProjectionTime: 832.38us - RowsProduced: 11.957K (11957) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s935ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 46.217us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 888ns - ProjectionTime: 0ns - RowsProduced: 18.06K (18060) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 963.278ms PipelineXTask (index=30):(Active: 6.258ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 6.101ms - CloseTime: 32.378us - GetBlockTime: 4.48ms - OpenTime: 4.582us - PrepareTime: 114.631us - SinkTime: 2.2ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.201ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 196.382ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.355us - CompressTime: 0ns - ExecTime: 2.75ms - InputRows: 11.761K (11761) - LocalBytesSent: 769.51 KB - LocalSendTime: 192.784us - LocalSentRows: 11.761K (11761) - MemoryUsage: - PeakMemoryUsage: 1.13 MB - MergeBlockTime: 0ns - OpenTime: 65.111us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.761K (11761) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.364ms - SplitBlockHashComputeTime: 133.402us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 18.506us - ExecTime: 4.12ms - InitProbeSideTime: 214.791us - JoinFilterTimer: 613ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.689us - OtherJoinConjunctTime: 1.39ms - ProbeExprCallTime: 2.147us - ProbeFindNextTime: 0ns - ProbeRows: 18.053K (18053) - ProbeTime: 3.341ms - ProbeWhenBuildSideOutputTime: 738.388us - ProbeWhenProbeSideOutputTime: 615.444us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 521.904us - ProjectionTime: 611.184us - RowsProduced: 11.761K (11761) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s887ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 43.189us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 730ns - ProjectionTime: 0ns - RowsProduced: 18.053K (18053) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 974.536ms PipelineXTask (index=33):(Active: 9.357ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.149ms - CloseTime: 59.871us - GetBlockTime: 6.201ms - OpenTime: 4.850us - PrepareTime: 137.333us - SinkTime: 2.880ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 196.620ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 31.972us - CompressTime: 0ns - ExecTime: 2.974ms - InputRows: 12.499K (12499) - LocalBytesSent: 817.46 KB - LocalSendTime: 188.95us - LocalSentRows: 12.499K (12499) - MemoryUsage: - PeakMemoryUsage: 1.18 MB - MergeBlockTime: 0ns - OpenTime: 65.326us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.499K (12499) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.61ms - SplitBlockHashComputeTime: 211.486us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 24.94us - ExecTime: 6.174ms - InitProbeSideTime: 322.586us - JoinFilterTimer: 1.20us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.758us - OtherJoinConjunctTime: 1.446ms - ProbeExprCallTime: 2.466us - ProbeFindNextTime: 0ns - ProbeRows: 17.953K (17953) - ProbeTime: 4.968ms - ProbeWhenBuildSideOutputTime: 1.234ms - ProbeWhenProbeSideOutputTime: 1.12ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 690.901us - ProjectionTime: 1.128ms - RowsProduced: 12.499K (12499) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s887ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 35.83us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 575ns - ProjectionTime: 0ns - RowsProduced: 17.953K (17953) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 974.504ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.295ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 583.220us - CloseTime: 193.655us - GetBlockTime: 197.710us - OpenTime: 219.745us - PrepareTime: 291.329us - SinkTime: 131.168us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.92ms - WaitBfTime: 744.152ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 124.846ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 128.846us - InputRows: 68.654K (68654) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.296us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.964us - BlocksProduced: 19 - CloseTime: 191.346us - ExecTime: 176.618ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 415.631us - ProcessConjunctTime: 68.153us - ProjectionTime: 30.864ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 383.707ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 144.947ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [9.000us, 12.701us, 21.330us, 43.705ms, ] - PerScannerRowsRead: [0, 0, 0, 68.65K, ] - PerScannerWaitTime: [92.406ms, 96.361ms, 97.154ms, 97.785ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 43.224ms - MemoryUsage: - FreeBlocks: 4.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 218.628ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.3us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 72.239ms - ScannerCtxSchedTime: 383.700ms - ScannerFilterTime: 25.916us - ScannerGetBlockTime: 43.659ms - ScannerInitTime: 120.190us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 957ns - BlockConditionsFilteredBloomFilterTime: 496ns - BlockConditionsFilteredDictTime: 218ns - BlockConditionsFilteredTime: 10.466us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 270ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 50.71us - BlockInitTime: 189.15us - BlockLoadTime: 261.373ms - BlocksLoad: 262 - CachedPagesNum: 253 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 244.431ms - FirstReadSeekCount: 453 - FirstReadSeekTime: 192.417us - FirstReadTime: 8.283ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.664us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.187ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 586.751us - OutputIndexResultColumnTimer: 22.564us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.138ms - ShortPredEvalTime: 774.696us - TotalPagesNum: 253 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 31.786us PipelineXTask (index=4):(Active: 1.277ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 730.459us - CloseTime: 231.239us - GetBlockTime: 222.785us - OpenTime: 156.33us - PrepareTime: 152.788us - SinkTime: 302.828us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.35ms - WaitBfTime: 744.350ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 151.379ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 299.278us - InputRows: 67.716K (67716) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.134us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.930us - BlocksProduced: 19 - CloseTime: 228.196us - ExecTime: 120.153ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 251.475us - ProcessConjunctTime: 33.502us - ProjectionTime: 2.132ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 397.757ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.317ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [9.278us, 13.828us, 7.759us, 10.957ms, ] - PerScannerRowsRead: [0, 0, 0, 67.72K, ] - PerScannerWaitTime: [97.867ms, 98.754ms, 99.080ms, 102.054ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.447ms - MemoryUsage: - FreeBlocks: 4.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 160.379ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.23us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 72.72ms - ScannerCtxSchedTime: 397.747ms - ScannerFilterTime: 20.456us - ScannerGetBlockTime: 10.918ms - ScannerInitTime: 97.884us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 865ns - BlockConditionsFilteredBloomFilterTime: 524ns - BlockConditionsFilteredDictTime: 180ns - BlockConditionsFilteredTime: 7.902us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 321ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 42.550us - BlockInitTime: 188.865us - BlockLoadTime: 170.402ms - BlocksLoad: 282 - CachedPagesNum: 268 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 116.762ms - FirstReadSeekCount: 493 - FirstReadSeekTime: 195.633us - FirstReadTime: 8.916ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.585us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.766ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 514.920us - OutputIndexResultColumnTimer: 32.345us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.717ms - ShortPredEvalTime: 289.25us - TotalPagesNum: 268 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.971us PipelineXTask (index=7):(Active: 1.314ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 639.602us - CloseTime: 177.860us - GetBlockTime: 204.312us - OpenTime: 304.633us - PrepareTime: 181.354us - SinkTime: 85.538us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.122ms - WaitBfTime: 841.812ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 426.747ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 85.16us - InputRows: 66.761K (66761) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.847us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.415us - BlocksProduced: 19 - CloseTime: 174.531us - ExecTime: 125.981ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 422.798us - ProcessConjunctTime: 75.970us - ProjectionTime: 12.234ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 292.566ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 112.942ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [14.127us, 8.656us, 9.450us, 10.604ms, ] - PerScannerRowsRead: [0, 0, 0, 66.76K, ] - PerScannerWaitTime: [72.080ms, 72.093ms, 72.536ms, 75.856ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.114ms - MemoryUsage: - FreeBlocks: 4.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 240.142ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.54us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.967ms - ScannerCtxSchedTime: 292.556ms - ScannerFilterTime: 25.248us - ScannerGetBlockTime: 10.561ms - ScannerInitTime: 188.664us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 956ns - BlockConditionsFilteredBloomFilterTime: 447ns - BlockConditionsFilteredDictTime: 237ns - BlockConditionsFilteredTime: 8.27us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 280ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 62.820us - BlockInitTime: 216.406us - BlockLoadTime: 249.722ms - BlocksLoad: 288 - CachedPagesNum: 274 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 194.630ms - FirstReadSeekCount: 502 - FirstReadSeekTime: 203.847us - FirstReadTime: 8.396ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.684us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 42.8ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 607.984us - OutputIndexResultColumnTimer: 23.782us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 33.451ms - ShortPredEvalTime: 623.586us - TotalPagesNum: 274 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.68us PipelineXTask (index=10):(Active: 1.763ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 893.714us - CloseTime: 169.522us - GetBlockTime: 162.346us - OpenTime: 494.666us - PrepareTime: 184.272us - SinkTime: 178.564us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.581ms - WaitBfTime: 834.95ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 551.664ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 176.129us - InputRows: 68.072K (68072) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.288us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.557us - BlocksProduced: 19 - CloseTime: 167.10us - ExecTime: 89.734ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 573.231us - ProcessConjunctTime: 113.748us - ProjectionTime: 1.371ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 293.128ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 87.459ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [9.697us, 11.156us, 13.782us, 21.615ms, ] - PerScannerRowsRead: [0, 0, 0, 68.07K, ] - PerScannerWaitTime: [72.407ms, 72.888ms, 73.523ms, 74.308ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 21.179ms - MemoryUsage: - FreeBlocks: 4.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 116.656ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 661ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.425ms - ScannerCtxSchedTime: 293.121ms - ScannerFilterTime: 22.606us - ScannerGetBlockTime: 21.569ms - ScannerInitTime: 327.483us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.114us - BlockConditionsFilteredBloomFilterTime: 452ns - BlockConditionsFilteredDictTime: 222ns - BlockConditionsFilteredTime: 15.254us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 364ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 53.738us - BlockInitTime: 210.481us - BlockLoadTime: 81.202ms - BlocksLoad: 259 - CachedPagesNum: 252 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 64.761ms - FirstReadSeekCount: 429 - FirstReadSeekTime: 164.968us - FirstReadTime: 7.107ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.358us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.116ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 745.998us - OutputIndexResultColumnTimer: 19.564us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.961ms - ShortPredEvalTime: 694.241us - TotalPagesNum: 252 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.312us PipelineXTask (index=13):(Active: 808.606us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 262.305us - CloseTime: 104.480us - GetBlockTime: 86.406us - OpenTime: 135.861us - PrepareTime: 296.662us - SinkTime: 13.690us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 694.42us - WaitBfTime: 835.860ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.946ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.380us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.937us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.218us - BlocksProduced: 0 - CloseTime: 101.477us - ExecTime: 126.588ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 252.117us - ProcessConjunctTime: 33.911us - ProjectionTime: 8.950us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 229.158ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 126.135ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [14.455us, 11.318us, 26.055us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [75.978ms, 76.380ms, 76.799ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 588.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 334.18ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 172ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.153ms - ScannerCtxSchedTime: 229.153ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.76us - ScannerInitTime: 70.925us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 750ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.34us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 32.402us - BlockInitTime: 117.38us - BlockLoadTime: 333.341ms - BlocksLoad: 240 - CachedPagesNum: 183 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 179.700ms - FirstReadSeekCount: 474 - FirstReadSeekTime: 245.456us - FirstReadTime: 149.813ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.479us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 112.622us - OutputIndexResultColumnTimer: 30.234us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 183 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=16):(Active: 734.610us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 271.526us - CloseTime: 90.785us - GetBlockTime: 75.217us - OpenTime: 160.265us - PrepareTime: 203.238us - SinkTime: 14.585us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 634.417us - WaitBfTime: 910.336ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 293.792ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.569us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.106us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.837us - BlocksProduced: 0 - CloseTime: 87.891us - ExecTime: 108.105ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 239.71us - ProcessConjunctTime: 50.726us - ProjectionTime: 14.626us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 287.878ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 107.689ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [8.602us, 8.738us, 8.157us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [93.797ms, 93.932ms, 100.148ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 588.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 50.205ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 198ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.448ms - ScannerCtxSchedTime: 287.873ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.61us - ScannerInitTime: 74.447us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 849ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.392us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 39.810us - BlockInitTime: 132.548us - BlockLoadTime: 49.595ms - BlocksLoad: 264 - CachedPagesNum: 203 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 38.376ms - FirstReadSeekCount: 522 - FirstReadSeekTime: 158.748us - FirstReadTime: 8.700ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.452us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 68.886us - OutputIndexResultColumnTimer: 17.309us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 203 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=19):(Active: 659.730us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 274.103us - CloseTime: 91.584us - GetBlockTime: 98.104us - OpenTime: 137.235us - PrepareTime: 146.323us - SinkTime: 13.554us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 558.579us - WaitBfTime: 910.489ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 468.789ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.293us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.67us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.417us - BlocksProduced: 0 - CloseTime: 88.502us - ExecTime: 127.979ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 232.586us - ProcessConjunctTime: 42.906us - ProjectionTime: 16.229us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 332.360ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 127.543ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [13.935us, 9.190us, 11.692us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [110.338ms, 110.337ms, 111.684ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 588.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 61.754ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 163ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.530ms - ScannerCtxSchedTime: 332.358ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 8.285us - ScannerInitTime: 67.974us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 675ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.4us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 28.686us - BlockInitTime: 117.916us - BlockLoadTime: 61.148ms - BlocksLoad: 255 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 50.846ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 132.288us - FirstReadTime: 8.112ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.173us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 80.753us - OutputIndexResultColumnTimer: 15.187us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=22):(Active: 843.161us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 370.293us - CloseTime: 112.811us - GetBlockTime: 111.885us - OpenTime: 205.777us - PrepareTime: 146.297us - SinkTime: 25.767us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 721.81us - WaitBfTime: 711.395ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.157ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 26.18us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.128us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.642us - BlocksProduced: 0 - CloseTime: 110.522us - ExecTime: 102.681ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 294.129us - ProcessConjunctTime: 82.607us - ProjectionTime: 6.134us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 203.118ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.160ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [9.737us, 10.495us, 8.343us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [66.732ms, 66.973ms, 69.413ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 392.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 139.209ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 266ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.348ms - ScannerCtxSchedTime: 203.113ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.184us - ScannerInitTime: 92.982us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 907ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.365us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 37.447us - BlockInitTime: 120.551us - BlockLoadTime: 138.543ms - BlocksLoad: 259 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 125.811ms - FirstReadSeekCount: 512 - FirstReadSeekTime: 184.156us - FirstReadTime: 10.126ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.324us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 97.560us - OutputIndexResultColumnTimer: 19.855us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 198 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=25):(Active: 697.906us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 283.915us - CloseTime: 127.125us - GetBlockTime: 103.632us - OpenTime: 126.364us - PrepareTime: 151.877us - SinkTime: 15.652us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 560.0us - WaitBfTime: 711.570ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.478ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.891us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.438us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.130us - BlocksProduced: 0 - CloseTime: 123.954us - ExecTime: 153.908ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 229.161us - ProcessConjunctTime: 39.212us - ProjectionTime: 7.45us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 218.531ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.442ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [12.843us, 8.340us, 8.660us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [71.544ms, 73.377ms, 73.609ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 186.179ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 345ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.773ms - ScannerCtxSchedTime: 218.526ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.771us - ScannerInitTime: 63.534us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 804ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.637us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 36.670us - BlockInitTime: 132.47us - BlockLoadTime: 185.567ms - BlocksLoad: 267 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 173.430ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 208.731us - FirstReadTime: 9.569ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.422us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 81.574us - OutputIndexResultColumnTimer: 17.932us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=28):(Active: 756.698us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 305.977us - CloseTime: 147.200us - GetBlockTime: 142.455us - OpenTime: 110.301us - PrepareTime: 186.51us - SinkTime: 19.636us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 599.257us - WaitBfTime: 711.674ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.379ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.521us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.198us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.255us - BlocksProduced: 0 - CloseTime: 143.122us - ExecTime: 122.452ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 229.960us - ProcessConjunctTime: 27.494us - ProjectionTime: 6.137us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 221.411ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 121.932ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [11.393us, 9.268us, 8.325us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [73.650ms, 73.863ms, 73.897ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 392.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 180.541ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 292ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.392ms - ScannerCtxSchedTime: 221.405ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.676us - ScannerInitTime: 65.439us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 3.947us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.884us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 32.860us - BlockInitTime: 121.256us - BlockLoadTime: 180.15ms - BlocksLoad: 269 - CachedPagesNum: 206 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 113.556ms - FirstReadSeekCount: 532 - FirstReadSeekTime: 208.433us - FirstReadTime: 63.711ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.248us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 111.345us - OutputIndexResultColumnTimer: 19.214us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 206 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=31):(Active: 757.209us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 260.530us - CloseTime: 117.150us - GetBlockTime: 62.817us - OpenTime: 150.709us - PrepareTime: 218.814us - SinkTime: 12.840us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 627.809us - WaitBfTime: 842.220ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 227.474ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.363us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.88us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.318us - BlocksProduced: 0 - CloseTime: 115.234us - ExecTime: 95.803ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 267.365us - ProcessConjunctTime: 45.817us - ProjectionTime: 6.22us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 235.914ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 95.352ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - PerScannerRunningTime: [8.733us, 8.861us, 8.087us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [76.777ms, 76.780ms, 82.356ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 588.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 146.118ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 173ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.983ms - ScannerCtxSchedTime: 235.908ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.308us - ScannerInitTime: 70.918us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 613ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.362us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 31.611us - BlockInitTime: 124.123us - BlockLoadTime: 145.625ms - BlocksLoad: 274 - CachedPagesNum: 213 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 108.349ms - FirstReadSeekCount: 542 - FirstReadSeekTime: 172.256us - FirstReadTime: 34.396ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.299us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 116.329us - OutputIndexResultColumnTimer: 18.710us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 213 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=34):(Active: 995.233us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 495.733us - CloseTime: 127.118us - GetBlockTime: 173.551us - OpenTime: 159.641us - PrepareTime: 190.329us - SinkTime: 108.561us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 840.765us - WaitBfTime: 836.175ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 227.92ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 106.92us - InputRows: 67.464K (67464) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.170us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 78, type = minmax), RuntimeFilter: (id = 79, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.466us - BlocksProduced: 19 - CloseTime: 125.926us - ExecTime: 126.342ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 283.869us - ProcessConjunctTime: 49.106us - ProjectionTime: 23.614ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 254.521ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.142ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 78, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 79, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID, ORDER_TYPE, SUBMIT_DATE, PRODUCT_ID, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS, PRODUCT_TEMPLATE_ID] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [10.556us, 9.463us, 53.783ms, ] - PerScannerRowsRead: [0, 0, 67.46K, ] - PerScannerWaitTime: [83.835ms, 84.882ms, 85.804ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 53.280ms - MemoryUsage: - FreeBlocks: 4.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 56.313ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 628ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.306ms - ScannerCtxSchedTime: 254.517ms - ScannerFilterTime: 28.69us - ScannerGetBlockTime: 53.737ms - ScannerInitTime: 79.652us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 736ns - BlockConditionsFilteredBloomFilterTime: 398ns - BlockConditionsFilteredDictTime: 161ns - BlockConditionsFilteredTime: 7.467us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 292ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 38.177us - BlockInitTime: 173.967us - BlockLoadTime: 109.231ms - BlocksLoad: 201 - CachedPagesNum: 207 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 97.621ms - FirstReadSeekCount: 375 - FirstReadSeekTime: 134.366us - FirstReadTime: 6.332ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.291us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.835ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 224.678us - OutputIndexResultColumnTimer: 15.839us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 875.828us - ShortPredEvalTime: 100.694us - TotalPagesNum: 207 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.945us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 127.466ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 127.372ms - CloseTime: 15.394us - GetBlockTime: 47.261ms - OpenTime: 3.81us - PrepareTime: 69.926us - SinkTime: 76.813ms - GetBlockCounter: 9.483K (9483) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.173ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 815.473ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 574.215us - BuildRows: 664.042K (664042) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.111ms - BuildTableInsertTime: 9.405ms - BuildTableTime: 9.898ms - CloseTime: 0ns - ExecTime: 76.75ms - InputRows: 664.041K (664041) - MemoryUsage: - BuildBlocks: 20.90 MB - BuildKeyArena: 0.00 - HashTable: 6.53 MB - PeakMemoryUsage: 27.43 MB - OpenTime: 16.103us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.656us - RuntimeFilterComputeTime: 3.300ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=242): - BlocksProduced: 9.482K (9482) - BytesReceived: 0.00 - CloseTime: 11.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.201ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.38 MB - MemoryUsage: - Blocks: 12.53 MB - PeakMemoryUsage: 69.38 MB - OpenTime: 21.357us - ProjectionTime: 0ns - RowsProduced: 664.041K (664041) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s990ms PipelineXTask (index=5):(Active: 150.444us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 76.312us - CloseTime: 10.572us - GetBlockTime: 0ns - OpenTime: 2.968us - PrepareTime: 55.426us - SinkTime: 53.502us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.590us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.349ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 73.38us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.741us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s932ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.689us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.979us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 107.234us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.769us - CloseTime: 5.618us - GetBlockTime: 0ns - OpenTime: 2.247us - PrepareTime: 60.660us - SinkTime: 18.497us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.769us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.508ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.381us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.94us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s932ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.208us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.555us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.433us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 102.334us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.484us - CloseTime: 5.66us - GetBlockTime: 0ns - OpenTime: 4.184us - PrepareTime: 50.497us - SinkTime: 15.824us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.75us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.459ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.853us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.285us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s924ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.740us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.386us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 135.660us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 58.181us - CloseTime: 6.398us - GetBlockTime: 0ns - OpenTime: 2.338us - PrepareTime: 64.120us - SinkTime: 41.57us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.587us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.193ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 55.484us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.531us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s933ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.604us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.147us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.697us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 156.607us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 82.411us - CloseTime: 8.36us - GetBlockTime: 0ns - OpenTime: 2.819us - PrepareTime: 58.748us - SinkTime: 58.324us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 140.571us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 997.238us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.683us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.364us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s933ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.673us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.548us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.183us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 205.237us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.836us - CloseTime: 10.338us - GetBlockTime: 0ns - OpenTime: 1.998us - PrepareTime: 143.533us - SinkTime: 24.752us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 188.495us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.638ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 126.896us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 102.460us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s933ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.334us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.787us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.983us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 90.748us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.971us - CloseTime: 5.774us - GetBlockTime: 0ns - OpenTime: 2.420us - PrepareTime: 51.201us - SinkTime: 12.959us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.575us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.136ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.3us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.192us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s933ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.464us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.75us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 97.147us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.661us - CloseTime: 4.482us - GetBlockTime: 0ns - OpenTime: 2.412us - PrepareTime: 63.259us - SinkTime: 12.264us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.482us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.689ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.470us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.125us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s933ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.690us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.793us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 111.781us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.687us - CloseTime: 7.338us - GetBlockTime: 0ns - OpenTime: 2.448us - PrepareTime: 55.407us - SinkTime: 25.314us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.625us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.472ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.181us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.822us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s932ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.627us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.273us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 126.686us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.176us - CloseTime: 5.987us - GetBlockTime: 0ns - OpenTime: 2.327us - PrepareTime: 58.356us - SinkTime: 40.52us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.360us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.375ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.685us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.24us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s932ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.618us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.872us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.630us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 118.832us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.866us - CloseTime: 4.710us - GetBlockTime: 0ns - OpenTime: 2.438us - PrepareTime: 78.930us - SinkTime: 12.782us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.501us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.365ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896324c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.78us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s924ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.831us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.886us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.264us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 59: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 164.155ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 164.11ms - CloseTime: 24.643us - GetBlockTime: 145.968ms - OpenTime: 7.784us - PrepareTime: 102.975us - SinkTime: 17.34ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 104.104ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 538.770ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 788 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.208us - CompressTime: 0ns - ExecTime: 16.893ms - InputRows: 40.373K (40373) - LocalBytesSent: 1.27 MB - LocalSendTime: 16.610ms - LocalSentRows: 40.373K (40373) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 32.174us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.373K (40373) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 4.862us - ExecTime: 139.893ms - InitProbeSideTime: 40.456ms - JoinFilterTimer: 62.376us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 14.733us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.297us - ProbeFindNextTime: 0ns - ProbeRows: 3.296829M (3296829) - ProbeTime: 135.697ms - ProbeWhenBuildSideOutputTime: 8.916ms - ProbeWhenProbeSideOutputTime: 1.158ms - ProbeWhenProcessHashTableTime: 99.896us - ProbeWhenSearchHashTableTime: 79.429ms - ProjectionTime: 1.869ms - RowsProduced: 40.373K (40373) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s117ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 8.84us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.489ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.36 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 23.787us - ProjectionTime: 0ns - RowsProduced: 3.296829M (3296829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 997.112ms PipelineXTask (index=2):(Active: 201.432ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 201.291ms - CloseTime: 31.617us - GetBlockTime: 182.658ms - OpenTime: 6.628us - PrepareTime: 95.222us - SinkTime: 17.453ms - GetBlockCounter: 830 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 131.751ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 614.973ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 829 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.416us - CompressTime: 0ns - ExecTime: 17.282ms - InputRows: 221.017K (221017) - LocalBytesSent: 6.96 MB - LocalSendTime: 16.990ms - LocalSentRows: 221.017K (221017) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 221.017K (221017) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 829 - BuildOutputBlock: 0ns - CloseTime: 4.718us - ExecTime: 176.634ms - InitProbeSideTime: 48.940ms - JoinFilterTimer: 54.982us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 15.686us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 129.430us - ProbeFindNextTime: 0ns - ProbeRows: 3.295456M (3295456) - ProbeTime: 171.457ms - ProbeWhenBuildSideOutputTime: 16.592ms - ProbeWhenProbeSideOutputTime: 1.80ms - ProbeWhenProcessHashTableTime: 5.978ms - ProbeWhenSearchHashTableTime: 92.482ms - ProjectionTime: 2.836ms - RowsProduced: 221.017K (221017) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s52ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 11.39us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.381ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.01 MB - MemoryUsage: - Blocks: 19.60 MB - PeakMemoryUsage: 19.60 MB - OpenTime: 20.29us - ProjectionTime: 0ns - RowsProduced: 3.295456M (3295456) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 953.587ms PipelineXTask (index=4):(Active: 159.874ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 159.756ms - CloseTime: 22.709us - GetBlockTime: 146.295ms - OpenTime: 3.917us - PrepareTime: 83.451us - SinkTime: 12.669ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.586ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 780.476ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 786 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.733us - CompressTime: 0ns - ExecTime: 12.549ms - InputRows: 40.2K (40200) - LocalBytesSent: 1.26 MB - LocalSendTime: 12.332ms - LocalSentRows: 40.2K (40200) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.627us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.2K (40200) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 5.418us - ExecTime: 116.941ms - InitProbeSideTime: 23.209ms - JoinFilterTimer: 55.361us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 10.961us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.53us - ProbeFindNextTime: 0ns - ProbeRows: 3.295488M (3295488) - ProbeTime: 113.420ms - ProbeWhenBuildSideOutputTime: 15.722ms - ProbeWhenProbeSideOutputTime: 952.938us - ProbeWhenProcessHashTableTime: 91.494us - ProbeWhenSearchHashTableTime: 68.668ms - ProjectionTime: 1.508ms - RowsProduced: 40.2K (40200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s966ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 4.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.900ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.99 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.55 MB - OpenTime: 15.155us - ProjectionTime: 0ns - RowsProduced: 3.295488M (3295488) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 910.968ms PipelineXTask (index=6):(Active: 109.489ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 109.343ms - CloseTime: 55.991us - GetBlockTime: 105.316ms - OpenTime: 5.151us - PrepareTime: 77.508us - SinkTime: 3.268ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 690.323ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 789 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 31.40us - CompressTime: 0ns - ExecTime: 3.172ms - InputRows: 40.327K (40327) - LocalBytesSent: 1.27 MB - LocalSendTime: 2.944ms - LocalSentRows: 40.327K (40327) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 18.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.327K (40327) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 789 - BuildOutputBlock: 0ns - CloseTime: 11.146us - ExecTime: 100.371ms - InitProbeSideTime: 22.640ms - JoinFilterTimer: 42.53us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 10.654us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 93.947us - ProbeFindNextTime: 0ns - ProbeRows: 3.296164M (3296164) - ProbeTime: 96.947ms - ProbeWhenBuildSideOutputTime: 7.625ms - ProbeWhenProbeSideOutputTime: 924.299us - ProbeWhenProcessHashTableTime: 94.154us - ProbeWhenSearchHashTableTime: 61.133ms - ProjectionTime: 1.467ms - RowsProduced: 40.327K (40327) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s919ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 11.265us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.534ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.56 MB - MemoryUsage: - Blocks: 19.25 MB - PeakMemoryUsage: 19.25 MB - OpenTime: 17.531us - ProjectionTime: 0ns - RowsProduced: 3.296164M (3296164) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s101ms PipelineXTask (index=8):(Active: 109.389ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 109.252ms - CloseTime: 21.180us - GetBlockTime: 104.863ms - OpenTime: 3.333us - PrepareTime: 104.687us - SinkTime: 3.458ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.44ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 740.55ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 786 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.745us - CompressTime: 0ns - ExecTime: 3.316ms - InputRows: 40.454K (40454) - LocalBytesSent: 1.27 MB - LocalSendTime: 3.124ms - LocalSentRows: 40.454K (40454) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.332us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.454K (40454) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 5.5us - ExecTime: 94.766ms - InitProbeSideTime: 25.38ms - JoinFilterTimer: 39.243us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 12.356us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.69us - ProbeFindNextTime: 0ns - ProbeRows: 3.295205M (3295205) - ProbeTime: 91.260ms - ProbeWhenBuildSideOutputTime: 7.557ms - ProbeWhenProbeSideOutputTime: 921.828us - ProbeWhenProcessHashTableTime: 90.321us - ProbeWhenSearchHashTableTime: 52.993ms - ProjectionTime: 1.422ms - RowsProduced: 40.454K (40454) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s920ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 6.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 9.623ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.63 MB - MemoryUsage: - Blocks: 19.34 MB - PeakMemoryUsage: 19.34 MB - OpenTime: 11.356us - ProjectionTime: 0ns - RowsProduced: 3.295205M (3295205) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s44ms PipelineXTask (index=10):(Active: 150.109ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 149.962ms - CloseTime: 32.371us - GetBlockTime: 119.970ms - OpenTime: 4.846us - PrepareTime: 102.508us - SinkTime: 29.227ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.21ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 587.978ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 788 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.205us - CompressTime: 0ns - ExecTime: 29.113ms - InputRows: 40.48K (40480) - LocalBytesSent: 1.27 MB - LocalSendTime: 28.894ms - LocalSentRows: 40.48K (40480) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.154us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.48K (40480) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 5.130us - ExecTime: 112.103ms - InitProbeSideTime: 22.869ms - JoinFilterTimer: 41.928us - MemoryUsage: - PeakMemoryUsage: 68.88 KB - ProbeKeyArena: 68.88 KB - OpenTime: 11.56us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 99.463us - ProbeFindNextTime: 0ns - ProbeRows: 3.295332M (3295332) - ProbeTime: 108.712ms - ProbeWhenBuildSideOutputTime: 10.176ms - ProbeWhenProbeSideOutputTime: 934.426us - ProbeWhenProcessHashTableTime: 94.901us - ProbeWhenSearchHashTableTime: 70.44ms - ProjectionTime: 1.452ms - RowsProduced: 40.48K (40480) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s118ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 11.38us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 7.444ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.75 MB - MemoryUsage: - Blocks: 19.54 MB - PeakMemoryUsage: 19.54 MB - OpenTime: 24.106us - ProjectionTime: 0ns - RowsProduced: 3.295332M (3295332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 954.616ms PipelineXTask (index=12):(Active: 142.894ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 142.747ms - CloseTime: 43.97us - GetBlockTime: 117.101ms - OpenTime: 3.938us - PrepareTime: 85.992us - SinkTime: 24.673ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.430ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 546.856ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 786 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.892us - CompressTime: 0ns - ExecTime: 24.545ms - InputRows: 40.113K (40113) - LocalBytesSent: 1.26 MB - LocalSendTime: 24.319ms - LocalSentRows: 40.113K (40113) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.712us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.113K (40113) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 23.442us - ExecTime: 111.350ms - InitProbeSideTime: 37.495ms - JoinFilterTimer: 43.905us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 13.55us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 105.768us - ProbeFindNextTime: 0ns - ProbeRows: 3.295967M (3295967) - ProbeTime: 107.756ms - ProbeWhenBuildSideOutputTime: 23.58ms - ProbeWhenProbeSideOutputTime: 945.387us - ProbeWhenProcessHashTableTime: 97.620us - ProbeWhenSearchHashTableTime: 41.337ms - ProjectionTime: 1.504ms - RowsProduced: 40.113K (40113) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s170ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 7.202us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.239ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.65 MB - MemoryUsage: - Blocks: 19.60 MB - PeakMemoryUsage: 19.60 MB - OpenTime: 10.50us - ProjectionTime: 0ns - RowsProduced: 3.295967M (3295967) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 955.912ms PipelineXTask (index=14):(Active: 118.490ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 118.340ms - CloseTime: 33.388us - GetBlockTime: 103.653ms - OpenTime: 5.846us - PrepareTime: 105.134us - SinkTime: 13.834ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.860ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 832.379ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 785 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.367us - CompressTime: 0ns - ExecTime: 13.708ms - InputRows: 40.634K (40634) - LocalBytesSent: 1.28 MB - LocalSendTime: 13.496ms - LocalSentRows: 40.634K (40634) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.325us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.634K (40634) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 785 - BuildOutputBlock: 0ns - CloseTime: 5.543us - ExecTime: 98.79ms - InitProbeSideTime: 24.85ms - JoinFilterTimer: 46.581us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 12.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 104.926us - ProbeFindNextTime: 0ns - ProbeRows: 3.295115M (3295115) - ProbeTime: 94.386ms - ProbeWhenBuildSideOutputTime: 19.177ms - ProbeWhenProbeSideOutputTime: 1.6ms - ProbeWhenProcessHashTableTime: 93.51us - ProbeWhenSearchHashTableTime: 44.898ms - ProjectionTime: 1.645ms - RowsProduced: 40.634K (40634) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s100ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 11.43us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.104ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.74 MB - MemoryUsage: - Blocks: 19.44 MB - PeakMemoryUsage: 19.44 MB - OpenTime: 27.531us - ProjectionTime: 0ns - RowsProduced: 3.295115M (3295115) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 836.924ms PipelineXTask (index=16):(Active: 140.695ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 140.531ms - CloseTime: 30.749us - GetBlockTime: 131.510ms - OpenTime: 2.708us - PrepareTime: 117.581us - SinkTime: 8.86ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.39ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 820.952ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 788 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.670us - CompressTime: 0ns - ExecTime: 7.972ms - InputRows: 40.225K (40225) - LocalBytesSent: 1.27 MB - LocalSendTime: 7.740ms - LocalSentRows: 40.225K (40225) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 35.36us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.225K (40225) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 5.648us - ExecTime: 126.248ms - InitProbeSideTime: 24.214ms - JoinFilterTimer: 45.858us - MemoryUsage: - PeakMemoryUsage: 68.92 KB - ProbeKeyArena: 68.92 KB - OpenTime: 29.441us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.694us - ProbeFindNextTime: 0ns - ProbeRows: 3.295028M (3295028) - ProbeTime: 122.574ms - ProbeWhenBuildSideOutputTime: 8.589ms - ProbeWhenProbeSideOutputTime: 937.244us - ProbeWhenProcessHashTableTime: 96.992us - ProbeWhenSearchHashTableTime: 73.431ms - ProjectionTime: 1.497ms - RowsProduced: 40.225K (40225) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s895ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 10.225us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.781ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.84 MB - MemoryUsage: - Blocks: 18.84 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 18.126us - ProjectionTime: 0ns - RowsProduced: 3.295028M (3295028) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 983.842ms PipelineXTask (index=18):(Active: 112.535ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 112.397ms - CloseTime: 29.335us - GetBlockTime: 108.35ms - OpenTime: 3.24us - PrepareTime: 100.414us - SinkTime: 3.528ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.874ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 795.269ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 787 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.355us - CompressTime: 0ns - ExecTime: 3.407ms - InputRows: 40.004K (40004) - LocalBytesSent: 1.26 MB - LocalSendTime: 3.182ms - LocalSentRows: 40.004K (40004) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.897us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.004K (40004) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 7.220us - ExecTime: 81.69ms - InitProbeSideTime: 23.131ms - JoinFilterTimer: 43.131us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 12.350us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 83.513us - ProbeFindNextTime: 0ns - ProbeRows: 3.296292M (3296292) - ProbeTime: 77.470ms - ProbeWhenBuildSideOutputTime: 8.209ms - ProbeWhenProbeSideOutputTime: 1.56ms - ProbeWhenProcessHashTableTime: 95.605us - ProbeWhenSearchHashTableTime: 40.174ms - ProjectionTime: 1.420ms - RowsProduced: 40.004K (40004) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s896ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 9.719us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.472ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.43 MB - MemoryUsage: - Blocks: 19.30 MB - PeakMemoryUsage: 19.30 MB - OpenTime: 20.117us - ProjectionTime: 0ns - RowsProduced: 3.296292M (3296292) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s71ms PipelineXTask (index=20):(Active: 139.812ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 139.683ms - CloseTime: 44.155us - GetBlockTime: 135.197ms - OpenTime: 2.382us - PrepareTime: 75.807us - SinkTime: 3.530ms - GetBlockCounter: 785 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.791ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 883.859ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 784 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.801us - CompressTime: 0ns - ExecTime: 3.410ms - InputRows: 40.237K (40237) - LocalBytesSent: 1.27 MB - LocalSendTime: 3.183ms - LocalSentRows: 40.237K (40237) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 19.460us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40.237K (40237) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 784 - BuildOutputBlock: 0ns - CloseTime: 8.77us - ExecTime: 129.698ms - InitProbeSideTime: 55.528ms - JoinFilterTimer: 41.491us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 10.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 113.853us - ProbeFindNextTime: 0ns - ProbeRows: 3.295631M (3295631) - ProbeTime: 126.154ms - ProbeWhenBuildSideOutputTime: 8.486ms - ProbeWhenProbeSideOutputTime: 1.72ms - ProbeWhenProcessHashTableTime: 97.574us - ProbeWhenSearchHashTableTime: 56.39ms - ProjectionTime: 1.480ms - RowsProduced: 40.237K (40237) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s897ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 784 - BytesReceived: 0.00 - CloseTime: 13.420us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.28ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.18 MB - MemoryUsage: - Blocks: 19.62 MB - PeakMemoryUsage: 19.62 MB - OpenTime: 13.111us - ProjectionTime: 0ns - RowsProduced: 3.295631M (3295631) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 998.227ms PipelineXTask (index=22):(Active: 95.103ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 94.981ms - CloseTime: 27.181us - GetBlockTime: 90.318ms - OpenTime: 2.824us - PrepareTime: 84.788us - SinkTime: 3.734ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.556ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 957.893ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 786 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.621us - CompressTime: 0ns - ExecTime: 3.595ms - InputRows: 39.977K (39977) - LocalBytesSent: 1.26 MB - LocalSendTime: 3.370ms - LocalSentRows: 39.977K (39977) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.61us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 39.977K (39977) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 5.381us - ExecTime: 84.911ms - InitProbeSideTime: 27.478ms - JoinFilterTimer: 43.232us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 8.601us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.564us - ProbeFindNextTime: 0ns - ProbeRows: 3.295421M (3295421) - ProbeTime: 81.429ms - ProbeWhenBuildSideOutputTime: 7.878ms - ProbeWhenProbeSideOutputTime: 950.998us - ProbeWhenProcessHashTableTime: 95.354us - ProbeWhenSearchHashTableTime: 40.132ms - ProjectionTime: 1.449ms - RowsProduced: 39.977K (39977) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s898ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 8.508us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.922ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.88 MB - MemoryUsage: - Blocks: 19.48 MB - PeakMemoryUsage: 19.48 MB - OpenTime: 24.525us - ProjectionTime: 0ns - RowsProduced: 3.295421M (3295421) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 966.447ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.147ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.945ms - CloseTime: 14.981us - GetBlockTime: 208.126us - OpenTime: 3.66us - PrepareTime: 177.567us - SinkTime: 2.650ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.111ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 648.578ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.130us - BuildRows: 40.374K (40374) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.385ms - BuildTableInsertTime: 707.305us - BuildTableTime: 712.581us - CloseTime: 0ns - ExecTime: 2.770ms - InputRows: 40.373K (40373) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 630.84 KB - HashTable: 453.14 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 133.795us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.298us - RuntimeFilterComputeTime: 437.2us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 225.648us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.57 MB - MemoryUsage: - Blocks: 896.00 KB - PeakMemoryUsage: 896.00 KB - OpenTime: 19.128us - ProjectionTime: 0ns - RowsProduced: 40.373K (40373) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s332ms PipelineXTask (index=3):(Active: 21.723ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 21.623ms - CloseTime: 26.708us - GetBlockTime: 1.159ms - OpenTime: 2.654us - PrepareTime: 62.734us - SinkTime: 20.227ms - GetBlockCounter: 57 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.887ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s240ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 31.498us - BuildRows: 221.018K (221018) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.822ms - BuildTableInsertTime: 11.795ms - BuildTableTime: 11.800ms - CloseTime: 0ns - ExecTime: 20.228ms - InputRows: 221.017K (221017) - MemoryUsage: - BuildBlocks: 6.96 MB - BuildKeyArena: 3.37 MB - HashTable: 2.05 MB - PeakMemoryUsage: 12.38 MB - OpenTime: 18.268us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.299us - RuntimeFilterComputeTime: 1.440ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 56 - BytesReceived: 0.00 - CloseTime: 22.792us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.160ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.29 MB - MemoryUsage: - Blocks: 6.03 MB - PeakMemoryUsage: 6.03 MB - OpenTime: 29.192us - ProjectionTime: 0ns - RowsProduced: 221.017K (221017) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s711ms PipelineXTask (index=5):(Active: 2.476ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.386ms - CloseTime: 19.673us - GetBlockTime: 217.375us - OpenTime: 3.658us - PrepareTime: 60.990us - SinkTime: 2.85ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.434ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 577.527ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.11us - BuildRows: 40.201K (40201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.19ms - BuildTableInsertTime: 684.409us - BuildTableTime: 689.936us - CloseTime: 0ns - ExecTime: 2.99ms - InputRows: 40.2K (40200) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 628.14 KB - HashTable: 452.30 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 20.860us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.845us - RuntimeFilterComputeTime: 306.480us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 16.423us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 236.256us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.57 MB - MemoryUsage: - Blocks: 1020.00 KB - PeakMemoryUsage: 1020.00 KB - OpenTime: 11.317us - ProjectionTime: 0ns - RowsProduced: 40.2K (40200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s253ms PipelineXTask (index=7):(Active: 2.675ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.498ms - CloseTime: 13.495us - GetBlockTime: 189.984us - OpenTime: 2.643us - PrepareTime: 152.730us - SinkTime: 2.229ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.578ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 597.167ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.369us - BuildRows: 40.328K (40328) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.325ms - BuildTableInsertTime: 571.619us - BuildTableTime: 575.196us - CloseTime: 0ns - ExecTime: 2.244ms - InputRows: 40.327K (40327) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 630.13 KB - HashTable: 452.92 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 19.546us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.491us - RuntimeFilterComputeTime: 267.14us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 211.797us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.59 MB - MemoryUsage: - Blocks: 1.05 MB - PeakMemoryUsage: 1.05 MB - OpenTime: 19.575us - ProjectionTime: 0ns - RowsProduced: 40.327K (40327) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s234ms PipelineXTask (index=9):(Active: 2.815ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.723ms - CloseTime: 15.561us - GetBlockTime: 227.393us - OpenTime: 3.172us - PrepareTime: 67.132us - SinkTime: 2.421ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.723ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 578.406ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.132us - BuildRows: 40.455K (40455) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.442ms - BuildTableInsertTime: 625.447us - BuildTableTime: 628.139us - CloseTime: 0ns - ExecTime: 2.439ms - InputRows: 40.454K (40454) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 632.11 KB - HashTable: 453.54 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 22.388us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.462us - RuntimeFilterComputeTime: 282.175us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.857us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 244.878us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.60 MB - MemoryUsage: - Blocks: 1.01 MB - PeakMemoryUsage: 1.01 MB - OpenTime: 15.354us - ProjectionTime: 0ns - RowsProduced: 40.454K (40454) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s253ms PipelineXTask (index=11):(Active: 3.154ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.56ms - CloseTime: 9.537us - GetBlockTime: 215.74us - OpenTime: 2.713us - PrepareTime: 78.600us - SinkTime: 2.759ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.128ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 633.360ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.872us - BuildRows: 40.481K (40481) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.590ms - BuildTableInsertTime: 699.739us - BuildTableTime: 702.654us - CloseTime: 0ns - ExecTime: 2.787ms - InputRows: 40.48K (40480) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 632.52 KB - HashTable: 453.67 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 30.995us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.342us - RuntimeFilterComputeTime: 412.829us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.586us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 226.608us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.60 MB - MemoryUsage: - Blocks: 860.00 KB - PeakMemoryUsage: 860.00 KB - OpenTime: 16.245us - ProjectionTime: 0ns - RowsProduced: 40.48K (40480) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s348ms PipelineXTask (index=13):(Active: 2.905ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.821ms - CloseTime: 21.588us - GetBlockTime: 195.531us - OpenTime: 2.620us - PrepareTime: 51.397us - SinkTime: 2.510ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.859ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 446.40ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.824us - BuildRows: 40.114K (40114) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.635ms - BuildTableInsertTime: 511.273us - BuildTableTime: 515.783us - CloseTime: 0ns - ExecTime: 2.520ms - InputRows: 40.113K (40113) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 626.78 KB - HashTable: 451.87 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 16.205us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.216us - RuntimeFilterComputeTime: 268.447us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 18.722us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 214.502us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.55 MB - MemoryUsage: - Blocks: 400.00 KB - PeakMemoryUsage: 400.00 KB - OpenTime: 14.648us - ProjectionTime: 0ns - RowsProduced: 40.113K (40113) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s642ms PipelineXTask (index=15):(Active: 3.466ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.396ms - CloseTime: 11.981us - GetBlockTime: 234.475us - OpenTime: 2.44us - PrepareTime: 51.391us - SinkTime: 3.69ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.432ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 502.417ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.905us - BuildRows: 40.635K (40635) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.850ms - BuildTableInsertTime: 709.882us - BuildTableTime: 712.457us - CloseTime: 0ns - ExecTime: 3.74ms - InputRows: 40.634K (40634) - MemoryUsage: - BuildBlocks: 1.28 MB - BuildKeyArena: 634.92 KB - HashTable: 454.42 KB - PeakMemoryUsage: 2.34 MB - OpenTime: 9.723us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 163.943us - RuntimeFilterComputeTime: 275.393us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.167us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 247.631us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.63 MB - MemoryUsage: - Blocks: 600.00 KB - PeakMemoryUsage: 600.00 KB - OpenTime: 14.982us - ProjectionTime: 0ns - RowsProduced: 40.634K (40634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s586ms PipelineXTask (index=17):(Active: 3.155ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.54ms - CloseTime: 17.440us - GetBlockTime: 182.882us - OpenTime: 1.579us - PrepareTime: 76.175us - SinkTime: 2.767ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.115ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.379ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.593us - BuildRows: 40.226K (40226) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.763ms - BuildTableInsertTime: 635.710us - BuildTableTime: 640.773us - CloseTime: 0ns - ExecTime: 2.775ms - InputRows: 40.225K (40225) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 628.53 KB - HashTable: 452.42 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 17.24us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.58us - RuntimeFilterComputeTime: 277.880us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.572us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 213.193us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.58 MB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 32.841us - ProjectionTime: 0ns - RowsProduced: 40.225K (40225) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s721ms PipelineXTask (index=19):(Active: 3.302ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.209ms - CloseTime: 11.372us - GetBlockTime: 184.478us - OpenTime: 1.838us - PrepareTime: 68.370us - SinkTime: 2.925ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.262ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.22ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.663us - BuildRows: 40.005K (40005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.786ms - BuildTableInsertTime: 787.546us - BuildTableTime: 793.405us - CloseTime: 0ns - ExecTime: 2.943ms - InputRows: 40.004K (40004) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 625.08 KB - HashTable: 451.34 KB - PeakMemoryUsage: 2.31 MB - OpenTime: 23.313us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.72us - RuntimeFilterComputeTime: 276.462us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.60us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 189.359us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.53 MB - MemoryUsage: - Blocks: 388.00 KB - PeakMemoryUsage: 388.00 KB - OpenTime: 11.922us - ProjectionTime: 0ns - RowsProduced: 40.004K (40004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s731ms PipelineXTask (index=21):(Active: 3.377ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.290ms - CloseTime: 8.25us - GetBlockTime: 195.579us - OpenTime: 1.847us - PrepareTime: 71.591us - SinkTime: 2.995ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.329ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.384ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.612us - BuildRows: 40.238K (40238) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.967ms - BuildTableInsertTime: 657.45us - BuildTableTime: 659.141us - CloseTime: 0ns - ExecTime: 3.2ms - InputRows: 40.237K (40237) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 628.72 KB - HashTable: 452.48 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 13.810us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.877us - RuntimeFilterComputeTime: 265.318us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.951us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 205.650us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.56 MB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 17.436us - ProjectionTime: 0ns - RowsProduced: 40.237K (40237) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s716ms PipelineXTask (index=23):(Active: 3.33ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.972ms - CloseTime: 8.89us - GetBlockTime: 239.835us - OpenTime: 2.73us - PrepareTime: 46.320us - SinkTime: 2.630ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.3ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.897ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.563us - BuildRows: 39.978K (39978) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.675ms - BuildTableInsertTime: 605.554us - BuildTableTime: 609.161us - CloseTime: 0ns - ExecTime: 2.639ms - InputRows: 39.977K (39977) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 624.66 KB - HashTable: 451.21 KB - PeakMemoryUsage: 2.31 MB - OpenTime: 14.688us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.126us - RuntimeFilterComputeTime: 261.258us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.3us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 244.696us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.55 MB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 13.42us - ProjectionTime: 0ns - RowsProduced: 39.977K (39977) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s727ms Fragment 60: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 388.984ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 388.443ms - CloseTime: 93.654us - GetBlockTime: 4.936ms - OpenTime: 186.243us - PrepareTime: 247.757us - SinkTime: 340.861ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 178.295ms - WaitBfTime: 728.530ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 994.628ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.692us - CompressTime: 0ns - ExecTime: 340.606ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 41.19 MB - LocalSendTime: 5.406ms - LocalSentRows: 4.799089M (4799089) - MemoryUsage: - PeakMemoryUsage: 60.86 MB - MergeBlockTime: 0ns - OpenTime: 78.542us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 96.669ms - SplitBlockHashComputeTime: 203.248ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.684us - BlocksProduced: 1.183K (1183) - CloseTime: 79.46us - ExecTime: 108.448ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 290.788us - ProcessConjunctTime: 39.295us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 271.816ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 103.473ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [17.382ms, 35.148ms, 11.123ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [91.117ms, 89.737ms, 90.961ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 57.524ms - MemoryUsage: - FreeBlocks: 25.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 766.626us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 70.259us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.654ms - ScannerCtxSchedTime: 271.797ms - ScannerFilterTime: 4.256ms - ScannerGetBlockTime: 58.984ms - ScannerInitTime: 107.92us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.295us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 20.426us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 32.838us - BlockInitTime: 309.736us - BlockLoadTime: 57.671ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 222.559us - FirstReadTime: 55.231ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.433us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 106.281us - OutputIndexResultColumnTimer: 89.911us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 589 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 376.53ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 375.439ms - CloseTime: 88.891us - GetBlockTime: 3.991ms - OpenTime: 188.142us - PrepareTime: 325.170us - SinkTime: 352.689ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 150.989ms - WaitBfTime: 717.543ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 461.246ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.144K (1144) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.9us - CompressTime: 0ns - ExecTime: 352.480ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 41.19 MB - LocalSendTime: 4.453ms - LocalSentRows: 4.79901M (4799010) - MemoryUsage: - PeakMemoryUsage: 61.39 MB - MergeBlockTime: 0ns - OpenTime: 67.989us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 133.567ms - SplitBlockHashComputeTime: 184.120ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 14.342us - BlocksProduced: 1.182K (1182) - CloseTime: 73.374us - ExecTime: 97.402ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 395.73us - ProcessConjunctTime: 34.951us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 368.966ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.227ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [33.339ms, 50.137ms, 4.139ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [192.178ms, 88.910ms, 87.876ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 82.826ms - MemoryUsage: - FreeBlocks: 20.74 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 462.596us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 62.781us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.584ms - ScannerCtxSchedTime: 368.958ms - ScannerFilterTime: 3.229ms - ScannerGetBlockTime: 84.51ms - ScannerInitTime: 108.168us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.994us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.294us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 22.331us - BlockInitTime: 167.738us - BlockLoadTime: 82.815ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 193.857us - FirstReadTime: 80.743ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.366us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 131.5us - OutputIndexResultColumnTimer: 74.373us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 590 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 264.408ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 263.967ms - CloseTime: 75.673us - GetBlockTime: 3.27ms - OpenTime: 132.256us - PrepareTime: 223.701us - SinkTime: 259.229ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 100.350ms - WaitBfTime: 728.708ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 610.95ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.395us - CompressTime: 0ns - ExecTime: 259.122ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 29.80 MB - LocalSendTime: 3.39ms - LocalSentRows: 3.472164M (3472164) - MemoryUsage: - PeakMemoryUsage: 43.17 MB - MergeBlockTime: 0ns - OpenTime: 81.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 159.440ms - SplitBlockHashComputeTime: 68.365ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.40us - BlocksProduced: 856 - CloseTime: 53.115us - ExecTime: 117.461ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 227.836us - ProcessConjunctTime: 12.764us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 239.306ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.335ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [25.423ms, 50.642ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [145.902ms, 93.403ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 54.588ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 319.313us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35.627us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.370ms - ScannerCtxSchedTime: 239.297ms - ScannerFilterTime: 2.17ms - ScannerGetBlockTime: 73.807ms - ScannerInitTime: 99.248us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.522us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.616us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 43.651us - BlockInitTime: 217.730us - BlockLoadTime: 54.789ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 150.177us - FirstReadTime: 53.171ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.277us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 78.687us - OutputIndexResultColumnTimer: 48.255us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 249.837ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 249.293ms - CloseTime: 81.717us - GetBlockTime: 3.255ms - OpenTime: 159.679us - PrepareTime: 292.513us - SinkTime: 233.770ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 92.276ms - WaitBfTime: 712.241ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s141ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.886us - CompressTime: 0ns - ExecTime: 233.668ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 29.80 MB - LocalSendTime: 2.469ms - LocalSentRows: 3.472126M (3472126) - MemoryUsage: - PeakMemoryUsage: 43.58 MB - MergeBlockTime: 0ns - OpenTime: 60.919us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 150.264ms - SplitBlockHashComputeTime: 47.141ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.76us - BlocksProduced: 856 - CloseTime: 66.601us - ExecTime: 127.338ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 334.682us - ProcessConjunctTime: 27.738us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 161.303ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 123.862ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [49.259ms, 52.879ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [77.985ms, 83.318ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 96.622ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 534.415us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41.951us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.172ms - ScannerCtxSchedTime: 161.296ms - ScannerFilterTime: 3.356ms - ScannerGetBlockTime: 98.405ms - ScannerInitTime: 102.299us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.653us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 27.165us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 46.182us - BlockInitTime: 306.447us - BlockLoadTime: 96.807ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 222.412us - FirstReadTime: 94.230ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.582us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 124.667us - OutputIndexResultColumnTimer: 102.161us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 268.22ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 267.652ms - CloseTime: 47.609us - GetBlockTime: 20.400ms - OpenTime: 128.21us - PrepareTime: 184.269us - SinkTime: 246.41ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 67.785ms - WaitBfTime: 732.675ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 954.872ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 543 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.318us - CompressTime: 0ns - ExecTime: 245.980ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 19.40 MB - LocalSendTime: 1.827ms - LocalSentRows: 2.259795M (2259795) - MemoryUsage: - PeakMemoryUsage: 27.94 MB - MergeBlockTime: 0ns - OpenTime: 74.338us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 202.213ms - SplitBlockHashComputeTime: 28.62ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.820us - BlocksProduced: 557 - CloseTime: 32.819us - ExecTime: 262.109ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 186.710us - ProcessConjunctTime: 28.242us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 97.126ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 241.622ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [139.701ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [97.126ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 136.17ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 262.812us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.244us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.423ms - ScannerCtxSchedTime: 97.123ms - ScannerFilterTime: 2.914ms - ScannerGetBlockTime: 136.626ms - ScannerInitTime: 67.920us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 14.360us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.454us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.569us - BlockInitTime: 89.210us - BlockLoadTime: 136.74ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 104.666us - FirstReadTime: 135.24ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.496us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 56.290us - OutputIndexResultColumnTimer: 35.963us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 162.581ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 162.153ms - CloseTime: 39.618us - GetBlockTime: 1.916ms - OpenTime: 90.748us - PrepareTime: 285.758us - SinkTime: 158.881ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 75.127ms - WaitBfTime: 732.788ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s80ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 542 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.900us - CompressTime: 0ns - ExecTime: 158.898ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 19.40 MB - LocalSendTime: 2.805ms - LocalSentRows: 2.259785M (2259785) - MemoryUsage: - PeakMemoryUsage: 27.40 MB - MergeBlockTime: 0ns - OpenTime: 155.361us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 117.154ms - SplitBlockHashComputeTime: 22.503ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.942us - BlocksProduced: 557 - CloseTime: 23.116us - ExecTime: 145.727ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 156.142us - ProcessConjunctTime: 17.120us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 97.121ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.790ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [42.550ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [97.121ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.704ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 199.76us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.582us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.672ms - ScannerCtxSchedTime: 97.118ms - ScannerFilterTime: 26.224ms - ScannerGetBlockTime: 16.185ms - ScannerInitTime: 48.808us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 880ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.504us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.202us - BlockInitTime: 57.533us - BlockLoadTime: 15.693ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 76.419us - FirstReadTime: 14.789ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.61us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 51.749us - OutputIndexResultColumnTimer: 30.302us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 114.918ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.618ms - CloseTime: 37.953us - GetBlockTime: 864.805us - OpenTime: 74.790us - PrepareTime: 178.385us - SinkTime: 113.215ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 24.800ms - WaitBfTime: 712.373ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s143ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.732us - CompressTime: 0ns - ExecTime: 113.253ms - InputRows: 876.719K (876719) - LocalBytesSent: 7.52 MB - LocalSendTime: 635.203us - LocalSentRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 10.47 MB - MergeBlockTime: 0ns - OpenTime: 73.234us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.719K (876719) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.645ms - SplitBlockHashComputeTime: 7.835ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.974us - BlocksProduced: 216 - CloseTime: 23.97us - ExecTime: 117.365ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 130.687us - ProcessConjunctTime: 23.363us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.174ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 116.392ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [8.576ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [83.174ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.204ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 156.15us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.727us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.155ms - ScannerCtxSchedTime: 83.171ms - ScannerFilterTime: 49.183us - ScannerGetBlockTime: 8.475ms - ScannerInitTime: 32.533us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 386ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.727us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 7.886us - BlockInitTime: 42.197us - BlockLoadTime: 8.231ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 37.927us - FirstReadTime: 7.739ms - IOTimer: 0ns - InvertedIndexFilterTime: 604ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 28.30us - OutputIndexResultColumnTimer: 13.777us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 164.741ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 164.399ms - CloseTime: 36.739us - GetBlockTime: 970.157us - OpenTime: 63.991us - PrepareTime: 233.392us - SinkTime: 162.826ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 26.689ms - WaitBfTime: 712.466ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s15ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.800us - CompressTime: 0ns - ExecTime: 162.879ms - InputRows: 876.727K (876727) - LocalBytesSent: 7.53 MB - LocalSendTime: 674.755us - LocalSentRows: 876.727K (876727) - MemoryUsage: - PeakMemoryUsage: 10.83 MB - MergeBlockTime: 0ns - OpenTime: 87.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.727K (876727) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 126.759ms - SplitBlockHashComputeTime: 30.512ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.768us - BlocksProduced: 216 - CloseTime: 20.125us - ExecTime: 108.447ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 146.326us - ProcessConjunctTime: 11.888us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 84.764ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 107.365ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [19.701ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [84.764ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 19.342ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 158.694us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.18us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.543ms - ScannerCtxSchedTime: 84.762ms - ScannerFilterTime: 44.177us - ScannerGetBlockTime: 19.598ms - ScannerInitTime: 32.561us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 350ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.690us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 9.10us - BlockInitTime: 41.700us - BlockLoadTime: 8.332ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 49.876us - FirstReadTime: 7.867ms - IOTimer: 0ns - InvertedIndexFilterTime: 597ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 27.448us - OutputIndexResultColumnTimer: 15.66us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 318.10ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 317.604ms - CloseTime: 88.908us - GetBlockTime: 3.366ms - OpenTime: 87.63us - PrepareTime: 192.392us - SinkTime: 293.763ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 110.411ms - WaitBfTime: 732.868ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s46ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 806 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.351us - CompressTime: 0ns - ExecTime: 293.630ms - InputRows: 3.390145M (3390145) - LocalBytesSent: 29.10 MB - LocalSendTime: 3.355ms - LocalSentRows: 3.390145M (3390145) - MemoryUsage: - PeakMemoryUsage: 46.67 MB - MergeBlockTime: 0ns - OpenTime: 69.893us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.390145M (3390145) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.490ms - SplitBlockHashComputeTime: 34.814ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.395us - BlocksProduced: 836 - CloseTime: 72.913us - ExecTime: 139.766ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 166.880us - ProcessConjunctTime: 13.30us - ProjectionTime: 0ns - RowsProduced: 3.390145M (3390145) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 194.240ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 136.359ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [42.257ms, 43.717ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [96.755ms, 97.484ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 83.346ms - MemoryUsage: - FreeBlocks: 18.77 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 351.757us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 36.787us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.885ms - ScannerCtxSchedTime: 194.236ms - ScannerFilterTime: 1.426ms - ScannerGetBlockTime: 84.273ms - ScannerInitTime: 48.440us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.225us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.124us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 16.598us - BlockInitTime: 132.358us - BlockLoadTime: 83.389ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 140.369us - FirstReadTime: 81.834ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.549us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 95.857us - OutputIndexResultColumnTimer: 47.471us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 586.326ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 585.907ms - CloseTime: 55.137us - GetBlockTime: 4.182ms - OpenTime: 77.528us - PrepareTime: 275.748us - SinkTime: 579.402ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 9 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 129.872ms - WaitBfTime: 711.761ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.718ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 808 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.874us - CompressTime: 0ns - ExecTime: 579.332ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 29.09 MB - LocalSendTime: 114.898ms - LocalSentRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 46.20 MB - MergeBlockTime: 0ns - OpenTime: 165.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 374.104ms - SplitBlockHashComputeTime: 46.531ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.274us - BlocksProduced: 836 - CloseTime: 42.367us - ExecTime: 138.926ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 141.86us - ProcessConjunctTime: 21.172us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 160.652ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.811ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [84.824ms, 47.148ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [83.391ms, 77.261ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 130.164ms - MemoryUsage: - FreeBlocks: 18.56 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 374.510us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 43.526us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.352ms - ScannerCtxSchedTime: 160.647ms - ScannerFilterTime: 251.986us - ScannerGetBlockTime: 131.424ms - ScannerInitTime: 36.469us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.731us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.353us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 25.981us - BlockInitTime: 158.481us - BlockLoadTime: 130.158ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 179.593us - FirstReadTime: 128.0ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.26us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 111.889us - OutputIndexResultColumnTimer: 73.467us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 207.579ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 206.952ms - CloseTime: 133.322us - GetBlockTime: 13.43ms - OpenTime: 294.37us - PrepareTime: 189.948us - SinkTime: 191.275ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 139.888ms - WaitBfTime: 1s356ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s124ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.186K (1186) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.316us - CompressTime: 0ns - ExecTime: 191.18ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 42.71 MB - LocalSendTime: 3.780ms - LocalSentRows: 4.97661M (4976610) - MemoryUsage: - PeakMemoryUsage: 64.45 MB - MergeBlockTime: 0ns - OpenTime: 64.541us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.215ms - SplitBlockHashComputeTime: 58.82ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 265.860us - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 32.263us - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.585us - BlocksProduced: 1.227K (1227) - CloseTime: 117.735us - ExecTime: 17.324ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 371.870us - ProcessConjunctTime: 50.910us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.488ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.57ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [29.446ms, 18.211ms, 6.892ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [300.313us, 1.590ms, 3.597ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.432ms - MemoryUsage: - FreeBlocks: 26.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 583.905us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 50.77us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.306ms - ScannerCtxSchedTime: 5.478ms - ScannerFilterTime: 4.183ms - ScannerGetBlockTime: 49.979ms - ScannerInitTime: 164.107us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.662us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.91us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 40.692us - BlockInitTime: 274.811us - BlockLoadTime: 48.641ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 199.172us - FirstReadTime: 46.444ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.177us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 133.325us - OutputIndexResultColumnTimer: 69.621us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 615 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 540.436ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 539.903ms - CloseTime: 66.161us - GetBlockTime: 4.658ms - OpenTime: 226.586us - PrepareTime: 228.619us - SinkTime: 513.289ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 172.926ms - WaitBfTime: 883.784ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 492.30ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.185K (1185) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.82us - CompressTime: 0ns - ExecTime: 513.49ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 42.71 MB - LocalSendTime: 26.605ms - LocalSentRows: 4.976137M (4976137) - MemoryUsage: - PeakMemoryUsage: 65.05 MB - MergeBlockTime: 0ns - OpenTime: 93.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 232.912ms - SplitBlockHashComputeTime: 169.545ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 160.686ms - WaitForLocalExchangeBuffer10: 1s518ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 62.727ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=239. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 76, type = minmax), RuntimeFilter: (id = 77, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.677us - BlocksProduced: 1.228K (1228) - CloseTime: 50.721us - ExecTime: 124.137ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 313.666us - ProcessConjunctTime: 27.970us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 259.339ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.451ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 65 - expr_input_rows: 2.756804M (2756804) RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.378402M (1378402) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [68.756ms, 94.207ms, 30.613ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [86.509ms, 86.583ms, 86.245ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 154.975ms - MemoryUsage: - FreeBlocks: 23.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 591.807us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 48.993us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.266ms - ScannerCtxSchedTime: 259.332ms - ScannerFilterTime: 285.194us - ScannerGetBlockTime: 156.897ms - ScannerInitTime: 161.403us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.364us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.346us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 61.435us - BlockInitTime: 343.646us - BlockLoadTime: 155.452ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 232.318us - FirstReadTime: 152.847ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.57us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 140.565us - OutputIndexResultColumnTimer: 84.127us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 620 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 61: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 472.301ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 471.655ms - CloseTime: 77.747us - GetBlockTime: 435.399ms - OpenTime: 279.511us - PrepareTime: 275.226us - SinkTime: 34.62ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 314.4ms - WaitBfTime: 731.220ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 904.865ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.132us - CompressTime: 0ns - ExecTime: 33.976ms - InputRows: 165.278K (165278) - LocalBytesSent: 5.20 MB - LocalSendTime: 473.705us - LocalSentRows: 165.278K (165278) - MemoryUsage: - PeakMemoryUsage: 7.19 MB - MergeBlockTime: 0ns - OpenTime: 69.139us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 165.278K (165278) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.309ms - SplitBlockHashComputeTime: 4.52ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=237): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 13.192us - ExecTime: 432.189ms - InitProbeSideTime: 134.783ms - JoinFilterTimer: 83.684us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.231us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.447us - ProbeFindNextTime: 0ns - ProbeRows: 2.082148M (2082148) - ProbeTime: 428.284ms - ProbeWhenBuildSideOutputTime: 8.266ms - ProbeWhenProbeSideOutputTime: 4.564ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 273.346ms - ProjectionTime: 2.198ms - RowsProduced: 165.278K (165278) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 74, type = minmax), RuntimeFilter: (id = 75, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.92us - BlocksProduced: 514 - CloseTime: 45.865us - ExecTime: 298.986ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 382.271us - ProcessConjunctTime: 53.634us - ProjectionTime: 0ns - RowsProduced: 2.082148M (2082148) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 122.467ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 296.99ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 74, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 8 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 75, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [175.155ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [122.467ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 99.818ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.395ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.510us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.858ms - ScannerCtxSchedTime: 122.463ms - ScannerFilterTime: 72.924ms - ScannerGetBlockTime: 101.915ms - ScannerInitTime: 170.593us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.330us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.618us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 26.188us - BlockInitTime: 143.203us - BlockLoadTime: 101.349ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.358ms - FirstReadTime: 98.386ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.867us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 214.863us - OutputIndexResultColumnTimer: 91.225us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 511.471ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 510.881ms - CloseTime: 76.488us - GetBlockTime: 444.277ms - OpenTime: 136.99us - PrepareTime: 366.506us - SinkTime: 64.594ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 325.655ms - WaitBfTime: 910.524ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s141ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.36us - CompressTime: 0ns - ExecTime: 64.468ms - InputRows: 165.949K (165949) - LocalBytesSent: 5.22 MB - LocalSendTime: 464.526us - LocalSentRows: 165.949K (165949) - MemoryUsage: - PeakMemoryUsage: 6.99 MB - MergeBlockTime: 0ns - OpenTime: 75.572us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 165.949K (165949) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 52.645ms - SplitBlockHashComputeTime: 4.114ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=237): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 17.381us - ExecTime: 441.79ms - InitProbeSideTime: 68.783ms - JoinFilterTimer: 101.285us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 27.4us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 109.931us - ProbeFindNextTime: 0ns - ProbeRows: 2.086233M (2086233) - ProbeTime: 437.90ms - ProbeWhenBuildSideOutputTime: 8.799ms - ProbeWhenProbeSideOutputTime: 4.671ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 346.441ms - ProjectionTime: 2.252ms - RowsProduced: 165.949K (165949) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 74, type = minmax), RuntimeFilter: (id = 75, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.788us - BlocksProduced: 514 - CloseTime: 41.66us - ExecTime: 294.875ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 221.863us - ProcessConjunctTime: 13.864us - ProjectionTime: 0ns - RowsProduced: 2.086233M (2086233) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 133.713ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 292.271ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 74, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 1 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 75, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [161.541ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [133.713ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 78.0ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 859.403us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.943us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.300ms - ScannerCtxSchedTime: 133.694ms - ScannerFilterTime: 81.527ms - ScannerGetBlockTime: 79.708ms - ScannerInitTime: 92.298us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 941ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.318us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.203us - BlockInitTime: 93.448us - BlockLoadTime: 78.976ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 992.307us - FirstReadTime: 76.727ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.224us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 176.989us - OutputIndexResultColumnTimer: 67.118us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 440.526ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 439.938ms - CloseTime: 59.420us - GetBlockTime: 402.146ms - OpenTime: 303.261us - PrepareTime: 214.527us - SinkTime: 35.398ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 349.447ms - WaitBfTime: 910.652ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s204ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.869us - CompressTime: 0ns - ExecTime: 35.256ms - InputRows: 166.579K (166579) - LocalBytesSent: 5.24 MB - LocalSendTime: 470.793us - LocalSentRows: 166.579K (166579) - MemoryUsage: - PeakMemoryUsage: 7.18 MB - MergeBlockTime: 0ns - OpenTime: 56.442us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 166.579K (166579) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.456ms - SplitBlockHashComputeTime: 4.276ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=237): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 6.138us - ExecTime: 398.784ms - InitProbeSideTime: 67.280ms - JoinFilterTimer: 98.950us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 10.643us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 158.326us - ProbeFindNextTime: 0ns - ProbeRows: 2.08699M (2086990) - ProbeTime: 394.587ms - ProbeWhenBuildSideOutputTime: 9.512ms - ProbeWhenProbeSideOutputTime: 4.662ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 289.891ms - ProjectionTime: 2.463ms - RowsProduced: 166.579K (166579) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 74, type = minmax), RuntimeFilter: (id = 75, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA---0-U4AijT94PmC7HkUWQ : wonH-hBwAAz68ThOnqH3Or-04Fz4sRyA] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 155.291us - BlocksProduced: 515 - CloseTime: 36.360us - ExecTime: 351.253ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 381.596us - ProcessConjunctTime: 21.347us - ProjectionTime: 0ns - RowsProduced: 2.08699M (2086990) - RowsRead: 2.08699M (2086990) - RuntimeFilterInfo: - filter id = 75 filtered: 0 - filter id = 75 input: 207.264K (207264) - ScannerWorkerWaitTime: 134.290ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 348.362ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 74, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 75, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [195.316ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [134.290ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 192.175ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.106ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.432us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 110.802ms - ScannerCtxSchedTime: 134.276ms - ScannerFilterTime: 411.858us - ScannerGetBlockTime: 194.652ms - ScannerInitTime: 101.583us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 75: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 1.369us - BlockConditionsFilteredBloomFilterTime: 3.956us - BlockConditionsFilteredDictTime: 1.659us - BlockConditionsFilteredTime: 885.772us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 858.409us - BlockInitSeekCount: 28 - BlockInitSeekTime: 495.726us - BlockInitTime: 1.477ms - BlockLoadTime: 195.350ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 515 - FirstReadSeekTime: 294.935us - FirstReadTime: 79.374ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.532us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.859ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 40.515ms - OutputIndexResultColumnTimer: 78.57us - RawRowsRead: 2.08699M (2086990) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 55 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.08699M (2086990) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.886ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 191.914us PipelineXTask (index=6):(Active: 373.810ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 373.315ms - CloseTime: 73.800us - GetBlockTime: 322.937ms - OpenTime: 154.344us - PrepareTime: 256.900us - SinkTime: 48.365ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 331.818ms - WaitBfTime: 904.450ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s429ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.125us - CompressTime: 0ns - ExecTime: 48.262ms - InputRows: 166.235K (166235) - LocalBytesSent: 5.23 MB - LocalSendTime: 424.572us - LocalSentRows: 166.235K (166235) - MemoryUsage: - PeakMemoryUsage: 7.25 MB - MergeBlockTime: 0ns - OpenTime: 79.595us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 166.235K (166235) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.127ms - SplitBlockHashComputeTime: 3.899ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=237): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 18.267us - ExecTime: 319.766ms - InitProbeSideTime: 65.963ms - JoinFilterTimer: 101.231us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 12.796us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 131.308us - ProbeFindNextTime: 0ns - ProbeRows: 2.086864M (2086864) - ProbeTime: 315.848ms - ProbeWhenBuildSideOutputTime: 9.244ms - ProbeWhenProbeSideOutputTime: 4.671ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 228.238ms - ProjectionTime: 2.177ms - RowsProduced: 166.235K (166235) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 74, type = minmax), RuntimeFilter: (id = 75, type = in_or_bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.747us - BlocksProduced: 515 - CloseTime: 42.201us - ExecTime: 314.407ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 225.140us - ProcessConjunctTime: 27.204us - ProjectionTime: 0ns - RowsProduced: 2.086864M (2086864) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 98.472ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 311.725ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 74, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 28 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 75, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [204.767ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [98.472ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 168.1ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 982.228us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.10us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.578ms - ScannerCtxSchedTime: 98.457ms - ScannerFilterTime: 34.666ms - ScannerGetBlockTime: 169.838ms - ScannerInitTime: 76.373us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.264us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.51us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 23.47us - BlockInitTime: 123.260us - BlockLoadTime: 169.190ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.70ms - FirstReadTime: 166.871ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.801us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 182.731us - OutputIndexResultColumnTimer: 61.980us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 45.215ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 45.130ms - CloseTime: 19.338us - GetBlockTime: 783.47us - OpenTime: 2.640us - PrepareTime: 56.382us - SinkTime: 44.157ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.61ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 360.537ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 31.693us - BuildRows: 166.382K (166382) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.452ms - BuildTableInsertTime: 14.814ms - BuildTableTime: 14.820ms - CloseTime: 0ns - ExecTime: 44.150ms - InputRows: 166.381K (166381) - MemoryUsage: - BuildBlocks: 9.52 MB - BuildKeyArena: 5.72 MB - HashTable: 1.63 MB - PeakMemoryUsage: 16.87 MB - OpenTime: 14.354us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.765us - RuntimeFilterComputeTime: 3.714ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 40 - BytesReceived: 0.00 - CloseTime: 14.539us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 785.568us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.54 MB - MemoryUsage: - Blocks: 7.19 MB - PeakMemoryUsage: 7.19 MB - OpenTime: 20.41us - ProjectionTime: 0ns - RowsProduced: 166.381K (166381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 396.95ms PipelineXTask (index=3):(Active: 109.783ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 109.647ms - CloseTime: 24.71us - GetBlockTime: 736.22us - OpenTime: 2.528us - PrepareTime: 102.162us - SinkTime: 108.686ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 421.457ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 39.449us - BuildRows: 167.085K (167085) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 51.617ms - BuildTableInsertTime: 53.34ms - BuildTableTime: 53.40ms - CloseTime: 0ns - ExecTime: 108.703ms - InputRows: 167.084K (167084) - MemoryUsage: - BuildBlocks: 9.56 MB - BuildKeyArena: 5.74 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.94 MB - OpenTime: 40.143us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 19.458us - RuntimeFilterComputeTime: 3.851ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 40 - BytesReceived: 0.00 - CloseTime: 19.698us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 757.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.54 MB - MemoryUsage: - Blocks: 3.12 MB - PeakMemoryUsage: 3.12 MB - OpenTime: 37.268us - ProjectionTime: 0ns - RowsProduced: 167.084K (167084) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 515.897ms PipelineXTask (index=5):(Active: 215.62ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 214.963ms - CloseTime: 18.445us - GetBlockTime: 788.627us - OpenTime: 2.496us - PrepareTime: 72.11us - SinkTime: 214.27ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.696ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 350.680ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.371us - BuildRows: 167.617K (167617) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.340ms - BuildTableInsertTime: 77.508ms - BuildTableTime: 77.513ms - CloseTime: 0ns - ExecTime: 214.35ms - InputRows: 167.616K (167616) - MemoryUsage: - BuildBlocks: 9.59 MB - BuildKeyArena: 5.76 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.99 MB - OpenTime: 30.124us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.903us - RuntimeFilterComputeTime: 66.995ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 40 - BytesReceived: 0.00 - CloseTime: 14.462us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 782.486us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.45 MB - MemoryUsage: - Blocks: 7.88 MB - PeakMemoryUsage: 7.88 MB - OpenTime: 12.525us - ProjectionTime: 0ns - RowsProduced: 167.616K (167616) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 402.272ms PipelineXTask (index=7):(Active: 83.381ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 83.307ms - CloseTime: 14.440us - GetBlockTime: 665.468us - OpenTime: 3.56us - PrepareTime: 51.20us - SinkTime: 82.426ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.314ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 473.49ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.306us - BuildRows: 167.329K (167329) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 34.175ms - BuildTableInsertTime: 44.90ms - BuildTableTime: 44.96ms - CloseTime: 0ns - ExecTime: 82.414ms - InputRows: 167.328K (167328) - MemoryUsage: - BuildBlocks: 9.57 MB - BuildKeyArena: 5.75 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.96 MB - OpenTime: 14.522us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.23us - RuntimeFilterComputeTime: 3.973ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 40 - BytesReceived: 0.00 - CloseTime: 10.606us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 659.1us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.63 MB - MemoryUsage: - Blocks: 5.25 MB - PeakMemoryUsage: 5.25 MB - OpenTime: 18.449us - ProjectionTime: 0ns - RowsProduced: 167.328K (167328) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 478.50ms Fragment 62: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 84.157ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 84.11ms - CloseTime: 37.84us - GetBlockTime: 6.472ms - OpenTime: 10.436us - PrepareTime: 89.130us - SinkTime: 77.382ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.71ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 217.511ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.262us - CompressTime: 0ns - ExecTime: 77.430ms - InputRows: 74.403K (74403) - LocalBytesSent: 4.26 MB - LocalSendTime: 199.702us - LocalSentRows: 74.403K (74403) - MemoryUsage: - PeakMemoryUsage: 7.13 MB - MergeBlockTime: 0ns - OpenTime: 46.417us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74.403K (74403) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.667ms - SplitBlockHashComputeTime: 68.787ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 21 - BuildOutputBlock: 0ns - CloseTime: 14.135us - ExecTime: 6.319ms - InitProbeSideTime: 1.411ms - JoinFilterTimer: 4.473us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.640us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.546us - ProbeFindNextTime: 0ns - ProbeRows: 74.403K (74403) - ProbeTime: 5.484ms - ProbeWhenBuildSideOutputTime: 99.31us - ProbeWhenProbeSideOutputTime: 1.899ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.556ms - ProjectionTime: 730.652us - RowsProduced: 74.403K (74403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 21 - CloseTime: 0ns - ExecTime: 107.77us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.85 MB - OpenTime: 797ns - ProjectionTime: 0ns - RowsProduced: 74.403K (74403) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 446.419ms PipelineXTask (index=3):(Active: 15.33ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.887ms - CloseTime: 29.47us - GetBlockTime: 6.205ms - OpenTime: 4.730us - PrepareTime: 105.869us - SinkTime: 8.556ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.929ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.467ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.948us - CompressTime: 0ns - ExecTime: 8.614ms - InputRows: 60.545K (60545) - LocalBytesSent: 3.46 MB - LocalSendTime: 144.306us - LocalSentRows: 60.545K (60545) - MemoryUsage: - PeakMemoryUsage: 5.85 MB - MergeBlockTime: 0ns - OpenTime: 54.195us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 60.545K (60545) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.889ms - SplitBlockHashComputeTime: 1.937ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 10.700us - ExecTime: 6.70ms - InitProbeSideTime: 950.293us - JoinFilterTimer: 3.426us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.293us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.563us - ProbeFindNextTime: 0ns - ProbeRows: 60.545K (60545) - ProbeTime: 5.208ms - ProbeWhenBuildSideOutputTime: 116.824us - ProbeWhenProbeSideOutputTime: 2.718ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.50ms - ProjectionTime: 774.232us - RowsProduced: 60.545K (60545) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 116.128us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.82 MB - OpenTime: 863ns - ProjectionTime: 0ns - RowsProduced: 60.545K (60545) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 467.13ms PipelineXTask (index=6):(Active: 67.596ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.464ms - CloseTime: 36.95us - GetBlockTime: 40.889ms - OpenTime: 4.286us - PrepareTime: 85.413us - SinkTime: 26.406ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.442ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 257.949ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.569us - CompressTime: 0ns - ExecTime: 26.452ms - InputRows: 69.088K (69088) - LocalBytesSent: 3.95 MB - LocalSendTime: 249.721us - LocalSentRows: 69.088K (69088) - MemoryUsage: - PeakMemoryUsage: 6.23 MB - MergeBlockTime: 0ns - OpenTime: 44.531us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 69.088K (69088) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.802ms - SplitBlockHashComputeTime: 16.531ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 12.270us - ExecTime: 40.738ms - InitProbeSideTime: 1.461ms - JoinFilterTimer: 3.871us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 9.898us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.518us - ProbeFindNextTime: 0ns - ProbeRows: 69.088K (69088) - ProbeTime: 39.633ms - ProbeWhenBuildSideOutputTime: 175.253us - ProbeWhenProbeSideOutputTime: 36.42ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.476ms - ProjectionTime: 1.8ms - RowsProduced: 69.088K (69088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 107.808us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 766ns - ProjectionTime: 0ns - RowsProduced: 69.088K (69088) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 385.421ms PipelineXTask (index=9):(Active: 63.29ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 62.889ms - CloseTime: 37.58us - GetBlockTime: 53.135ms - OpenTime: 7.912us - PrepareTime: 88.395us - SinkTime: 9.532ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.128ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.413ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.668us - CompressTime: 0ns - ExecTime: 9.564ms - InputRows: 56.774K (56774) - LocalBytesSent: 3.25 MB - LocalSendTime: 178.371us - LocalSentRows: 56.774K (56774) - MemoryUsage: - PeakMemoryUsage: 5.34 MB - MergeBlockTime: 0ns - OpenTime: 34.464us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 56.774K (56774) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.737ms - SplitBlockHashComputeTime: 1.926ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 21.277us - ExecTime: 52.945ms - InitProbeSideTime: 48.92ms - JoinFilterTimer: 3.311us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 15.415us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.290us - ProbeFindNextTime: 0ns - ProbeRows: 56.774K (56774) - ProbeTime: 51.962ms - ProbeWhenBuildSideOutputTime: 126.880us - ProbeWhenProbeSideOutputTime: 2.146ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.114ms - ProjectionTime: 874.153us - RowsProduced: 56.774K (56774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 122.309us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.24 MB - OpenTime: 808ns - ProjectionTime: 0ns - RowsProduced: 56.774K (56774) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 525.392ms PipelineXTask (index=12):(Active: 16.708ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.586ms - CloseTime: 24.690us - GetBlockTime: 6.906ms - OpenTime: 3.815us - PrepareTime: 87.331us - SinkTime: 9.554ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.665ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.828ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.643us - CompressTime: 0ns - ExecTime: 9.586ms - InputRows: 65.766K (65766) - LocalBytesSent: 3.76 MB - LocalSendTime: 191.872us - LocalSentRows: 65.766K (65766) - MemoryUsage: - PeakMemoryUsage: 5.86 MB - MergeBlockTime: 0ns - OpenTime: 37.844us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 65.766K (65766) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.288ms - SplitBlockHashComputeTime: 2.329ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 9.473us - ExecTime: 6.769ms - InitProbeSideTime: 1.398ms - JoinFilterTimer: 4.144us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 11.548us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.781us - ProbeFindNextTime: 0ns - ProbeRows: 65.766K (65766) - ProbeTime: 5.710ms - ProbeWhenBuildSideOutputTime: 211.570us - ProbeWhenProbeSideOutputTime: 2.259ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.352ms - ProjectionTime: 966.263us - RowsProduced: 65.766K (65766) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 97.630us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 1.52 MB - OpenTime: 930ns - ProjectionTime: 0ns - RowsProduced: 65.766K (65766) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 464.9ms PipelineXTask (index=15):(Active: 18.191ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.8ms - CloseTime: 46.863us - GetBlockTime: 6.824ms - OpenTime: 9.150us - PrepareTime: 121.594us - SinkTime: 11.40ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.113ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 297.310ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.924us - CompressTime: 0ns - ExecTime: 11.101ms - InputRows: 61.323K (61323) - LocalBytesSent: 3.51 MB - LocalSendTime: 209.818us - LocalSentRows: 61.323K (61323) - MemoryUsage: - PeakMemoryUsage: 5.79 MB - MergeBlockTime: 0ns - OpenTime: 42.969us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 61.323K (61323) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.713ms - SplitBlockHashComputeTime: 2.375ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 17 - BuildOutputBlock: 0ns - CloseTime: 11.880us - ExecTime: 6.717ms - InitProbeSideTime: 1.310ms - JoinFilterTimer: 3.564us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 31.483us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.759us - ProbeFindNextTime: 0ns - ProbeRows: 61.323K (61323) - ProbeTime: 5.875ms - ProbeWhenBuildSideOutputTime: 255.909us - ProbeWhenProbeSideOutputTime: 2.456ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.394ms - ProjectionTime: 727.663us - RowsProduced: 61.323K (61323) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 17 - CloseTime: 0ns - ExecTime: 94.971us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 2.68 MB - OpenTime: 761ns - ProjectionTime: 0ns - RowsProduced: 61.323K (61323) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 448.749ms PipelineXTask (index=18):(Active: 24.230ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 23.987ms - CloseTime: 28.143us - GetBlockTime: 5.240ms - OpenTime: 4.470us - PrepareTime: 202.667us - SinkTime: 18.632ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.452ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.570ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.187us - CompressTime: 0ns - ExecTime: 18.699ms - InputRows: 52.688K (52688) - LocalBytesSent: 3.01 MB - LocalSendTime: 124.501us - LocalSentRows: 52.688K (52688) - MemoryUsage: - PeakMemoryUsage: 4.58 MB - MergeBlockTime: 0ns - OpenTime: 65.323us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 52.688K (52688) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.254ms - SplitBlockHashComputeTime: 1.773ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 12.965us - ExecTime: 5.129ms - InitProbeSideTime: 1.67ms - JoinFilterTimer: 6.217us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.427us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.929us - ProbeFindNextTime: 0ns - ProbeRows: 52.688K (52688) - ProbeTime: 4.480ms - ProbeWhenBuildSideOutputTime: 127.398us - ProbeWhenProbeSideOutputTime: 1.902ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 982.966us - ProjectionTime: 559.54us - RowsProduced: 52.688K (52688) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 93.414us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 1.38 MB - OpenTime: 2.785us - ProjectionTime: 0ns - RowsProduced: 52.688K (52688) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 460.192ms PipelineXTask (index=21):(Active: 34.905ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.754ms - CloseTime: 38.194us - GetBlockTime: 4.682ms - OpenTime: 6.725us - PrepareTime: 101.315us - SinkTime: 29.938ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.852ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.851ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.296us - CompressTime: 0ns - ExecTime: 29.997ms - InputRows: 48.268K (48268) - LocalBytesSent: 2.76 MB - LocalSendTime: 152.240us - LocalSentRows: 48.268K (48268) - MemoryUsage: - PeakMemoryUsage: 4.45 MB - MergeBlockTime: 0ns - OpenTime: 55.185us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 48.268K (48268) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.357ms - SplitBlockHashComputeTime: 1.827ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 21.102us - ExecTime: 4.605ms - InitProbeSideTime: 1.150ms - JoinFilterTimer: 2.763us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.930us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.325us - ProbeFindNextTime: 0ns - ProbeRows: 48.268K (48268) - ProbeTime: 4.6ms - ProbeWhenBuildSideOutputTime: 291.184us - ProbeWhenProbeSideOutputTime: 1.208ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 981.965us - ProjectionTime: 513.516us - RowsProduced: 48.268K (48268) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 68.496us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.00 MB - OpenTime: 682ns - ProjectionTime: 0ns - RowsProduced: 48.268K (48268) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 475.58ms PipelineXTask (index=24):(Active: 12.425ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.271ms - CloseTime: 23.897us - GetBlockTime: 4.811ms - OpenTime: 6.443us - PrepareTime: 114.754us - SinkTime: 7.342ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.256ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.206ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.757us - CompressTime: 0ns - ExecTime: 7.379ms - InputRows: 47.652K (47652) - LocalBytesSent: 2.73 MB - LocalSendTime: 115.348us - LocalSentRows: 47.652K (47652) - MemoryUsage: - PeakMemoryUsage: 4.45 MB - MergeBlockTime: 0ns - OpenTime: 37.305us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 47.652K (47652) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.971ms - SplitBlockHashComputeTime: 1.600ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.721us - ExecTime: 4.719ms - InitProbeSideTime: 978.153us - JoinFilterTimer: 2.580us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.492us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.471us - ProbeFindNextTime: 0ns - ProbeRows: 47.652K (47652) - ProbeTime: 3.984ms - ProbeWhenBuildSideOutputTime: 65.432us - ProbeWhenProbeSideOutputTime: 1.769ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 886.520us - ProjectionTime: 656.997us - RowsProduced: 47.652K (47652) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 70.994us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 1.27 MB - OpenTime: 737ns - ProjectionTime: 0ns - RowsProduced: 47.652K (47652) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 452.751ms PipelineXTask (index=27):(Active: 12.280ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.134ms - CloseTime: 38.293us - GetBlockTime: 4.195ms - OpenTime: 5.493us - PrepareTime: 96.133us - SinkTime: 7.834ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 311.855ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.275us - CompressTime: 0ns - ExecTime: 7.875ms - InputRows: 45.916K (45916) - LocalBytesSent: 2.63 MB - LocalSendTime: 137.160us - LocalSentRows: 45.916K (45916) - MemoryUsage: - PeakMemoryUsage: 4.45 MB - MergeBlockTime: 0ns - OpenTime: 40.570us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 45.916K (45916) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.338ms - SplitBlockHashComputeTime: 1.842ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 26.916us - ExecTime: 4.115ms - InitProbeSideTime: 922.315us - JoinFilterTimer: 2.903us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 11.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.715us - ProbeFindNextTime: 0ns - ProbeRows: 45.916K (45916) - ProbeTime: 3.464ms - ProbeWhenBuildSideOutputTime: 151.98us - ProbeWhenProbeSideOutputTime: 1.11ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.66ms - ProjectionTime: 559.688us - RowsProduced: 45.916K (45916) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 72.780us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.41 MB - OpenTime: 862ns - ProjectionTime: 0ns - RowsProduced: 45.916K (45916) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 458.792ms PipelineXTask (index=30):(Active: 35.365ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.216ms - CloseTime: 41.333us - GetBlockTime: 4.669ms - OpenTime: 7.251us - PrepareTime: 93.635us - SinkTime: 30.431ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.414ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.490us - CompressTime: 0ns - ExecTime: 30.483ms - InputRows: 47.772K (47772) - LocalBytesSent: 2.73 MB - LocalSendTime: 145.664us - LocalSentRows: 47.772K (47772) - MemoryUsage: - PeakMemoryUsage: 4.45 MB - MergeBlockTime: 0ns - OpenTime: 45.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 47.772K (47772) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.322ms - SplitBlockHashComputeTime: 1.481ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 18.984us - ExecTime: 4.570ms - InitProbeSideTime: 925.320us - JoinFilterTimer: 2.404us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.844us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.966us - ProbeFindNextTime: 0ns - ProbeRows: 47.772K (47772) - ProbeTime: 3.870ms - ProbeWhenBuildSideOutputTime: 101.915us - ProbeWhenProbeSideOutputTime: 1.756ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 791.626us - ProjectionTime: 616.834us - RowsProduced: 47.772K (47772) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 80.173us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 1.78 MB - OpenTime: 878ns - ProjectionTime: 0ns - RowsProduced: 47.772K (47772) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 472.69ms PipelineXTask (index=33):(Active: 10.332ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 10.199ms - CloseTime: 40.638us - GetBlockTime: 4.294ms - OpenTime: 9.423us - PrepareTime: 73.631us - SinkTime: 5.664ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.205ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.21ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.772us - CompressTime: 0ns - ExecTime: 5.703ms - InputRows: 38.214K (38214) - LocalBytesSent: 2.19 MB - LocalSendTime: 107.812us - LocalSentRows: 38.214K (38214) - MemoryUsage: - PeakMemoryUsage: 3.56 MB - MergeBlockTime: 0ns - OpenTime: 37.38us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 38.214K (38214) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.696ms - SplitBlockHashComputeTime: 1.330ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.761us - ExecTime: 4.180ms - InitProbeSideTime: 792.587us - JoinFilterTimer: 4.976us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.358us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.492us - ProbeFindNextTime: 0ns - ProbeRows: 38.214K (38214) - ProbeTime: 3.500ms - ProbeWhenBuildSideOutputTime: 152.150us - ProbeWhenProbeSideOutputTime: 1.368ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 824.585us - ProjectionTime: 585.463us - RowsProduced: 38.214K (38214) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 88.908us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.27 MB - OpenTime: 755ns - ProjectionTime: 0ns - RowsProduced: 38.214K (38214) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 573.914ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 28.625ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 14.215ms - CloseTime: 43.465us - GetBlockTime: 40.604us - OpenTime: 14.121ms - PrepareTime: 232.63us - SinkTime: 22.51us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.361ms - WaitBfTime: 13.853ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.765ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.254us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.164us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.625us - BlocksProduced: 0 - CloseTime: 40.707us - ExecTime: 241.251ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 14.225ms - ProcessConjunctTime: 326.769us - ProjectionTime: 1.254us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 226.564ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 226.947ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [4.027us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [226.564ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 348.832us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 117ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 391.246us - ScannerCtxSchedTime: 226.562ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.137us - ScannerInitTime: 13.702ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 687ns - BlockConditionsFilteredBloomFilterTime: 1.483us - BlockConditionsFilteredDictTime: 113.378us - BlockConditionsFilteredTime: 145.397us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.685us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.157us - BlockInitTime: 177.933us - BlockLoadTime: 205.465us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 597ns - IOTimer: 0ns - InvertedIndexFilterTime: 3.169us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 1.294ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 576.786us - CloseTime: 42.87us - GetBlockTime: 30.158us - OpenTime: 507.366us - PrepareTime: 156.322us - SinkTime: 11.141us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.240ms - WaitBfTime: 20.28ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.721ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.416us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.221us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 44.249us - BlocksProduced: 1 - CloseTime: 39.725us - ExecTime: 223.419ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 604.128us - ProcessConjunctTime: 320.88us - ProjectionTime: 12.409us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 217.816ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 222.732ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [3.151ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [217.816ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.464ms - MemoryUsage: - FreeBlocks: 152.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.633ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 114ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.891ms - ScannerCtxSchedTime: 217.814ms - ScannerFilterTime: 4.855us - ScannerGetBlockTime: 3.137ms - ScannerInitTime: 118.255us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 2.392us - BlockConditionsFilteredBloomFilterTime: 7.821us - BlockConditionsFilteredDictTime: 138.345us - BlockConditionsFilteredTime: 236.952us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 59.178us - BlockInitSeekCount: 37 - BlockInitSeekTime: 223.299us - BlockInitTime: 550.85us - BlockLoadTime: 4.289ms - BlocksLoad: 152 - CachedPagesNum: 138 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 93.733us - FirstReadTime: 2.151ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.107us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 66.708us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 40.696us - OutputIndexResultColumnTimer: 10.181us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 95.745K (95745) - RowsShortCircuitPredInput: 95.75K (95750) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 383.702us - TotalPagesNum: 138 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 766.287us PipelineXTask (index=7):(Active: 1.49ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 474.405us - CloseTime: 37.623us - GetBlockTime: 72.57us - OpenTime: 350.844us - PrepareTime: 173.655us - SinkTime: 17.379us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 998.83us - WaitBfTime: 18.776ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 61.998ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.254us - InputRows: 11.715K (11715) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.300us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 51.844us - BlocksProduced: 5 - CloseTime: 36.254us - ExecTime: 448.784ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 447.331us - ProcessConjunctTime: 204.223us - ProjectionTime: 884.692us - RowsProduced: 11.715K (11715) - RowsRead: 11.715K (11715) - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 351.169ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 447.313ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [90.984ms, ] - PerScannerRowsRead: [11.71K, ] - PerScannerWaitTime: [351.169ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 89.515ms - MemoryUsage: - FreeBlocks: 564.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.113ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 562ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.96ms - ScannerCtxSchedTime: 351.165ms - ScannerFilterTime: 301.408us - ScannerGetBlockTime: 90.536ms - ScannerInitTime: 74.230us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.480us - BlockConditionsFilteredBloomFilterTime: 3.920us - BlockConditionsFilteredDictTime: 72.459us - BlockConditionsFilteredTime: 174.43us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 82.529us - BlockInitSeekCount: 17 - BlockInitSeekTime: 25.733us - BlockInitTime: 262.45us - BlockLoadTime: 91.816ms - BlocksLoad: 367 - CachedPagesNum: 1.245K (1245) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 240.337us - FirstReadTime: 26.400ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.983us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.302ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 733.533us - OutputIndexResultColumnTimer: 43.109us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 328.372K (328372) - RowsShortCircuitPredInput: 340.087K (340087) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 875.221us - TotalPagesNum: 1.245K (1245) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.169ms PipelineXTask (index=10):(Active: 1.470ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 707.212us - CloseTime: 56.896us - GetBlockTime: 104.847us - OpenTime: 501.760us - PrepareTime: 191.895us - SinkTime: 46.622us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.396ms - WaitBfTime: 33.71ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 127.289ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 47.442us - InputRows: 19.236K (19236) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.848us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 38.667us - BlocksProduced: 7 - CloseTime: 54.767us - ExecTime: 393.226ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 637.70us - ProcessConjunctTime: 293.570us - ProjectionTime: 822.898us - RowsProduced: 19.236K (19236) - RowsRead: 19.236K (19236) - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 349.728ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 391.567ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [33.937ms, ] - PerScannerRowsRead: [19.24K, ] - PerScannerWaitTime: [349.728ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.792ms - MemoryUsage: - FreeBlocks: 564.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.741ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 679ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.465ms - ScannerCtxSchedTime: 349.725ms - ScannerFilterTime: 264.35us - ScannerGetBlockTime: 33.559ms - ScannerInitTime: 140.381us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 1.993us - BlockConditionsFilteredBloomFilterTime: 5.349us - BlockConditionsFilteredDictTime: 70.638us - BlockConditionsFilteredTime: 184.29us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 86.550us - BlockInitSeekCount: 26 - BlockInitSeekTime: 26.987us - BlockInitTime: 298.908us - BlockLoadTime: 37.386ms - BlocksLoad: 405 - CachedPagesNum: 1.36K (1360) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 158.608us - FirstReadTime: 6.297ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.949us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 25.743ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 783.972us - OutputIndexResultColumnTimer: 31.694us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 324.614K (324614) - RowsShortCircuitPredInput: 343.85K (343850) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 926.752us - TotalPagesNum: 1.36K (1360) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.148ms PipelineXTask (index=13):(Active: 1.554ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 831.439us - CloseTime: 77.285us - GetBlockTime: 221.575us - OpenTime: 420.299us - PrepareTime: 212.114us - SinkTime: 110.865us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.457ms - WaitBfTime: 25.714ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.7ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 107.404us - InputRows: 42.659K (42659) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.193us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.114us - BlocksProduced: 13 - CloseTime: 71.327us - ExecTime: 425.965ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 541.920us - ProcessConjunctTime: 243.973us - ProjectionTime: 1.22ms - RowsProduced: 42.659K (42659) - RowsRead: 42.659K (42659) - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 327.920ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 424.75ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [78.542ms, ] - PerScannerRowsRead: [42.66K, ] - PerScannerWaitTime: [327.920ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 75.636ms - MemoryUsage: - FreeBlocks: 1.51 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.81ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 686ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.157ms - ScannerCtxSchedTime: 327.912ms - ScannerFilterTime: 312.670us - ScannerGetBlockTime: 78.81ms - ScannerInitTime: 111.649us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 2.673us - BlockConditionsFilteredBloomFilterTime: 8.559us - BlockConditionsFilteredDictTime: 184.678us - BlockConditionsFilteredTime: 323.434us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 92.588us - BlockInitSeekCount: 25 - BlockInitSeekTime: 26.367us - BlockInitTime: 461.432us - BlockLoadTime: 77.990ms - BlocksLoad: 384 - CachedPagesNum: 1.289K (1289) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 186.295us - FirstReadTime: 59.426ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.699us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.113ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.136ms - OutputIndexResultColumnTimer: 31.454us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 458.075K (458075) - RowsShortCircuitPredInput: 500.734K (500734) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.388ms - TotalPagesNum: 1.289K (1289) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.349ms PipelineXTask (index=16):(Active: 1.282ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 631.313us - CloseTime: 70.417us - GetBlockTime: 113.626us - OpenTime: 422.597us - PrepareTime: 147.173us - SinkTime: 42.730us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.196ms - WaitBfTime: 25.248ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.753ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 41.330us - InputRows: 19.364K (19364) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.135us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.147us - BlocksProduced: 6 - CloseTime: 66.293us - ExecTime: 411.326ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 504.818us - ProcessConjunctTime: 245.95us - ProjectionTime: 902.129us - RowsProduced: 19.364K (19364) - RowsRead: 19.364K (19364) - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 348.649ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 409.690ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [47.233ms, ] - PerScannerRowsRead: [19.36K, ] - PerScannerWaitTime: [348.649ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.666ms - MemoryUsage: - FreeBlocks: 596.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 732.577us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 502ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.942ms - ScannerCtxSchedTime: 348.645ms - ScannerFilterTime: 257.343us - ScannerGetBlockTime: 46.840ms - ScannerInitTime: 110.296us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 2.798us - BlockConditionsFilteredBloomFilterTime: 7.660us - BlockConditionsFilteredDictTime: 24.168ms - BlockConditionsFilteredTime: 24.324ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 113.99us - BlockInitSeekCount: 31 - BlockInitSeekTime: 30.9us - BlockInitTime: 24.473ms - BlockLoadTime: 46.489ms - BlocksLoad: 410 - CachedPagesNum: 1.359K (1359) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 235.805us - FirstReadTime: 7.104ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.780us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 9.363ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 807.333us - OutputIndexResultColumnTimer: 32.823us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 460.717K (460717) - RowsShortCircuitPredInput: 480.081K (480081) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.190ms - TotalPagesNum: 1.359K (1359) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.407ms PipelineXTask (index=19):(Active: 1.742ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.47ms - CloseTime: 80.435us - GetBlockTime: 337.599us - OpenTime: 451.790us - PrepareTime: 151.31us - SinkTime: 186.946us - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.644ms - WaitBfTime: 23.68ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 141.429ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 181.696us - InputRows: 129.028K (129028) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 45.15us - BlocksProduced: 35 - CloseTime: 77.188us - ExecTime: 422.132ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 534.883us - ProcessConjunctTime: 248.784us - ProjectionTime: 2.701ms - RowsProduced: 129.028K (129028) - RowsRead: 129.028K (129028) - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 338.72ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 418.444ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [57.435ms, ] - PerScannerRowsRead: [129.03K, ] - PerScannerWaitTime: [338.072ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 44.792ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 631.573us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.368us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.459ms - ScannerCtxSchedTime: 338.52ms - ScannerFilterTime: 368.699us - ScannerGetBlockTime: 56.881ms - ScannerInitTime: 127.987us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 2.771us - BlockConditionsFilteredBloomFilterTime: 7.129us - BlockConditionsFilteredDictTime: 104.949us - BlockConditionsFilteredTime: 246.659us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 100.967us - BlockInitSeekCount: 35 - BlockInitSeekTime: 28.641us - BlockInitTime: 378.590us - BlockLoadTime: 47.134ms - BlocksLoad: 345 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 240.230us - FirstReadTime: 6.594ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.728us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 30.198ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.861ms - OutputIndexResultColumnTimer: 47.83us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 530.951K (530951) - RowsShortCircuitPredInput: 659.979K (659979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.969ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.592ms PipelineXTask (index=22):(Active: 1.589ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 880.530us - CloseTime: 52.595us - GetBlockTime: 295.741us - OpenTime: 462.771us - PrepareTime: 180.897us - SinkTime: 63.882us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.521ms - WaitBfTime: 27.794ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 142.729ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 60.378us - InputRows: 95.875K (95875) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.59us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 44.934us - BlocksProduced: 26 - CloseTime: 50.545us - ExecTime: 455.307ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 543.300us - ProcessConjunctTime: 222.914us - ProjectionTime: 2.406ms - RowsProduced: 95.875K (95875) - RowsRead: 95.875K (95875) - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 341.678ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 451.973ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [100.077ms, ] - PerScannerRowsRead: [95.88K, ] - PerScannerWaitTime: [341.678ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 96.249ms - MemoryUsage: - FreeBlocks: 3.36 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 867.991us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.2us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.708ms - ScannerCtxSchedTime: 341.671ms - ScannerFilterTime: 438.897us - ScannerGetBlockTime: 99.423ms - ScannerInitTime: 159.505us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 4.279us - BlockConditionsFilteredBloomFilterTime: 8.869us - BlockConditionsFilteredDictTime: 155.747us - BlockConditionsFilteredTime: 346.737us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 141.174us - BlockInitSeekCount: 33 - BlockInitSeekTime: 41.169us - BlockInitTime: 528.625us - BlockLoadTime: 98.721ms - BlocksLoad: 382 - CachedPagesNum: 1.263K (1263) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 402.515us - FirstReadTime: 18.714ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.690us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 22.239ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.903ms - OutputIndexResultColumnTimer: 62.335us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 578.913K (578913) - RowsShortCircuitPredInput: 674.788K (674788) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 49.211ms - TotalPagesNum: 1.263K (1263) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.108ms PipelineXTask (index=25):(Active: 1.718ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 939.852us - CloseTime: 80.664us - GetBlockTime: 262.65us - OpenTime: 511.716us - PrepareTime: 173.236us - SinkTime: 105.557us - GetBlockCounter: 36 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.622ms - WaitBfTime: 22.110ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 187.704ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 101.644us - InputRows: 131.262K (131262) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.104us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 75.641us - BlocksProduced: 36 - CloseTime: 77.869us - ExecTime: 389.592ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 593.16us - ProcessConjunctTime: 298.369us - ProjectionTime: 2.61ms - RowsProduced: 131.262K (131262) - RowsRead: 131.262K (131262) - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 338.139ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 386.578ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [34.671ms, ] - PerScannerRowsRead: [131.26K, ] - PerScannerWaitTime: [338.139ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 32.860ms - MemoryUsage: - FreeBlocks: 4.91 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.294ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.351us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.740ms - ScannerCtxSchedTime: 338.136ms - ScannerFilterTime: 228.83us - ScannerGetBlockTime: 34.315ms - ScannerInitTime: 111.280us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 1.919us - BlockConditionsFilteredBloomFilterTime: 5.838us - BlockConditionsFilteredDictTime: 99.378us - BlockConditionsFilteredTime: 221.754us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 96.737us - BlockInitSeekCount: 25 - BlockInitSeekTime: 386.683us - BlockInitTime: 676.2us - BlockLoadTime: 34.628ms - BlocksLoad: 260 - CachedPagesNum: 875 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 181.821us - FirstReadTime: 4.837ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.571us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 21.467ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.197ms - OutputIndexResultColumnTimer: 31.646us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 466.305K (466305) - RowsShortCircuitPredInput: 597.567K (597567) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.570ms - TotalPagesNum: 875 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.816ms PipelineXTask (index=28):(Active: 1.785ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.156ms - CloseTime: 73.939us - GetBlockTime: 459.414us - OpenTime: 411.662us - PrepareTime: 131.132us - SinkTime: 176.706us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.694ms - WaitBfTime: 20.857ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 161.67ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 166.377us - InputRows: 171.007K (171007) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.136us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.971us - BlocksProduced: 48 - CloseTime: 70.177us - ExecTime: 443.63ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 489.625us - ProcessConjunctTime: 238.140us - ProjectionTime: 2.469ms - RowsProduced: 171.007K (171007) - RowsRead: 171.007K (171007) - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 340.870ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 439.552ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [35.018ms, ] - PerScannerRowsRead: [171.01K, ] - PerScannerWaitTime: [340.870ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 33.114ms - MemoryUsage: - FreeBlocks: 5.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.210ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.888us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.315ms - ScannerCtxSchedTime: 340.859ms - ScannerFilterTime: 360.948us - ScannerGetBlockTime: 34.526ms - ScannerInitTime: 106.774us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 1.701us - BlockConditionsFilteredBloomFilterTime: 10.95us - BlockConditionsFilteredDictTime: 129.707us - BlockConditionsFilteredTime: 241.109us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 71.579us - BlockInitSeekCount: 26 - BlockInitSeekTime: 210.259us - BlockInitTime: 545.251us - BlockLoadTime: 34.760ms - BlocksLoad: 291 - CachedPagesNum: 985 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 229.834us - FirstReadTime: 5.412ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.271us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 19.79ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.61ms - OutputIndexResultColumnTimer: 36.790us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 503.143K (503143) - RowsShortCircuitPredInput: 674.15K (674150) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.239ms - TotalPagesNum: 985 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.149ms PipelineXTask (index=31):(Active: 1.258ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 568.862us - CloseTime: 49.429us - GetBlockTime: 54.271us - OpenTime: 423.900us - PrepareTime: 201.112us - SinkTime: 51.918us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.196ms - WaitBfTime: 29.134ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.716ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.623us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.153us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 52.397us - BlocksProduced: 6 - CloseTime: 47.84us - ExecTime: 232.378ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 516.124us - ProcessConjunctTime: 276.481us - ProjectionTime: 319.475us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 222.952ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 231.433ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.409ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [222.952ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.191ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 991.70us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 341ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.454ms - ScannerCtxSchedTime: 222.951ms - ScannerFilterTime: 55.382us - ScannerGetBlockTime: 5.321ms - ScannerInitTime: 68.928us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 653ns - BlockConditionsFilteredBloomFilterTime: 1.555us - BlockConditionsFilteredDictTime: 23.460us - BlockConditionsFilteredTime: 47.916us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.36us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.474us - BlockInitTime: 82.584us - BlockLoadTime: 6.28ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 51.598us - FirstReadTime: 1.9ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.552us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.365ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 402.705us - OutputIndexResultColumnTimer: 7.760us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 169.11K (169110) - RowsShortCircuitPredInput: 191.383K (191383) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 492.678us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 442.106us PipelineXTask (index=34):(Active: 1.290ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 624.758us - CloseTime: 57.762us - GetBlockTime: 113.813us - OpenTime: 432.410us - PrepareTime: 163.742us - SinkTime: 44.443us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.219ms - WaitBfTime: 32.628ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.280ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 58.513us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 15.757us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 72, type = minmax), RuntimeFilter: (id = 73, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 51.374us - BlocksProduced: 7 - CloseTime: 54.851us - ExecTime: 233.781ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 522.226us - ProcessConjunctTime: 274.513us - ProjectionTime: 482.371us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 222.232ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 232.603ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 72, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 73, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.683ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [222.232ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.491ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 916.428us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 419ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.356ms - ScannerCtxSchedTime: 222.230ms - ScannerFilterTime: 39.577us - ScannerGetBlockTime: 5.614ms - ScannerInitTime: 74.306us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 410ns - BlockConditionsFilteredBloomFilterTime: 1.270us - BlockConditionsFilteredDictTime: 18.768us - BlockConditionsFilteredTime: 45.208us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 20.460us - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.850us - BlockInitTime: 76.200us - BlockLoadTime: 6.241ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 43.946us - FirstReadTime: 1.11ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.542us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.459ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 429.154us - OutputIndexResultColumnTimer: 7.777us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 174.885K (174885) - RowsShortCircuitPredInput: 200.87K (200870) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 573.620us - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 462.765us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 243.593us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 164.134us - CloseTime: 9.793us - GetBlockTime: 9.690us - OpenTime: 2.428us - PrepareTime: 61.593us - SinkTime: 125.543us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 225.69us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.226ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.550us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.508us - BuildTableInsertTime: 32.50us - BuildTableTime: 36.838us - CloseTime: 0ns - ExecTime: 145.910us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 20.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.848us - RuntimeFilterComputeTime: 25.873us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=232): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.577us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 19.208us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4.831ms PipelineXTask (index=5):(Active: 148.802us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 76.659us - CloseTime: 11.405us - GetBlockTime: 0ns - OpenTime: 3.320us - PrepareTime: 52.171us - SinkTime: 50.852us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.314us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.891ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.518us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.391us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.799ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.366us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.971us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.819us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 151.947us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.257us - CloseTime: 12.920us - GetBlockTime: 0ns - OpenTime: 2.510us - PrepareTime: 74.929us - SinkTime: 32.94us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 130.385us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.965ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 65.540us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.191us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.757ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.577us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.559us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 136.601us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 40.252us - CloseTime: 6.385us - GetBlockTime: 0ns - OpenTime: 2.272us - PrepareTime: 82.214us - SinkTime: 21.126us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.377us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.864ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 47.346us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.396us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.916ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.331us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.374us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.252us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 107.68us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.240us - CloseTime: 6.680us - GetBlockTime: 0ns - OpenTime: 2.235us - PrepareTime: 57.906us - SinkTime: 17.265us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.573us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.58ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.225us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.378us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.757ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.259us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.173us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.61us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 119.673us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.201us - CloseTime: 6.415us - GetBlockTime: 0ns - OpenTime: 2.555us - PrepareTime: 60.921us - SinkTime: 26.371us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.576us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 917.716us HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.340us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.341us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 20.14ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.971us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.788us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.950us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 115.882us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.827us - CloseTime: 8.500us - GetBlockTime: 0ns - OpenTime: 2.160us - PrepareTime: 56.776us - SinkTime: 24.328us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.618us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.381ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.227us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.670us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.886ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.239us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.755us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.662us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 222.921us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.582us - CloseTime: 8.87us - GetBlockTime: 0ns - OpenTime: 49.325us - PrepareTime: 60.793us - SinkTime: 28.451us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 205.781us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.295ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 91.404us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.118us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.950ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.672us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 118.358us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 41.757us - CloseTime: 4.947us - GetBlockTime: 0ns - OpenTime: 2.567us - PrepareTime: 64.91us - SinkTime: 20.616us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.95us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.496ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.117us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.733us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.838ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.484us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.802us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.581us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 145.515us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.894us - CloseTime: 6.67us - GetBlockTime: 0ns - OpenTime: 2.425us - PrepareTime: 97.877us - SinkTime: 15.976us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.509us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.313ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.146us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.420us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11.65ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.443us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.372us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.62us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 104.604us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.682us - CloseTime: 6.8us - GetBlockTime: 0ns - OpenTime: 2.337us - PrepareTime: 56.505us - SinkTime: 16.888us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.568us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.639ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.515us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.950us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.779ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.696us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.471us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.768us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 130.395us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 49.429us - CloseTime: 5.380us - GetBlockTime: 0ns - OpenTime: 2.275us - PrepareTime: 60.513us - SinkTime: 17.940us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.685us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.429ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963224 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.523us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.916us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11.32ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.467us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.510us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 63: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 654.408us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 219.756us - CloseTime: 43.183us - GetBlockTime: 35.497us - OpenTime: 153.902us - PrepareTime: 229.996us - SinkTime: 13.935us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 603.200us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.937ms DATA_STREAM_SINK_OPERATOR (id=232,dst_id=232): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.508us - CompressTime: 0ns - ExecTime: 52.250us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 9.76us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.258us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=231. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 795ns - BlocksProduced: 1 - CloseTime: 31.748us - ExecTime: 1.87ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 300.732us - ProcessConjunctTime: 47.425us - ProjectionTime: 7.812us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 217.372us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 712.361us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [42.063us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [217.372us, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.770us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 328.289us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 460.952us - ScannerCtxSchedTime: 215.576us - ScannerFilterTime: 3.14us - ScannerGetBlockTime: 33.256us - ScannerInitTime: 78.935us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 423ns - BlockConditionsFilteredBloomFilterTime: 2.392us - BlockConditionsFilteredDictTime: 55.329us - BlockConditionsFilteredTime: 78.88us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.656us - BlockInitSeekCount: 6 - BlockInitSeekTime: 17.364us - BlockInitTime: 127.192us - BlockLoadTime: 178.498us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.757us - FirstReadTime: 7.534us - IOTimer: 0ns - InvertedIndexFilterTime: 1.580us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.331us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.123us - OutputIndexResultColumnTimer: 422ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 86ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.768us Fragment 64: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 555.193us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 373.180us - CloseTime: 14.346us - GetBlockTime: 108.504us - OpenTime: 3.425us - PrepareTime: 156.970us - SinkTime: 222.752us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 531.389us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.402ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.73us - CompressTime: 0ns - ExecTime: 344.745us - InputRows: 288 - LocalBytesSent: 14.02 KB - LocalSendTime: 87.87us - LocalSentRows: 288 - MemoryUsage: - PeakMemoryUsage: 23.94 KB - MergeBlockTime: 0ns - OpenTime: 111.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 288 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.294us - SplitBlockHashComputeTime: 9.654us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 627ns - DeserializeAndMergeTime: 0ns - ExecTime: 113.736us - GetResultsTime: 47.527us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.928us - HashTableSize: 288 - InsertKeysToColumnTime: 23.996us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.63us - ProjectionTime: 46.124us - RowsProduced: 288 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s676ms PipelineXTask (index=2):(Active: 540.798us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 379.32us - CloseTime: 23.611us - GetBlockTime: 105.224us - OpenTime: 2.351us - PrepareTime: 109.324us - SinkTime: 229.212us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 509.447us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.309ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.197us - CompressTime: 0ns - ExecTime: 323.339us - InputRows: 296 - LocalBytesSent: 14.41 KB - LocalSendTime: 102.6us - LocalSentRows: 296 - MemoryUsage: - PeakMemoryUsage: 25.56 KB - MergeBlockTime: 0ns - OpenTime: 80.565us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 296 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.189us - SplitBlockHashComputeTime: 10.11us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 757ns - DeserializeAndMergeTime: 0ns - ExecTime: 112.145us - GetResultsTime: 44.811us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.769us - HashTableSize: 296 - InsertKeysToColumnTime: 16.622us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.750us - ProjectionTime: 46.770us - RowsProduced: 296 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s659ms PipelineXTask (index=4):(Active: 569.11us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 409.904us - CloseTime: 17.817us - GetBlockTime: 124.954us - OpenTime: 6.377us - PrepareTime: 128.159us - SinkTime: 237.915us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 540.973us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.445ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.739us - CompressTime: 0ns - ExecTime: 345.957us - InputRows: 275 - LocalBytesSent: 13.39 KB - LocalSendTime: 108.111us - LocalSentRows: 275 - MemoryUsage: - PeakMemoryUsage: 22.81 KB - MergeBlockTime: 0ns - OpenTime: 94.8us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 275 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.907us - SplitBlockHashComputeTime: 10.37us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 861ns - DeserializeAndMergeTime: 0ns - ExecTime: 134.327us - GetResultsTime: 52.505us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.716us - HashTableSize: 275 - InsertKeysToColumnTime: 27.158us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.324us - ProjectionTime: 58.554us - RowsProduced: 275 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s667ms PipelineXTask (index=6):(Active: 488.592us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 355.194us - CloseTime: 15.455us - GetBlockTime: 117.128us - OpenTime: 3.600us - PrepareTime: 109.169us - SinkTime: 209.494us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 464.964us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.795ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.615us - CompressTime: 0ns - ExecTime: 308.285us - InputRows: 268 - LocalBytesSent: 13.06 KB - LocalSendTime: 91.172us - LocalSentRows: 268 - MemoryUsage: - PeakMemoryUsage: 22.81 KB - MergeBlockTime: 0ns - OpenTime: 86.603us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 268 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 36.210us - SplitBlockHashComputeTime: 10.18us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 715ns - DeserializeAndMergeTime: 0ns - ExecTime: 124.118us - GetResultsTime: 44.5us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.784us - HashTableSize: 268 - InsertKeysToColumnTime: 19.615us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.855us - ProjectionTime: 57.872us - RowsProduced: 268 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s663ms PipelineXTask (index=8):(Active: 464.963us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 346.290us - CloseTime: 11.100us - GetBlockTime: 117.715us - OpenTime: 1.930us - PrepareTime: 100.162us - SinkTime: 209.493us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 445.170us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.287ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.965us - CompressTime: 0ns - ExecTime: 283.272us - InputRows: 324 - LocalBytesSent: 15.81 KB - LocalSendTime: 60.147us - LocalSentRows: 324 - MemoryUsage: - PeakMemoryUsage: 27.13 KB - MergeBlockTime: 0ns - OpenTime: 64.622us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 324 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 50.704us - SplitBlockHashComputeTime: 15.136us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 326ns - DeserializeAndMergeTime: 0ns - ExecTime: 124.435us - GetResultsTime: 54.635us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.321us - HashTableSize: 324 - InsertKeysToColumnTime: 33.377us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.361us - ProjectionTime: 55.499us - RowsProduced: 324 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s664ms PipelineXTask (index=10):(Active: 471.401us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 322.413us - CloseTime: 11.460us - GetBlockTime: 87.804us - OpenTime: 3.73us - PrepareTime: 127.592us - SinkTime: 211.550us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 450.863us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.321ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.732us - CompressTime: 0ns - ExecTime: 298.184us - InputRows: 268 - LocalBytesSent: 13.02 KB - LocalSendTime: 66.95us - LocalSentRows: 268 - MemoryUsage: - PeakMemoryUsage: 22.00 KB - MergeBlockTime: 0ns - OpenTime: 77.475us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 268 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 56.675us - SplitBlockHashComputeTime: 8.456us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 370ns - DeserializeAndMergeTime: 0ns - ExecTime: 97.538us - GetResultsTime: 44.978us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.508us - HashTableSize: 268 - InsertKeysToColumnTime: 28.506us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.181us - ProjectionTime: 36.116us - RowsProduced: 268 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s659ms PipelineXTask (index=12):(Active: 395.763us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 293.148us - CloseTime: 9.539us - GetBlockTime: 121.353us - OpenTime: 1.825us - PrepareTime: 86.55us - SinkTime: 154.98us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 379.959us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.557ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.454us - CompressTime: 0ns - ExecTime: 221.788us - InputRows: 313 - LocalBytesSent: 15.20 KB - LocalSendTime: 51.29us - LocalSentRows: 313 - MemoryUsage: - PeakMemoryUsage: 26.81 KB - MergeBlockTime: 0ns - OpenTime: 59.743us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 313 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.474us - SplitBlockHashComputeTime: 9.684us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 264ns - DeserializeAndMergeTime: 0ns - ExecTime: 128.98us - GetResultsTime: 67.690us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 9.625us - HashTableSize: 313 - InsertKeysToColumnTime: 29.188us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.882us - ProjectionTime: 40.482us - RowsProduced: 313 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s660ms PipelineXTask (index=14):(Active: 403.107us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 257.618us - CloseTime: 9.130us - GetBlockTime: 85.837us - OpenTime: 2.52us - PrepareTime: 128.753us - SinkTime: 156.81us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 387.349us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.853ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.171us - CompressTime: 0ns - ExecTime: 256.16us - InputRows: 255 - LocalBytesSent: 12.40 KB - LocalSendTime: 45.812us - LocalSentRows: 255 - MemoryUsage: - PeakMemoryUsage: 21.25 KB - MergeBlockTime: 0ns - OpenTime: 92.96us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 255 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.683us - SplitBlockHashComputeTime: 7.132us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 325ns - DeserializeAndMergeTime: 0ns - ExecTime: 90.743us - GetResultsTime: 48.62us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.253us - HashTableSize: 255 - InsertKeysToColumnTime: 30.274us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.34us - ProjectionTime: 32.30us - RowsProduced: 255 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s658ms PipelineXTask (index=16):(Active: 461.517us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 350.545us - CloseTime: 17.952us - GetBlockTime: 106.714us - OpenTime: 3.730us - PrepareTime: 84.324us - SinkTime: 221.414us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 437.749us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.759ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.817us - CompressTime: 0ns - ExecTime: 296.359us - InputRows: 255 - LocalBytesSent: 12.41 KB - LocalSendTime: 84.935us - LocalSentRows: 255 - MemoryUsage: - PeakMemoryUsage: 21.56 KB - MergeBlockTime: 0ns - OpenTime: 59.727us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 255 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 55.356us - SplitBlockHashComputeTime: 9.680us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 626ns - DeserializeAndMergeTime: 0ns - ExecTime: 110.699us - GetResultsTime: 45.888us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.846us - HashTableSize: 255 - InsertKeysToColumnTime: 20.431us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.724us - ProjectionTime: 45.567us - RowsProduced: 255 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s658ms PipelineXTask (index=18):(Active: 423.324us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 296.180us - CloseTime: 10.894us - GetBlockTime: 78.190us - OpenTime: 3.172us - PrepareTime: 107.677us - SinkTime: 199.885us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 405.896us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.850ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.590us - CompressTime: 0ns - ExecTime: 286.130us - InputRows: 235 - LocalBytesSent: 11.47 KB - LocalSendTime: 66.32us - LocalSentRows: 235 - MemoryUsage: - PeakMemoryUsage: 20.56 KB - MergeBlockTime: 0ns - OpenTime: 77.526us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 235 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.723us - SplitBlockHashComputeTime: 6.575us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 439ns - DeserializeAndMergeTime: 0ns - ExecTime: 88.126us - GetResultsTime: 40.991us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.958us - HashTableSize: 235 - InsertKeysToColumnTime: 23.863us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.302us - ProjectionTime: 30.81us - RowsProduced: 235 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s664ms PipelineXTask (index=20):(Active: 399.953us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 257.223us - CloseTime: 9.87us - GetBlockTime: 81.407us - OpenTime: 2.357us - PrepareTime: 125.755us - SinkTime: 157.865us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 383.751us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.938ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.968us - CompressTime: 0ns - ExecTime: 251.68us - InputRows: 251 - LocalBytesSent: 12.17 KB - LocalSendTime: 51.219us - LocalSentRows: 251 - MemoryUsage: - PeakMemoryUsage: 20.50 KB - MergeBlockTime: 0ns - OpenTime: 85.782us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 251 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.112us - SplitBlockHashComputeTime: 7.33us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 547ns - DeserializeAndMergeTime: 0ns - ExecTime: 87.600us - GetResultsTime: 44.354us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.337us - HashTableSize: 251 - InsertKeysToColumnTime: 23.638us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.661us - ProjectionTime: 31.480us - RowsProduced: 251 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s660ms PipelineXTask (index=22):(Active: 434.333us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 290.672us - CloseTime: 15.388us - GetBlockTime: 101.827us - OpenTime: 2.261us - PrepareTime: 120.169us - SinkTime: 172.300us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 412.106us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.141ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.339us - CompressTime: 0ns - ExecTime: 278.957us - InputRows: 337 - LocalBytesSent: 16.36 KB - LocalSendTime: 49.411us - LocalSentRows: 337 - MemoryUsage: - PeakMemoryUsage: 27.31 KB - MergeBlockTime: 0ns - OpenTime: 92.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 337 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 48.650us - SplitBlockHashComputeTime: 9.498us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 282ns - DeserializeAndMergeTime: 0ns - ExecTime: 106.654us - GetResultsTime: 53.938us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.286us - HashTableSize: 337 - InsertKeysToColumnTime: 31.460us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.360us - ProjectionTime: 41.610us - RowsProduced: 337 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s660ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 10.393ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.210ms - CloseTime: 31.505us - GetBlockTime: 148.632us - OpenTime: 2.812us - PrepareTime: 141.697us - SinkTime: 10.19ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.351ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.888ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 14.728us - DeserializeAndMergeTime: 9.652ms - ExecTime: 10.54ms - ExprTime: 0ns - HashTableComputeTime: 299.905us - HashTableEmplaceTime: 179.633us - HashTableInputCount: 1.454K (1454) - InputRows: 1.454K (1454) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 10.2ms - OpenTime: 24.494us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.636us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 258.712us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 216.00 KB - MemoryUsage: - Blocks: 216.00 KB - PeakMemoryUsage: 216.00 KB - OpenTime: 102.142us - ProjectionTime: 0ns - RowsProduced: 1.454K (1454) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s573ms PipelineXTask (index=3):(Active: 989.913us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 896.730us - CloseTime: 6.449us - GetBlockTime: 137.635us - OpenTime: 2.656us - PrepareTime: 77.818us - SinkTime: 719.432us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 973.419us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.121ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 621ns - DeserializeAndMergeTime: 432.99us - ExecTime: 743.316us - ExprTime: 0ns - HashTableComputeTime: 249.377us - HashTableEmplaceTime: 149.925us - HashTableInputCount: 1.453K (1453) - InputRows: 1.453K (1453) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 706.875us - OpenTime: 25.325us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.139us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 158.451us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 175.00 KB - MemoryUsage: - Blocks: 108.50 KB - PeakMemoryUsage: 108.50 KB - OpenTime: 21.713us - ProjectionTime: 0ns - RowsProduced: 1.453K (1453) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s594ms PipelineXTask (index=5):(Active: 732.841us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 617.461us - CloseTime: 22.45us - GetBlockTime: 108.644us - OpenTime: 3.2us - PrepareTime: 85.56us - SinkTime: 482.834us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 703.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.286ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 1.111us - DeserializeAndMergeTime: 274.435us - ExecTime: 495.123us - ExprTime: 0ns - HashTableComputeTime: 180.343us - HashTableEmplaceTime: 103.352us - HashTableInputCount: 1.282K (1282) - InputRows: 1.282K (1282) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 468.518us - OpenTime: 18.960us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 20.174us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.482us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 141.50 KB - OpenTime: 29.290us - ProjectionTime: 0ns - RowsProduced: 1.282K (1282) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s573ms PipelineXTask (index=7):(Active: 714.893us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 636.976us - CloseTime: 5.788us - GetBlockTime: 75.459us - OpenTime: 2.631us - PrepareTime: 63.264us - SinkTime: 524.627us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 700.202us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.983ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 844ns - DeserializeAndMergeTime: 316.65us - ExecTime: 545.56us - ExprTime: 0ns - HashTableComputeTime: 181.564us - HashTableEmplaceTime: 101.924us - HashTableInputCount: 1.25K (1250) - InputRows: 1.25K (1250) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 515.723us - OpenTime: 21.220us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.355us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 137.50 KB - MemoryUsage: - Blocks: 80.25 KB - PeakMemoryUsage: 80.25 KB - OpenTime: 19.668us - ProjectionTime: 0ns - RowsProduced: 1.25K (1250) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s593ms PipelineXTask (index=9):(Active: 960.739us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 880.374us - CloseTime: 15.624us - GetBlockTime: 152.808us - OpenTime: 2.693us - PrepareTime: 57.169us - SinkTime: 702.405us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 938.434us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.596ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 905ns - DeserializeAndMergeTime: 440.883us - ExecTime: 735.592us - ExprTime: 0ns - HashTableComputeTime: 234.978us - HashTableEmplaceTime: 117.462us - HashTableInputCount: 1.623K (1623) - InputRows: 1.623K (1623) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 693.972us - OpenTime: 33.355us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.66us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 240.00 KB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 240.00 KB - OpenTime: 11.460us - ProjectionTime: 0ns - RowsProduced: 1.623K (1623) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s573ms PipelineXTask (index=11):(Active: 822.913us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 742.361us - CloseTime: 5.424us - GetBlockTime: 111.613us - OpenTime: 2.840us - PrepareTime: 67.463us - SinkTime: 591.325us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 807.818us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.445ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 839ns - DeserializeAndMergeTime: 359.143us - ExecTime: 612.880us - ExprTime: 0ns - HashTableComputeTime: 204.842us - HashTableEmplaceTime: 120.953us - HashTableInputCount: 1.238K (1238) - InputRows: 1.238K (1238) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 581.839us - OpenTime: 22.992us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.96us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 137.25 KB - MemoryUsage: - Blocks: 80.25 KB - PeakMemoryUsage: 80.25 KB - OpenTime: 23.857us - ProjectionTime: 0ns - RowsProduced: 1.238K (1238) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s593ms PipelineXTask (index=13):(Active: 958.208us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 858.862us - CloseTime: 4.816us - GetBlockTime: 118.836us - OpenTime: 3.502us - PrepareTime: 76.229us - SinkTime: 694.664us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 938.139us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.140ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 1.120us - DeserializeAndMergeTime: 441.974us - ExecTime: 723.158us - ExprTime: 0ns - HashTableComputeTime: 227.975us - HashTableEmplaceTime: 141.346us - HashTableInputCount: 1.496K (1496) - InputRows: 1.496K (1496) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 686.392us - OpenTime: 29.303us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.207us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 138.919us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 205.00 KB - MemoryUsage: - Blocks: 120.50 KB - PeakMemoryUsage: 120.50 KB - OpenTime: 20.75us - ProjectionTime: 0ns - RowsProduced: 1.496K (1496) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s594ms PipelineXTask (index=15):(Active: 639.370us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 580.353us - CloseTime: 3.388us - GetBlockTime: 56.134us - OpenTime: 2.505us - PrepareTime: 48.394us - SinkTime: 494.130us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 627.452us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.986ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 237ns - DeserializeAndMergeTime: 306.171us - ExecTime: 510.93us - ExprTime: 0ns - HashTableComputeTime: 166.241us - HashTableEmplaceTime: 95.782us - HashTableInputCount: 1.198K (1198) - InputRows: 1.198K (1198) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 486.716us - OpenTime: 17.224us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 67.574us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 135.75 KB - MemoryUsage: - Blocks: 80.00 KB - PeakMemoryUsage: 80.00 KB - OpenTime: 12.948us - ProjectionTime: 0ns - RowsProduced: 1.198K (1198) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s593ms PipelineXTask (index=17):(Active: 873.601us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 690.8us - CloseTime: 4.128us - GetBlockTime: 108.649us - OpenTime: 2.265us - PrepareTime: 171.40us - SinkTime: 547.339us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 844.917us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.564ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 461ns - DeserializeAndMergeTime: 315.343us - ExecTime: 649.180us - ExprTime: 0ns - HashTableComputeTime: 208.176us - HashTableEmplaceTime: 118.261us - HashTableInputCount: 1.223K (1223) - InputRows: 1.223K (1223) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 538.757us - OpenTime: 103.203us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.475us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 137.00 KB - MemoryUsage: - Blocks: 79.75 KB - PeakMemoryUsage: 79.75 KB - OpenTime: 34.810us - ProjectionTime: 0ns - RowsProduced: 1.223K (1223) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s591ms PipelineXTask (index=19):(Active: 611.534us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 543.690us - CloseTime: 4.928us - GetBlockTime: 118.385us - OpenTime: 3.783us - PrepareTime: 54.269us - SinkTime: 401.653us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 600.613us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.766ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 778ns - DeserializeAndMergeTime: 229.504us - ExecTime: 423.46us - ExprTime: 0ns - HashTableComputeTime: 150.918us - HashTableEmplaceTime: 82.668us - HashTableInputCount: 1.202K (1202) - InputRows: 1.202K (1202) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 395.67us - OpenTime: 21.570us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.148us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 140.00 KB - MemoryUsage: - Blocks: 140.00 KB - PeakMemoryUsage: 140.00 KB - OpenTime: 13.945us - ProjectionTime: 0ns - RowsProduced: 1.202K (1202) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s573ms PipelineXTask (index=21):(Active: 704.107us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 605.796us - CloseTime: 2.495us - GetBlockTime: 83.492us - OpenTime: 2.803us - PrepareTime: 87.114us - SinkTime: 491.74us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 693.433us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.228ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 343ns - DeserializeAndMergeTime: 288.270us - ExecTime: 511.73us - ExprTime: 0ns - HashTableComputeTime: 172.155us - HashTableEmplaceTime: 104.826us - HashTableInputCount: 1.238K (1238) - InputRows: 1.238K (1238) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 483.147us - OpenTime: 21.821us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 108.46us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.00 KB - MemoryUsage: - Blocks: 83.75 KB - PeakMemoryUsage: 83.75 KB - OpenTime: 36.415us - ProjectionTime: 0ns - RowsProduced: 1.238K (1238) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s590ms PipelineXTask (index=23):(Active: 875.977us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 816.548us - CloseTime: 4.53us - GetBlockTime: 118.359us - OpenTime: 2.591us - PrepareTime: 47.690us - SinkTime: 664.401us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 862.435us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.825ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 795ns - DeserializeAndMergeTime: 401.19us - ExecTime: 683.868us - ExprTime: 0ns - HashTableComputeTime: 232.661us - HashTableEmplaceTime: 146.840us - HashTableInputCount: 1.509K (1509) - InputRows: 1.509K (1509) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 655.34us - OpenTime: 21.12us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.590us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.00 KB - MemoryUsage: - Blocks: 102.50 KB - PeakMemoryUsage: 102.50 KB - OpenTime: 13.133us - ProjectionTime: 0ns - RowsProduced: 1.509K (1509) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s590ms Fragment 65: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 9.452ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.939ms - CloseTime: 260.926us - GetBlockTime: 8.357ms - OpenTime: 8.329us - PrepareTime: 234.732us - SinkTime: 422.192us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.162ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.819ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.13us - CompressTime: 0ns - ExecTime: 518.192us - InputRows: 1.353K (1353) - LocalBytesSent: 113.76 KB - LocalSendTime: 98.852us - LocalSentRows: 1.353K (1353) - MemoryUsage: - PeakMemoryUsage: 167.25 KB - MergeBlockTime: 0ns - OpenTime: 71.815us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.353K (1353) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 182.222us - SplitBlockHashComputeTime: 31.475us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.541ms - CloseTime: 195.644us - DeserializeAndMergeTime: 0ns - ExecTime: 3.267ms - ExprTime: 35.230us - GetResultsTime: 426.513us - HashTableComputeTime: 1.163ms - HashTableEmplaceTime: 847.107us - HashTableInputCount: 7.661K (7661) - HashTableIterateTime: 15.260us - HashTableSize: 1.353K (1353) - InsertKeysToColumnTime: 62.241us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 52.168us - ProjectionTime: 0ns - RowsProduced: 1.353K (1353) - SerializeDataTime: 331.529us - SerializeKeyTime: 0ns - SerializeResultTime: 429.982us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.146us - ExecTime: 4.914ms - InitProbeSideTime: 819.819us - JoinFilterTimer: 1.314us - MemoryUsage: - PeakMemoryUsage: 88.00 KB - ProbeKeyArena: 88.00 KB - OpenTime: 27.291us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.708us - ProbeFindNextTime: 0ns - ProbeRows: 11.201K (11201) - ProbeTime: 2.644ms - ProbeWhenBuildSideOutputTime: 70.103us - ProbeWhenProbeSideOutputTime: 650.174us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 808.459us - ProjectionTime: 2.159ms - RowsProduced: 7.661K (7661) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.222us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 256.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.69 MB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 252.00 KB - OpenTime: 18.591us - ProjectionTime: 0ns - RowsProduced: 11.201K (11201) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s560ms PipelineXTask (index=2):(Active: 7.186ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.809ms - CloseTime: 155.597us - GetBlockTime: 6.362ms - OpenTime: 8.257us - PrepareTime: 205.547us - SinkTime: 391.419us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.769ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.40us - CompressTime: 0ns - ExecTime: 480.386us - InputRows: 1.358K (1358) - LocalBytesSent: 114.11 KB - LocalSendTime: 73.929us - LocalSentRows: 1.358K (1358) - MemoryUsage: - PeakMemoryUsage: 171.50 KB - MergeBlockTime: 0ns - OpenTime: 75.546us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.358K (1358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 195.93us - SplitBlockHashComputeTime: 31.276us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.17ms - CloseTime: 100.579us - DeserializeAndMergeTime: 0ns - ExecTime: 2.432ms - ExprTime: 10.320us - GetResultsTime: 259.506us - HashTableComputeTime: 924.193us - HashTableEmplaceTime: 678.256us - HashTableInputCount: 7.723K (7723) - HashTableIterateTime: 9.481us - HashTableSize: 1.358K (1358) - InsertKeysToColumnTime: 59.971us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 29.304us - ProjectionTime: 0ns - RowsProduced: 1.358K (1358) - SerializeDataTime: 169.845us - SerializeKeyTime: 0ns - SerializeResultTime: 262.799us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 24.698us - ExecTime: 3.841ms - InitProbeSideTime: 665.318us - JoinFilterTimer: 938ns - MemoryUsage: - PeakMemoryUsage: 228.00 KB - ProbeKeyArena: 228.00 KB - OpenTime: 16.397us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.780us - ProbeFindNextTime: 0ns - ProbeRows: 11.798K (11798) - ProbeTime: 2.65ms - ProbeWhenBuildSideOutputTime: 37.177us - ProbeWhenProbeSideOutputTime: 532.716us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 635.650us - ProjectionTime: 1.679ms - RowsProduced: 7.723K (7723) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 214.878us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.81 MB - MemoryUsage: - Blocks: 1.81 MB - PeakMemoryUsage: 1.81 MB - OpenTime: 13.813us - ProjectionTime: 0ns - RowsProduced: 11.798K (11798) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s522ms PipelineXTask (index=4):(Active: 8.201ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.809ms - CloseTime: 176.557us - GetBlockTime: 7.374ms - OpenTime: 9.93us - PrepareTime: 199.725us - SinkTime: 339.752us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.8ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.583ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.922us - CompressTime: 0ns - ExecTime: 427.604us - InputRows: 1.306K (1306) - LocalBytesSent: 110.23 KB - LocalSendTime: 63.945us - LocalSentRows: 1.306K (1306) - MemoryUsage: - PeakMemoryUsage: 158.75 KB - MergeBlockTime: 0ns - OpenTime: 76.685us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.306K (1306) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 158.693us - SplitBlockHashComputeTime: 36.189us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.313ms - CloseTime: 132.313us - DeserializeAndMergeTime: 0ns - ExecTime: 2.867ms - ExprTime: 17.7us - GetResultsTime: 354.677us - HashTableComputeTime: 1.136ms - HashTableEmplaceTime: 843.622us - HashTableInputCount: 7.554K (7554) - HashTableIterateTime: 9.252us - HashTableSize: 1.306K (1306) - InsertKeysToColumnTime: 67.765us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 32.15us - ProjectionTime: 0ns - RowsProduced: 1.306K (1306) - SerializeDataTime: 255.219us - SerializeKeyTime: 0ns - SerializeResultTime: 356.800us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.497us - ExecTime: 4.339ms - InitProbeSideTime: 730.581us - JoinFilterTimer: 1.371us - MemoryUsage: - PeakMemoryUsage: 80.00 KB - ProbeKeyArena: 80.00 KB - OpenTime: 18.239us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.102us - ProbeFindNextTime: 0ns - ProbeRows: 11.013K (11013) - ProbeTime: 2.450ms - ProbeWhenBuildSideOutputTime: 53.899us - ProbeWhenProbeSideOutputTime: 631.447us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 775.812us - ProjectionTime: 1.801ms - RowsProduced: 7.554K (7554) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.119us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 266.883us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.70 MB - MemoryUsage: - Blocks: 1.05 MB - PeakMemoryUsage: 1.05 MB - OpenTime: 16.88us - ProjectionTime: 0ns - RowsProduced: 11.013K (11013) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s540ms PipelineXTask (index=6):(Active: 8.60ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.625ms - CloseTime: 174.661us - GetBlockTime: 7.184ms - OpenTime: 20.444us - PrepareTime: 234.324us - SinkTime: 358.543us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.859ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.145ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.4us - CompressTime: 0ns - ExecTime: 451.107us - InputRows: 1.341K (1341) - LocalBytesSent: 111.90 KB - LocalSendTime: 73.196us - LocalSentRows: 1.341K (1341) - MemoryUsage: - PeakMemoryUsage: 162.25 KB - MergeBlockTime: 0ns - OpenTime: 79.93us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.341K (1341) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 177.971us - SplitBlockHashComputeTime: 29.184us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.142ms - CloseTime: 105.607us - DeserializeAndMergeTime: 0ns - ExecTime: 2.668ms - ExprTime: 14.711us - GetResultsTime: 345.321us - HashTableComputeTime: 1.14ms - HashTableEmplaceTime: 760.257us - HashTableInputCount: 7.453K (7453) - HashTableIterateTime: 9.116us - HashTableSize: 1.341K (1341) - InsertKeysToColumnTime: 63.905us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 20.631us - ProjectionTime: 0ns - RowsProduced: 1.341K (1341) - SerializeDataTime: 261.0us - SerializeKeyTime: 0ns - SerializeResultTime: 347.365us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 40.514us - ExecTime: 4.323ms - InitProbeSideTime: 690.946us - JoinFilterTimer: 1.376us - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 29.285us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.840us - ProbeFindNextTime: 0ns - ProbeRows: 12.119K (12119) - ProbeTime: 2.315ms - ProbeWhenBuildSideOutputTime: 53.900us - ProbeWhenProbeSideOutputTime: 630.188us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 686.271us - ProjectionTime: 1.891ms - RowsProduced: 7.453K (7453) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.483us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 318.257us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.91 MB - MemoryUsage: - Blocks: 1.71 MB - PeakMemoryUsage: 1.71 MB - OpenTime: 44.242us - ProjectionTime: 0ns - RowsProduced: 12.119K (12119) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s521ms PipelineXTask (index=8):(Active: 8.60ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.706ms - CloseTime: 147.925us - GetBlockTime: 7.233ms - OpenTime: 4.308us - PrepareTime: 196.400us - SinkTime: 413.104us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.877ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.162ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.630us - CompressTime: 0ns - ExecTime: 492.719us - InputRows: 1.356K (1356) - LocalBytesSent: 114.20 KB - LocalSendTime: 82.988us - LocalSentRows: 1.356K (1356) - MemoryUsage: - PeakMemoryUsage: 165.75 KB - MergeBlockTime: 0ns - OpenTime: 66.277us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.356K (1356) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 182.158us - SplitBlockHashComputeTime: 49.248us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.48ms - CloseTime: 106.632us - DeserializeAndMergeTime: 0ns - ExecTime: 2.535ms - ExprTime: 13.356us - GetResultsTime: 311.545us - HashTableComputeTime: 960.923us - HashTableEmplaceTime: 726.603us - HashTableInputCount: 7.72K (7720) - HashTableIterateTime: 9.124us - HashTableSize: 1.356K (1356) - InsertKeysToColumnTime: 82.540us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 24.705us - ProjectionTime: 0ns - RowsProduced: 1.356K (1356) - SerializeDataTime: 198.805us - SerializeKeyTime: 0ns - SerializeResultTime: 314.573us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 11.498us - ExecTime: 4.446ms - InitProbeSideTime: 697.448us - JoinFilterTimer: 1.808us - MemoryUsage: - PeakMemoryUsage: 112.00 KB - ProbeKeyArena: 112.00 KB - OpenTime: 15.286us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.943us - ProbeFindNextTime: 0ns - ProbeRows: 12.153K (12153) - ProbeTime: 2.409ms - ProbeWhenBuildSideOutputTime: 62.171us - ProbeWhenProbeSideOutputTime: 662.69us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 705.891us - ProjectionTime: 1.952ms - RowsProduced: 7.72K (7720) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.431us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 316.214us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.93 MB - MemoryUsage: - Blocks: 1.80 MB - PeakMemoryUsage: 1.80 MB - OpenTime: 20.986us - ProjectionTime: 0ns - RowsProduced: 12.153K (12153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s518ms PipelineXTask (index=10):(Active: 6.905ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.540ms - CloseTime: 129.194us - GetBlockTime: 6.186ms - OpenTime: 5.366us - PrepareTime: 224.454us - SinkTime: 302.445us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.303ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.804us - CompressTime: 0ns - ExecTime: 381.674us - InputRows: 1.298K (1298) - LocalBytesSent: 107.96 KB - LocalSendTime: 56.366us - LocalSentRows: 1.298K (1298) - MemoryUsage: - PeakMemoryUsage: 153.25 KB - MergeBlockTime: 0ns - OpenTime: 69.17us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.298K (1298) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 152.917us - SplitBlockHashComputeTime: 27.948us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.950ms - CloseTime: 88.132us - DeserializeAndMergeTime: 0ns - ExecTime: 2.380ms - ExprTime: 11.584us - GetResultsTime: 278.713us - HashTableComputeTime: 893.110us - HashTableEmplaceTime: 669.930us - HashTableInputCount: 7.146K (7146) - HashTableIterateTime: 8.988us - HashTableSize: 1.298K (1298) - InsertKeysToColumnTime: 53.36us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 33.963us - ProjectionTime: 0ns - RowsProduced: 1.298K (1298) - SerializeDataTime: 200.317us - SerializeKeyTime: 0ns - SerializeResultTime: 280.586us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.780us - ExecTime: 3.735ms - InitProbeSideTime: 623.157us - JoinFilterTimer: 1.51us - MemoryUsage: - PeakMemoryUsage: 228.00 KB - ProbeKeyArena: 228.00 KB - OpenTime: 19.963us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.252us - ProbeFindNextTime: 0ns - ProbeRows: 11.362K (11362) - ProbeTime: 2.96ms - ProbeWhenBuildSideOutputTime: 42.782us - ProbeWhenProbeSideOutputTime: 526.665us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 664.144us - ProjectionTime: 1.561ms - RowsProduced: 7.146K (7146) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.99us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 189.337us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.74 MB - MemoryUsage: - Blocks: 1.74 MB - PeakMemoryUsage: 1.74 MB - OpenTime: 26.246us - ProjectionTime: 0ns - RowsProduced: 11.362K (11362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s518ms PipelineXTask (index=12):(Active: 7.748ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.336ms - CloseTime: 205.424us - GetBlockTime: 6.900ms - OpenTime: 11.742us - PrepareTime: 188.391us - SinkTime: 354.272us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.532ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.150ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.556us - CompressTime: 0ns - ExecTime: 448.761us - InputRows: 1.304K (1304) - LocalBytesSent: 110.17 KB - LocalSendTime: 65.771us - LocalSentRows: 1.304K (1304) - MemoryUsage: - PeakMemoryUsage: 161.00 KB - MergeBlockTime: 0ns - OpenTime: 67.801us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.304K (1304) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 167.89us - SplitBlockHashComputeTime: 31.975us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.30ms - CloseTime: 144.400us - DeserializeAndMergeTime: 0ns - ExecTime: 2.553ms - ExprTime: 11.81us - GetResultsTime: 325.171us - HashTableComputeTime: 869.885us - HashTableEmplaceTime: 628.356us - HashTableInputCount: 7.48K (7480) - HashTableIterateTime: 9.63us - HashTableSize: 1.304K (1304) - InsertKeysToColumnTime: 63.943us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 18.919us - ProjectionTime: 0ns - RowsProduced: 1.304K (1304) - SerializeDataTime: 230.20us - SerializeKeyTime: 0ns - SerializeResultTime: 328.928us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 13.370us - ExecTime: 4.202ms - InitProbeSideTime: 721.422us - JoinFilterTimer: 1.267us - MemoryUsage: - PeakMemoryUsage: 252.00 KB - ProbeKeyArena: 252.00 KB - OpenTime: 16.82us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.124us - ProbeFindNextTime: 0ns - ProbeRows: 11.747K (11747) - ProbeTime: 2.274ms - ProbeWhenBuildSideOutputTime: 49.856us - ProbeWhenProbeSideOutputTime: 558.999us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 714.590us - ProjectionTime: 1.852ms - RowsProduced: 7.48K (7480) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.124us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 255.977us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.92 MB - MemoryUsage: - Blocks: 1.92 MB - PeakMemoryUsage: 1.92 MB - OpenTime: 19.275us - ProjectionTime: 0ns - RowsProduced: 11.747K (11747) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s524ms PipelineXTask (index=14):(Active: 12.311ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.737ms - CloseTime: 311.131us - GetBlockTime: 10.730ms - OpenTime: 28.542us - PrepareTime: 214.764us - SinkTime: 882.85us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.944ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.92ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.80us - CompressTime: 0ns - ExecTime: 993.764us - InputRows: 1.345K (1345) - LocalBytesSent: 112.99 KB - LocalSendTime: 141.83us - LocalSentRows: 1.345K (1345) - MemoryUsage: - PeakMemoryUsage: 163.75 KB - MergeBlockTime: 0ns - OpenTime: 87.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.345K (1345) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 460.457us - SplitBlockHashComputeTime: 59.798us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.250ms - CloseTime: 241.154us - DeserializeAndMergeTime: 0ns - ExecTime: 4.178ms - ExprTime: 22.797us - GetResultsTime: 583.997us - HashTableComputeTime: 1.430ms - HashTableEmplaceTime: 1.52ms - HashTableInputCount: 7.361K (7361) - HashTableIterateTime: 16.639us - HashTableSize: 1.345K (1345) - InsertKeysToColumnTime: 125.609us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 25.617us - ProjectionTime: 0ns - RowsProduced: 1.345K (1345) - SerializeDataTime: 399.484us - SerializeKeyTime: 0ns - SerializeResultTime: 587.537us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 16.910us - ExecTime: 6.264ms - InitProbeSideTime: 852.660us - JoinFilterTimer: 2.472us - MemoryUsage: - PeakMemoryUsage: 88.00 KB - ProbeKeyArena: 88.00 KB - OpenTime: 25.721us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.8us - ProbeFindNextTime: 0ns - ProbeRows: 11.154K (11154) - ProbeTime: 3.153ms - ProbeWhenBuildSideOutputTime: 95.132us - ProbeWhenProbeSideOutputTime: 795.19us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.3ms - ProjectionTime: 2.996ms - RowsProduced: 7.361K (7361) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 21.225us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 475.497us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.68 MB - MemoryUsage: - Blocks: 1.68 MB - PeakMemoryUsage: 1.68 MB - OpenTime: 22.932us - ProjectionTime: 0ns - RowsProduced: 11.154K (11154) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s524ms PipelineXTask (index=16):(Active: 9.8ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.617ms - CloseTime: 185.722us - GetBlockTime: 8.84ms - OpenTime: 7.377us - PrepareTime: 191.651us - SinkTime: 463.86us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.42ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.847us - CompressTime: 0ns - ExecTime: 547.210us - InputRows: 1.39K (1390) - LocalBytesSent: 117.12 KB - LocalSendTime: 112.110us - LocalSentRows: 1.39K (1390) - MemoryUsage: - PeakMemoryUsage: 184.75 KB - MergeBlockTime: 0ns - OpenTime: 69.288us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.39K (1390) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 197.287us - SplitBlockHashComputeTime: 34.243us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.450ms - CloseTime: 138.348us - DeserializeAndMergeTime: 0ns - ExecTime: 3.61ms - ExprTime: 18.48us - GetResultsTime: 402.961us - HashTableComputeTime: 1.88ms - HashTableEmplaceTime: 814.108us - HashTableInputCount: 8.165K (8165) - HashTableIterateTime: 17.17us - HashTableSize: 1.39K (1390) - InsertKeysToColumnTime: 73.800us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 25.840us - ProjectionTime: 0ns - RowsProduced: 1.39K (1390) - SerializeDataTime: 290.553us - SerializeKeyTime: 0ns - SerializeResultTime: 406.388us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 13.678us - ExecTime: 4.847ms - InitProbeSideTime: 791.100us - JoinFilterTimer: 1.710us - MemoryUsage: - PeakMemoryUsage: 88.00 KB - ProbeKeyArena: 88.00 KB - OpenTime: 21.873us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.288us - ProbeFindNextTime: 0ns - ProbeRows: 11.863K (11863) - ProbeTime: 2.638ms - ProbeWhenBuildSideOutputTime: 79.824us - ProbeWhenProbeSideOutputTime: 747.706us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 755.175us - ProjectionTime: 2.119ms - RowsProduced: 8.165K (8165) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.248us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 272.157us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.82 MB - MemoryUsage: - Blocks: 1.82 MB - PeakMemoryUsage: 1.82 MB - OpenTime: 13.584us - ProjectionTime: 0ns - RowsProduced: 11.863K (11863) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s524ms PipelineXTask (index=18):(Active: 32.380ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.974ms - CloseTime: 166.833us - GetBlockTime: 31.451ms - OpenTime: 6.663us - PrepareTime: 226.17us - SinkTime: 446.593us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.184ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 89.577ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.158us - CompressTime: 0ns - ExecTime: 531.131us - InputRows: 1.386K (1386) - LocalBytesSent: 115.71 KB - LocalSendTime: 88.634us - LocalSentRows: 1.386K (1386) - MemoryUsage: - PeakMemoryUsage: 174.75 KB - MergeBlockTime: 0ns - OpenTime: 70.403us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.386K (1386) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 202.3us - SplitBlockHashComputeTime: 46.725us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.198ms - CloseTime: 113.622us - DeserializeAndMergeTime: 0ns - ExecTime: 2.755ms - ExprTime: 13.71us - GetResultsTime: 354.3us - HashTableComputeTime: 956.753us - HashTableEmplaceTime: 710.809us - HashTableInputCount: 7.563K (7563) - HashTableIterateTime: 15.290us - HashTableSize: 1.386K (1386) - InsertKeysToColumnTime: 69.357us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 47.418us - ProjectionTime: 0ns - RowsProduced: 1.386K (1386) - SerializeDataTime: 246.754us - SerializeKeyTime: 0ns - SerializeResultTime: 357.533us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.853us - ExecTime: 28.520ms - InitProbeSideTime: 805.86us - JoinFilterTimer: 1.362us - MemoryUsage: - PeakMemoryUsage: 84.00 KB - ProbeKeyArena: 84.00 KB - OpenTime: 18.28us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.451us - ProbeFindNextTime: 0ns - ProbeRows: 11.833K (11833) - ProbeTime: 2.519ms - ProbeWhenBuildSideOutputTime: 61.914us - ProbeWhenProbeSideOutputTime: 607.623us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 766.908us - ProjectionTime: 25.913ms - RowsProduced: 7.563K (7563) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.664us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 283.765us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.96 MB - MemoryUsage: - Blocks: 1.96 MB - PeakMemoryUsage: 1.96 MB - OpenTime: 17.868us - ProjectionTime: 0ns - RowsProduced: 11.833K (11833) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s522ms PipelineXTask (index=20):(Active: 11.794ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.68ms - CloseTime: 448.215us - GetBlockTime: 10.359ms - OpenTime: 11.664us - PrepareTime: 258.255us - SinkTime: 563.836us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.322ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.565ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.555us - CompressTime: 0ns - ExecTime: 689.561us - InputRows: 1.352K (1352) - LocalBytesSent: 113.17 KB - LocalSendTime: 104.64us - LocalSentRows: 1.352K (1352) - MemoryUsage: - PeakMemoryUsage: 157.00 KB - MergeBlockTime: 0ns - OpenTime: 110.100us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.352K (1352) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 279.674us - SplitBlockHashComputeTime: 43.77us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.365ms - CloseTime: 377.684us - DeserializeAndMergeTime: 0ns - ExecTime: 4.460ms - ExprTime: 33.785us - GetResultsTime: 624.433us - HashTableComputeTime: 1.464ms - HashTableEmplaceTime: 1.83ms - HashTableInputCount: 7.367K (7367) - HashTableIterateTime: 9.213us - HashTableSize: 1.352K (1352) - InsertKeysToColumnTime: 130.410us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 37.342us - ProjectionTime: 0ns - RowsProduced: 1.352K (1352) - SerializeDataTime: 459.840us - SerializeKeyTime: 0ns - SerializeResultTime: 627.40us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 36.151us - ExecTime: 5.938ms - InitProbeSideTime: 975.14us - JoinFilterTimer: 2.19us - MemoryUsage: - PeakMemoryUsage: 216.00 KB - ProbeKeyArena: 216.00 KB - OpenTime: 35.550us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.852us - ProbeFindNextTime: 0ns - ProbeRows: 11.674K (11674) - ProbeTime: 3.260ms - ProbeWhenBuildSideOutputTime: 82.793us - ProbeWhenProbeSideOutputTime: 861.547us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 956.604us - ProjectionTime: 2.520ms - RowsProduced: 7.367K (7367) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.942us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 261.49us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.80 MB - MemoryUsage: - Blocks: 574.00 KB - PeakMemoryUsage: 574.00 KB - OpenTime: 16.777us - ProjectionTime: 0ns - RowsProduced: 11.674K (11674) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s551ms PipelineXTask (index=22):(Active: 49.5ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 48.565ms - CloseTime: 207.565us - GetBlockTime: 48.19ms - OpenTime: 6.562us - PrepareTime: 218.970us - SinkTime: 459.29us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.901ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.875us - CompressTime: 0ns - ExecTime: 562.526us - InputRows: 1.377K (1377) - LocalBytesSent: 116.33 KB - LocalSendTime: 97.347us - LocalSentRows: 1.377K (1377) - MemoryUsage: - PeakMemoryUsage: 165.00 KB - MergeBlockTime: 0ns - OpenTime: 86.519us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.377K (1377) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 180.225us - SplitBlockHashComputeTime: 37.538us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 32.785ms - CloseTime: 138.504us - DeserializeAndMergeTime: 0ns - ExecTime: 33.302ms - ExprTime: 20.825us - GetResultsTime: 300.556us - HashTableComputeTime: 1.332ms - HashTableEmplaceTime: 930.714us - HashTableInputCount: 8.122K (8122) - HashTableIterateTime: 9.45us - HashTableSize: 1.377K (1377) - InsertKeysToColumnTime: 56.637us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 31.873us - ProjectionTime: 0ns - RowsProduced: 1.377K (1377) - SerializeDataTime: 212.714us - SerializeKeyTime: 0ns - SerializeResultTime: 303.580us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 31.252us - ExecTime: 14.560ms - InitProbeSideTime: 1.82ms - JoinFilterTimer: 1.590us - MemoryUsage: - PeakMemoryUsage: 228.00 KB - ProbeKeyArena: 228.00 KB - OpenTime: 36.710us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.841us - ProbeFindNextTime: 0ns - ProbeRows: 12.094K (12094) - ProbeTime: 11.932ms - ProbeWhenBuildSideOutputTime: 76.141us - ProbeWhenProbeSideOutputTime: 9.578ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 868.469us - ProjectionTime: 2.502ms - RowsProduced: 8.122K (8122) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 14.425us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 267.64us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.03 MB - MemoryUsage: - Blocks: 2.03 MB - PeakMemoryUsage: 2.03 MB - OpenTime: 14.941us - ProjectionTime: 0ns - RowsProduced: 12.094K (12094) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s522ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 17.740ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 17.623ms - CloseTime: 26.542us - GetBlockTime: 161.913us - OpenTime: 3.598us - PrepareTime: 78.601us - SinkTime: 17.343ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.434ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.829ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.201us - BuildRows: 31.23K (31230) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.548ms - BuildTableInsertTime: 5.710ms - BuildTableTime: 5.748ms - CloseTime: 0ns - ExecTime: 17.370ms - InputRows: 31.229K (31229) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 378.00 KB - PeakMemoryUsage: 4.45 MB - OpenTime: 35.627us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.291ms - RuntimeFilterComputeTime: 2.203ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 21.208us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 180.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 456.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 14.534us - ProjectionTime: 0ns - RowsProduced: 31.229K (31229) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 299.243ms PipelineXTask (index=3):(Active: 23.378ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 23.229ms - CloseTime: 12.597us - GetBlockTime: 155.981us - OpenTime: 2.411us - PrepareTime: 126.86us - SinkTime: 22.968ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.312ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.654ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.626us - BuildRows: 31.177K (31177) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.654ms - BuildTableInsertTime: 5.251ms - BuildTableTime: 5.300ms - CloseTime: 0ns - ExecTime: 23.30ms - InputRows: 31.176K (31176) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.79 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 69.889us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 130.469us - RuntimeFilterComputeTime: 12.817ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 9.469us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 172.922us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 456.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 19.918us - ProjectionTime: 0ns - RowsProduced: 31.176K (31176) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 315.457ms PipelineXTask (index=5):(Active: 31.439ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 31.351ms - CloseTime: 12.303us - GetBlockTime: 155.424us - OpenTime: 3.264us - PrepareTime: 66.994us - SinkTime: 31.91ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.211ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.674ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.647us - BuildRows: 31.111K (31111) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.957ms - BuildTableInsertTime: 4.262ms - BuildTableTime: 4.306ms - CloseTime: 0ns - ExecTime: 31.104ms - InputRows: 31.11K (31110) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.02 MB - HashTable: 377.53 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 19.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.389ms - RuntimeFilterComputeTime: 1.882ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 9.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 170.753us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.18 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 16.638us - ProjectionTime: 0ns - RowsProduced: 31.11K (31110) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 300.70ms PipelineXTask (index=7):(Active: 25.465ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 25.374ms - CloseTime: 18.144us - GetBlockTime: 189.974us - OpenTime: 1.908us - PrepareTime: 65.909us - SinkTime: 25.67ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.408ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.800ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.871us - BuildRows: 31.181K (31181) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.724ms - BuildTableInsertTime: 3.855ms - BuildTableTime: 3.893ms - CloseTime: 0ns - ExecTime: 25.83ms - InputRows: 31.18K (31180) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.80 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 22.729us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 65.281us - RuntimeFilterComputeTime: 15.595ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.930us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 201.381us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.32 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 10.764us - ProjectionTime: 0ns - RowsProduced: 31.18K (31180) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 293.83ms PipelineXTask (index=9):(Active: 105.458ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 105.348ms - CloseTime: 30.890us - GetBlockTime: 161.932us - OpenTime: 1.706us - PrepareTime: 72.727us - SinkTime: 105.83ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.876ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.944ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.847us - BuildRows: 31.171K (31171) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.276ms - BuildTableInsertTime: 5.453ms - BuildTableTime: 5.526ms - CloseTime: 0ns - ExecTime: 105.99ms - InputRows: 31.17K (31170) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.77 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 22.865us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 26.997ms - RuntimeFilterComputeTime: 1.848ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 26.904us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 196.164us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.08 MB - MemoryUsage: - Blocks: 456.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 17.675us - ProjectionTime: 0ns - RowsProduced: 31.17K (31170) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 233.128ms PipelineXTask (index=11):(Active: 44.832ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 44.729ms - CloseTime: 16.227us - GetBlockTime: 182.511us - OpenTime: 2.622us - PrepareTime: 72.81us - SinkTime: 44.441ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.307ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.646ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.406us - BuildRows: 30.999K (30999) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 37.872ms - BuildTableInsertTime: 3.961ms - BuildTableTime: 3.994ms - CloseTime: 0ns - ExecTime: 44.482ms - InputRows: 30.998K (30998) - MemoryUsage: - BuildBlocks: 2.04 MB - BuildKeyArena: 2.02 MB - HashTable: 377.09 KB - PeakMemoryUsage: 4.42 MB - OpenTime: 48.804us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 127.816us - RuntimeFilterComputeTime: 1.945ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.804us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 190.499us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.24 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 7.804us - ProjectionTime: 0ns - RowsProduced: 30.998K (30998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 255.829ms PipelineXTask (index=13):(Active: 33.17ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 32.916ms - CloseTime: 11.282us - GetBlockTime: 153.358us - OpenTime: 4.192us - PrepareTime: 78.595us - SinkTime: 32.666ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.980ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.532ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.103us - BuildRows: 31.005K (31005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.167ms - BuildTableInsertTime: 4.361ms - BuildTableTime: 4.399ms - CloseTime: 0ns - ExecTime: 32.698ms - InputRows: 31.004K (31004) - MemoryUsage: - BuildBlocks: 2.04 MB - BuildKeyArena: 2.02 MB - HashTable: 377.12 KB - PeakMemoryUsage: 4.42 MB - OpenTime: 38.268us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 128.600us - RuntimeFilterComputeTime: 2.413ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.935us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 165.504us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.12 MB - MemoryUsage: - Blocks: 784.00 KB - PeakMemoryUsage: 784.00 KB - OpenTime: 16.686us - ProjectionTime: 0ns - RowsProduced: 31.004K (31004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 295.257ms PipelineXTask (index=15):(Active: 44.16ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 43.927ms - CloseTime: 21.784us - GetBlockTime: 184.692us - OpenTime: 2.277us - PrepareTime: 58.871us - SinkTime: 43.629ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.916ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 127.119ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.804us - BuildRows: 31.514K (31514) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.542ms - BuildTableInsertTime: 2.744ms - BuildTableTime: 2.808ms - CloseTime: 0ns - ExecTime: 43.650ms - InputRows: 31.513K (31513) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 2.05 MB - HashTable: 379.11 KB - PeakMemoryUsage: 4.49 MB - OpenTime: 29.676us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 115.80us - RuntimeFilterComputeTime: 1.933ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 16.716us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 194.932us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 14.99us - ProjectionTime: 0ns - RowsProduced: 31.513K (31513) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 247.723ms PipelineXTask (index=17):(Active: 76.252ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 76.155ms - CloseTime: 20.828us - GetBlockTime: 26.129ms - OpenTime: 2.636us - PrepareTime: 68.903us - SinkTime: 49.903ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.454ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.269ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.816us - BuildRows: 30.722K (30722) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.390ms - BuildTableInsertTime: 16.377ms - BuildTableTime: 16.415ms - CloseTime: 0ns - ExecTime: 49.912ms - InputRows: 30.721K (30721) - MemoryUsage: - BuildBlocks: 2.02 MB - BuildKeyArena: 2.00 MB - HashTable: 376.01 KB - PeakMemoryUsage: 4.38 MB - OpenTime: 14.128us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 956.980us - RuntimeFilterComputeTime: 1.968ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 16.718us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.144ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.74 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 10.602us - ProjectionTime: 0ns - RowsProduced: 30.721K (30721) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 270.470ms PipelineXTask (index=19):(Active: 76.991ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 76.901ms - CloseTime: 12.338us - GetBlockTime: 151.567us - OpenTime: 2.993us - PrepareTime: 67.459us - SinkTime: 76.647ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.709ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.545ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.160us - BuildRows: 31.213K (31213) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.221ms - BuildTableInsertTime: 4.506ms - BuildTableTime: 4.559ms - CloseTime: 0ns - ExecTime: 76.661ms - InputRows: 31.212K (31212) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.93 KB - PeakMemoryUsage: 4.45 MB - OpenTime: 22.81us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 64.465ms - RuntimeFilterComputeTime: 1.881ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 9.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 156.867us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 8.207us - ProjectionTime: 0ns - RowsProduced: 31.212K (31212) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 294.6ms PipelineXTask (index=21):(Active: 11.509ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 11.423ms - CloseTime: 16.19us - GetBlockTime: 138.949us - OpenTime: 3.237us - PrepareTime: 61.57us - SinkTime: 11.197ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.450ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.637ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.982us - BuildRows: 31.184K (31184) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.93ms - BuildTableInsertTime: 3.797ms - BuildTableTime: 3.832ms - CloseTime: 0ns - ExecTime: 11.217ms - InputRows: 31.183K (31183) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.82 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 27.172us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 127.372us - RuntimeFilterComputeTime: 1.947ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 11.845us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.565us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.24 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 912.00 KB - OpenTime: 15.896us - ProjectionTime: 0ns - RowsProduced: 31.183K (31183) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 299.598ms PipelineXTask (index=23):(Active: 11.257ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 11.157ms - CloseTime: 12.347us - GetBlockTime: 157.883us - OpenTime: 2.929us - PrepareTime: 78.346us - SinkTime: 10.890ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.805ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.216ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.351us - BuildRows: 31.441K (31441) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.885ms - BuildTableInsertTime: 3.433ms - BuildTableTime: 3.468ms - CloseTime: 0ns - ExecTime: 10.921ms - InputRows: 31.44K (31440) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 2.04 MB - HashTable: 378.82 KB - PeakMemoryUsage: 4.48 MB - OpenTime: 37.416us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 130.279us - RuntimeFilterComputeTime: 2.28ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 9.492us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 176.212us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.10 MB - MemoryUsage: - Blocks: 752.00 KB - PeakMemoryUsage: 752.00 KB - OpenTime: 21.270us - ProjectionTime: 0ns - RowsProduced: 31.44K (31440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 300.743ms Fragment 66: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 8.81ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.813ms - CloseTime: 66.903us - GetBlockTime: 3.522ms - OpenTime: 13.781us - PrepareTime: 177.3us - SinkTime: 4.146ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.992ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.478ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.248us - CompressTime: 0ns - ExecTime: 4.226ms - InputRows: 14.423K (14423) - LocalBytesSent: 1.61 MB - LocalSendTime: 173.888us - LocalSentRows: 14.423K (14423) - MemoryUsage: - PeakMemoryUsage: 2.63 MB - MergeBlockTime: 0ns - OpenTime: 71.32us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 14.423K (14423) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.866ms - SplitBlockHashComputeTime: 722.578us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 14.173us - ExecTime: 2.599ms - InitProbeSideTime: 68.793us - JoinFilterTimer: 797ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.617us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.351us - ProbeFindNextTime: 0ns - ProbeRows: 1.696K (1696) - ProbeTime: 2.82ms - ProbeWhenBuildSideOutputTime: 314.568us - ProbeWhenProbeSideOutputTime: 1.236ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 271.667us - ProjectionTime: 460.103us - RowsProduced: 14.423K (14423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 23.976us - ExecTime: 859.435us - InitProbeSideTime: 98.79us - JoinFilterTimer: 708ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.301us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.641us - ProbeFindNextTime: 0ns - ProbeRows: 1.696K (1696) - ProbeTime: 657.420us - ProbeWhenBuildSideOutputTime: 20.166us - ProbeWhenProbeSideOutputTime: 120.29us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 268.741us - ProjectionTime: 122.226us - RowsProduced: 1.696K (1696) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 10.757us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.230us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 214.75 KB - MemoryUsage: - Blocks: 103.00 KB - PeakMemoryUsage: 104.53 KB - OpenTime: 25.493us - ProjectionTime: 0ns - RowsProduced: 1.696K (1696) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s485ms PipelineXTask (index=3):(Active: 6.423ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.209ms - CloseTime: 64.742us - GetBlockTime: 2.780ms - OpenTime: 10.201us - PrepareTime: 133.495us - SinkTime: 3.320ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.328ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.295ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.881us - CompressTime: 0ns - ExecTime: 3.394ms - InputRows: 11.301K (11301) - LocalBytesSent: 1.26 MB - LocalSendTime: 157.601us - LocalSentRows: 11.301K (11301) - MemoryUsage: - PeakMemoryUsage: 1.64 MB - MergeBlockTime: 0ns - OpenTime: 63.150us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.301K (11301) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.272ms - SplitBlockHashComputeTime: 579.403us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 22.848us - ExecTime: 2.65ms - InitProbeSideTime: 39.456us - JoinFilterTimer: 896ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.478us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.891us - ProbeFindNextTime: 0ns - ProbeRows: 1.349K (1349) - ProbeTime: 1.523ms - ProbeWhenBuildSideOutputTime: 267.585us - ProbeWhenProbeSideOutputTime: 806.371us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 246.590us - ProjectionTime: 477.14us - RowsProduced: 11.301K (11301) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.34us - ExecTime: 661.282us - InitProbeSideTime: 69.237us - JoinFilterTimer: 481ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.601us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.230us - ProbeFindNextTime: 0ns - ProbeRows: 1.349K (1349) - ProbeTime: 511.470us - ProbeWhenBuildSideOutputTime: 24.790us - ProbeWhenProbeSideOutputTime: 119.248us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 191.230us - ProjectionTime: 97.588us - RowsProduced: 1.349K (1349) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 12.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 91.295us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 187.50 KB - MemoryUsage: - Blocks: 122.75 KB - PeakMemoryUsage: 124.28 KB - OpenTime: 9.139us - ProjectionTime: 0ns - RowsProduced: 1.349K (1349) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s483ms PipelineXTask (index=6):(Active: 6.831ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.583ms - CloseTime: 59.750us - GetBlockTime: 2.588ms - OpenTime: 14.473us - PrepareTime: 164.117us - SinkTime: 3.862ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.712ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.186ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.285us - CompressTime: 0ns - ExecTime: 3.946ms - InputRows: 11.869K (11869) - LocalBytesSent: 1.32 MB - LocalSendTime: 134.111us - LocalSentRows: 11.869K (11869) - MemoryUsage: - PeakMemoryUsage: 1.96 MB - MergeBlockTime: 0ns - OpenTime: 71.132us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.869K (11869) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.741ms - SplitBlockHashComputeTime: 621.561us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 13.0us - ExecTime: 1.893ms - InitProbeSideTime: 46.519us - JoinFilterTimer: 585ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.438us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.229us - ProbeFindNextTime: 0ns - ProbeRows: 1.348K (1348) - ProbeTime: 1.480ms - ProbeWhenBuildSideOutputTime: 301.73us - ProbeWhenProbeSideOutputTime: 728.781us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 233.852us - ProjectionTime: 368.362us - RowsProduced: 11.869K (11869) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.760us - ExecTime: 645.850us - InitProbeSideTime: 68.131us - JoinFilterTimer: 490ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.882us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.847us - ProbeFindNextTime: 0ns - ProbeRows: 1.348K (1348) - ProbeTime: 501.623us - ProbeWhenBuildSideOutputTime: 15.616us - ProbeWhenProbeSideOutputTime: 107.217us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 207.506us - ProjectionTime: 85.160us - RowsProduced: 1.348K (1348) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 12.924us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.805us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 184.25 KB - MemoryUsage: - Blocks: 76.00 KB - PeakMemoryUsage: 77.53 KB - OpenTime: 16.351us - ProjectionTime: 0ns - RowsProduced: 1.348K (1348) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s481ms PipelineXTask (index=9):(Active: 7.415ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.171ms - CloseTime: 62.278us - GetBlockTime: 3.240ms - OpenTime: 9.428us - PrepareTime: 166.90us - SinkTime: 3.803ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.336ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.150ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.194us - CompressTime: 0ns - ExecTime: 3.892ms - InputRows: 11.038K (11038) - LocalBytesSent: 1.23 MB - LocalSendTime: 146.222us - LocalSentRows: 11.038K (11038) - MemoryUsage: - PeakMemoryUsage: 1.70 MB - MergeBlockTime: 0ns - OpenTime: 80.365us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.038K (11038) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.589ms - SplitBlockHashComputeTime: 620.666us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 18.960us - ExecTime: 2.392ms - InitProbeSideTime: 55.785us - JoinFilterTimer: 700ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.540us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.241us - ProbeFindNextTime: 0ns - ProbeRows: 1.471K (1471) - ProbeTime: 1.944ms - ProbeWhenBuildSideOutputTime: 417.469us - ProbeWhenProbeSideOutputTime: 1.40ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 229.325us - ProjectionTime: 390.861us - RowsProduced: 11.038K (11038) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 14.648us - ExecTime: 778.432us - InitProbeSideTime: 88.261us - JoinFilterTimer: 616ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.885us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.216us - ProbeFindNextTime: 0ns - ProbeRows: 1.471K (1471) - ProbeTime: 598.748us - ProbeWhenBuildSideOutputTime: 25.208us - ProbeWhenProbeSideOutputTime: 98.670us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 253.419us - ProjectionTime: 124.98us - RowsProduced: 1.471K (1471) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 10.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.442us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 191.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 79.53 KB - OpenTime: 17.588us - ProjectionTime: 0ns - RowsProduced: 1.471K (1471) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s496ms PipelineXTask (index=12):(Active: 25.682ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.432ms - CloseTime: 76.393us - GetBlockTime: 7.733ms - OpenTime: 7.410us - PrepareTime: 160.238us - SinkTime: 17.567ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.45ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.878ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.205us - CompressTime: 0ns - ExecTime: 17.653ms - InputRows: 10.799K (10799) - LocalBytesSent: 1.20 MB - LocalSendTime: 269.985us - LocalSentRows: 10.799K (10799) - MemoryUsage: - PeakMemoryUsage: 1.70 MB - MergeBlockTime: 0ns - OpenTime: 71.439us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 10.799K (10799) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.55ms - SplitBlockHashComputeTime: 13.727ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 10.343us - ExecTime: 6.659ms - InitProbeSideTime: 61.120us - JoinFilterTimer: 1.265us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.143us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.733us - ProbeFindNextTime: 0ns - ProbeRows: 1.359K (1359) - ProbeTime: 2.488ms - ProbeWhenBuildSideOutputTime: 506.682us - ProbeWhenProbeSideOutputTime: 1.392ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 289.481us - ProjectionTime: 4.120ms - RowsProduced: 10.799K (10799) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 19.743us - ExecTime: 969.644us - InitProbeSideTime: 104.185us - JoinFilterTimer: 1.22us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.763us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.926us - ProbeFindNextTime: 0ns - ProbeRows: 1.359K (1359) - ProbeTime: 769.128us - ProbeWhenBuildSideOutputTime: 39.616us - ProbeWhenProbeSideOutputTime: 119.863us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 341.984us - ProjectionTime: 124.60us - RowsProduced: 1.359K (1359) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 16.542us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.902us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 185.50 KB - MemoryUsage: - Blocks: 76.00 KB - PeakMemoryUsage: 77.53 KB - OpenTime: 16.603us - ProjectionTime: 0ns - RowsProduced: 1.359K (1359) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s477ms PipelineXTask (index=15):(Active: 6.958ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 6.696ms - CloseTime: 64.261us - GetBlockTime: 2.784ms - OpenTime: 10.443us - PrepareTime: 181.140us - SinkTime: 3.789ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.877ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.123ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.672us - CompressTime: 0ns - ExecTime: 3.881ms - InputRows: 12.039K (12039) - LocalBytesSent: 1.34 MB - LocalSendTime: 134.179us - LocalSentRows: 12.039K (12039) - MemoryUsage: - PeakMemoryUsage: 1.88 MB - MergeBlockTime: 0ns - OpenTime: 83.381us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 12.039K (12039) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.623ms - SplitBlockHashComputeTime: 625.769us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 17.828us - ExecTime: 1.992ms - InitProbeSideTime: 40.237us - JoinFilterTimer: 524ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 22.503us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.789us - ProbeFindNextTime: 0ns - ProbeRows: 1.412K (1412) - ProbeTime: 1.532ms - ProbeWhenBuildSideOutputTime: 303.344us - ProbeWhenProbeSideOutputTime: 775.330us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 232.810us - ProjectionTime: 390.876us - RowsProduced: 12.039K (12039) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 14.483us - ExecTime: 735.787us - InitProbeSideTime: 98.541us - JoinFilterTimer: 663ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.131us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.947us - ProbeFindNextTime: 0ns - ProbeRows: 1.412K (1412) - ProbeTime: 572.918us - ProbeWhenBuildSideOutputTime: 23.416us - ProbeWhenProbeSideOutputTime: 103.76us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 195.376us - ProjectionTime: 95.346us - RowsProduced: 1.412K (1412) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 14.35us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.673us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 188.25 KB - MemoryUsage: - Blocks: 74.00 KB - PeakMemoryUsage: 75.53 KB - OpenTime: 19.164us - ProjectionTime: 0ns - RowsProduced: 1.412K (1412) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s466ms PipelineXTask (index=18):(Active: 7.41ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.786ms - CloseTime: 39.719us - GetBlockTime: 2.911ms - OpenTime: 10.765us - PrepareTime: 198.673us - SinkTime: 3.744ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.981ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.434ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.897us - CompressTime: 0ns - ExecTime: 3.821ms - InputRows: 11.2K (11200) - LocalBytesSent: 1.25 MB - LocalSendTime: 105.847us - LocalSentRows: 11.2K (11200) - MemoryUsage: - PeakMemoryUsage: 1.77 MB - MergeBlockTime: 0ns - OpenTime: 69.589us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.2K (11200) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.628ms - SplitBlockHashComputeTime: 617.992us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 5.913us - ExecTime: 2.77ms - InitProbeSideTime: 55.48us - JoinFilterTimer: 756ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.378us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.540us - ProbeFindNextTime: 0ns - ProbeRows: 1.358K (1358) - ProbeTime: 1.670ms - ProbeWhenBuildSideOutputTime: 336.59us - ProbeWhenProbeSideOutputTime: 900.820us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 233.974us - ProjectionTime: 371.978us - RowsProduced: 11.2K (11200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 10.776us - ExecTime: 776.954us - InitProbeSideTime: 91.846us - JoinFilterTimer: 671ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 34.105us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.707us - ProbeFindNextTime: 0ns - ProbeRows: 1.358K (1358) - ProbeTime: 605.427us - ProbeWhenBuildSideOutputTime: 26.844us - ProbeWhenProbeSideOutputTime: 110.896us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 255.531us - ProjectionTime: 101.439us - RowsProduced: 1.358K (1358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 7.953us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 98.655us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 189.25 KB - MemoryUsage: - Blocks: 89.00 KB - PeakMemoryUsage: 90.53 KB - OpenTime: 16.745us - ProjectionTime: 0ns - RowsProduced: 1.358K (1358) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s483ms PipelineXTask (index=21):(Active: 5.708ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.477ms - CloseTime: 71.484us - GetBlockTime: 2.383ms - OpenTime: 6.301us - PrepareTime: 146.135us - SinkTime: 3.14ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.593ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.106ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.849us - CompressTime: 0ns - ExecTime: 3.88ms - InputRows: 10.495K (10495) - LocalBytesSent: 1.17 MB - LocalSendTime: 110.665us - LocalSentRows: 10.495K (10495) - MemoryUsage: - PeakMemoryUsage: 1.54 MB - MergeBlockTime: 0ns - OpenTime: 65.490us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 10.495K (10495) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.14ms - SplitBlockHashComputeTime: 538.105us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 36.402us - ExecTime: 1.732ms - InitProbeSideTime: 41.939us - JoinFilterTimer: 546ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.171us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.798us - ProbeFindNextTime: 0ns - ProbeRows: 1.324K (1324) - ProbeTime: 1.369ms - ProbeWhenBuildSideOutputTime: 285.957us - ProbeWhenProbeSideOutputTime: 723.736us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 204.669us - ProjectionTime: 295.843us - RowsProduced: 10.495K (10495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 12.266us - ExecTime: 637.618us - InitProbeSideTime: 71.281us - JoinFilterTimer: 431ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.561us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.275us - ProbeFindNextTime: 0ns - ProbeRows: 1.324K (1324) - ProbeTime: 454.263us - ProbeWhenBuildSideOutputTime: 21.843us - ProbeWhenProbeSideOutputTime: 99.640us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 176.558us - ProjectionTime: 142.679us - RowsProduced: 1.324K (1324) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.424us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.474us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 196.00 KB - MemoryUsage: - Blocks: 134.50 KB - PeakMemoryUsage: 136.03 KB - OpenTime: 15.381us - ProjectionTime: 0ns - RowsProduced: 1.324K (1324) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s473ms PipelineXTask (index=24):(Active: 6.250ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.10ms - CloseTime: 52.892us - GetBlockTime: 2.618ms - OpenTime: 8.579us - PrepareTime: 171.847us - SinkTime: 3.288ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.180ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.750ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.263us - CompressTime: 0ns - ExecTime: 3.365ms - InputRows: 11.728K (11728) - LocalBytesSent: 1.31 MB - LocalSendTime: 125.293us - LocalSentRows: 11.728K (11728) - MemoryUsage: - PeakMemoryUsage: 1.81 MB - MergeBlockTime: 0ns - OpenTime: 67.277us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.728K (11728) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.214ms - SplitBlockHashComputeTime: 605.603us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 7.74us - ExecTime: 1.854ms - InitProbeSideTime: 39.501us - JoinFilterTimer: 702ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.867us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.914us - ProbeFindNextTime: 0ns - ProbeRows: 1.334K (1334) - ProbeTime: 1.439ms - ProbeWhenBuildSideOutputTime: 289.76us - ProbeWhenProbeSideOutputTime: 766.240us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 226.431us - ProjectionTime: 373.900us - RowsProduced: 11.728K (11728) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 17.111us - ExecTime: 710.694us - InitProbeSideTime: 103.593us - JoinFilterTimer: 685ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.817us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.350us - ProbeFindNextTime: 0ns - ProbeRows: 1.334K (1334) - ProbeTime: 554.604us - ProbeWhenBuildSideOutputTime: 22.388us - ProbeWhenProbeSideOutputTime: 98.430us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 232.472us - ProjectionTime: 83.417us - RowsProduced: 1.334K (1334) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 10.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.132us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 185.00 KB - MemoryUsage: - Blocks: 76.00 KB - PeakMemoryUsage: 77.53 KB - OpenTime: 31.264us - ProjectionTime: 0ns - RowsProduced: 1.334K (1334) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s481ms PipelineXTask (index=27):(Active: 7.331ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.97ms - CloseTime: 44.762us - GetBlockTime: 2.972ms - OpenTime: 7.652us - PrepareTime: 173.880us - SinkTime: 4.20ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.268ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.637ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.96us - CompressTime: 0ns - ExecTime: 4.119ms - InputRows: 13.016K (13016) - LocalBytesSent: 1.45 MB - LocalSendTime: 128.118us - LocalSentRows: 13.016K (13016) - MemoryUsage: - PeakMemoryUsage: 2.10 MB - MergeBlockTime: 0ns - OpenTime: 89.919us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 13.016K (13016) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.836ms - SplitBlockHashComputeTime: 671.136us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 6.725us - ExecTime: 2.204ms - InitProbeSideTime: 49.880us - JoinFilterTimer: 940ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.242us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.635us - ProbeFindNextTime: 0ns - ProbeRows: 1.462K (1462) - ProbeTime: 1.770ms - ProbeWhenBuildSideOutputTime: 348.898us - ProbeWhenProbeSideOutputTime: 937.503us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 249.504us - ProjectionTime: 387.10us - RowsProduced: 13.016K (13016) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 8.923us - ExecTime: 707.273us - InitProbeSideTime: 96.183us - JoinFilterTimer: 621ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.934us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.932us - ProbeFindNextTime: 0ns - ProbeRows: 1.462K (1462) - ProbeTime: 552.864us - ProbeWhenBuildSideOutputTime: 23.553us - ProbeWhenProbeSideOutputTime: 88.505us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 233.878us - ProjectionTime: 108.246us - RowsProduced: 1.462K (1462) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 11.685us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.191us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 191.50 KB - MemoryUsage: - Blocks: 74.00 KB - PeakMemoryUsage: 75.53 KB - OpenTime: 13.22us - ProjectionTime: 0ns - RowsProduced: 1.462K (1462) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s475ms PipelineXTask (index=30):(Active: 6.145ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.930ms - CloseTime: 36.247us - GetBlockTime: 2.582ms - OpenTime: 7.800us - PrepareTime: 164.784us - SinkTime: 3.263ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.80ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.126ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.865us - CompressTime: 0ns - ExecTime: 3.348ms - InputRows: 10.914K (10914) - LocalBytesSent: 1.22 MB - LocalSendTime: 101.949us - LocalSentRows: 10.914K (10914) - MemoryUsage: - PeakMemoryUsage: 1.60 MB - MergeBlockTime: 0ns - OpenTime: 77.217us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 10.914K (10914) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.317ms - SplitBlockHashComputeTime: 561.877us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 6.112us - ExecTime: 1.924ms - InitProbeSideTime: 49.353us - JoinFilterTimer: 482ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.342us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.167us - ProbeFindNextTime: 0ns - ProbeRows: 1.465K (1465) - ProbeTime: 1.436ms - ProbeWhenBuildSideOutputTime: 256.413us - ProbeWhenProbeSideOutputTime: 771.109us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 220.608us - ProjectionTime: 451.838us - RowsProduced: 10.914K (10914) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 10.155us - ExecTime: 593.894us - InitProbeSideTime: 71.286us - JoinFilterTimer: 572ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.230us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.388us - ProbeFindNextTime: 0ns - ProbeRows: 1.465K (1465) - ProbeTime: 470.425us - ProbeWhenBuildSideOutputTime: 20.972us - ProbeWhenProbeSideOutputTime: 93.691us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 189.415us - ProjectionTime: 80.385us - RowsProduced: 1.465K (1465) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 4.996us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 71.547us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 194.25 KB - MemoryUsage: - Blocks: 89.00 KB - PeakMemoryUsage: 90.53 KB - OpenTime: 11.803us - ProjectionTime: 0ns - RowsProduced: 1.465K (1465) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s477ms PipelineXTask (index=33):(Active: 5.817ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.569ms - CloseTime: 50.51us - GetBlockTime: 2.442ms - OpenTime: 10.383us - PrepareTime: 180.763us - SinkTime: 3.43ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.753ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.546ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.129us - CompressTime: 0ns - ExecTime: 3.125ms - InputRows: 11.189K (11189) - LocalBytesSent: 1.25 MB - LocalSendTime: 106.625us - LocalSentRows: 11.189K (11189) - MemoryUsage: - PeakMemoryUsage: 1.66 MB - MergeBlockTime: 0ns - OpenTime: 71.522us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 11.189K (11189) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.38ms - SplitBlockHashComputeTime: 607.32us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.237us - ExecTime: 1.831ms - InitProbeSideTime: 46.298us - JoinFilterTimer: 671ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 32.565us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.994us - ProbeFindNextTime: 0ns - ProbeRows: 1.393K (1393) - ProbeTime: 1.465ms - ProbeWhenBuildSideOutputTime: 272.954us - ProbeWhenProbeSideOutputTime: 790.264us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 204.608us - ProjectionTime: 305.41us - RowsProduced: 11.189K (11189) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 14.384us - ExecTime: 594.253us - InitProbeSideTime: 69.434us - JoinFilterTimer: 402ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.817us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.957us - ProbeFindNextTime: 0ns - ProbeRows: 1.393K (1393) - ProbeTime: 463.385us - ProbeWhenBuildSideOutputTime: 19.294us - ProbeWhenProbeSideOutputTime: 75.669us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 211.44us - ProjectionTime: 77.610us - RowsProduced: 1.393K (1393) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 6.808us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 71.190us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 188.75 KB - MemoryUsage: - Blocks: 123.50 KB - PeakMemoryUsage: 125.03 KB - OpenTime: 11.124us - ProjectionTime: 0ns - RowsProduced: 1.393K (1393) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s466ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 4.267ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 4.195ms - CloseTime: 11.86us - GetBlockTime: 151.822us - OpenTime: 2.461us - PrepareTime: 52.155us - SinkTime: 3.964ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.760ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.413us - BuildRows: 25.987K (25987) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.285ms - BuildTableInsertTime: 172.839us - BuildTableTime: 219.297us - CloseTime: 0ns - ExecTime: 3.984ms - InputRows: 25.986K (25986) - MemoryUsage: - BuildBlocks: 583.67 KB - BuildKeyArena: 0.00 - HashTable: 229.52 KB - PeakMemoryUsage: 813.18 KB - OpenTime: 23.972us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 214.595us - RuntimeFilterComputeTime: 327.400us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.613us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 148.759us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.06 MB - MemoryUsage: - Blocks: 414.00 KB - PeakMemoryUsage: 414.92 KB - OpenTime: 12.539us - ProjectionTime: 0ns - RowsProduced: 25.986K (25986) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 492.806ms PipelineXTask (index=4):(Active: 33.152ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 33.77ms - CloseTime: 11.969us - GetBlockTime: 141.780us - OpenTime: 3.505us - PrepareTime: 52.743us - SinkTime: 32.858ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.200ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.195us - BuildRows: 25.276K (25276) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.241ms - BuildTableInsertTime: 240.722us - BuildTableTime: 289.649us - CloseTime: 0ns - ExecTime: 32.872ms - InputRows: 25.275K (25275) - MemoryUsage: - BuildBlocks: 567.70 KB - BuildKeyArena: 0.00 - HashTable: 226.74 KB - PeakMemoryUsage: 794.43 KB - OpenTime: 18.570us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 29.73ms - RuntimeFilterComputeTime: 395.534us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.794us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.422us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 898.00 KB - MemoryUsage: - Blocks: 357.00 KB - PeakMemoryUsage: 357.92 KB - OpenTime: 11.129us - ProjectionTime: 0ns - RowsProduced: 25.275K (25275) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 489.226ms PipelineXTask (index=7):(Active: 2.827ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.709ms - CloseTime: 12.692us - GetBlockTime: 121.25us - OpenTime: 2.491us - PrepareTime: 95.366us - SinkTime: 2.516ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.795ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 150.471ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.406us - BuildRows: 26.344K (26344) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.72ms - BuildTableInsertTime: 161.983us - BuildTableTime: 197.8us - CloseTime: 0ns - ExecTime: 2.534ms - InputRows: 26.343K (26343) - MemoryUsage: - BuildBlocks: 591.69 KB - BuildKeyArena: 0.00 - HashTable: 230.91 KB - PeakMemoryUsage: 822.59 KB - OpenTime: 39.581us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 448.789us - RuntimeFilterComputeTime: 266.408us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 10.600us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 156.197us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1024.00 KB - MemoryUsage: - Blocks: 380.00 KB - PeakMemoryUsage: 380.92 KB - OpenTime: 32.688us - ProjectionTime: 0ns - RowsProduced: 26.343K (26343) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 437.151ms PipelineXTask (index=10):(Active: 2.830ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.758ms - CloseTime: 13.711us - GetBlockTime: 113.548us - OpenTime: 2.130us - PrepareTime: 50.894us - SinkTime: 2.575ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 186.325ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.888us - BuildRows: 24.948K (24948) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.214ms - BuildTableInsertTime: 178.304us - BuildTableTime: 209.559us - CloseTime: 0ns - ExecTime: 2.590ms - InputRows: 24.947K (24947) - MemoryUsage: - BuildBlocks: 560.33 KB - BuildKeyArena: 0.00 - HashTable: 225.46 KB - PeakMemoryUsage: 785.78 KB - OpenTime: 18.833us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 344.25us - RuntimeFilterComputeTime: 282.19us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 10.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 126.927us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 943.00 KB - MemoryUsage: - Blocks: 322.00 KB - PeakMemoryUsage: 322.92 KB - OpenTime: 10.230us - ProjectionTime: 0ns - RowsProduced: 24.947K (24947) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 402.597ms PipelineXTask (index=13):(Active: 4.288ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 4.171ms - CloseTime: 15.700us - GetBlockTime: 111.445us - OpenTime: 2.817us - PrepareTime: 91.605us - SinkTime: 3.967ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.249ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 288.824ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.661us - BuildRows: 25.555K (25555) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 985.444us - BuildTableInsertTime: 286.674us - BuildTableTime: 314.820us - CloseTime: 0ns - ExecTime: 4.18ms - InputRows: 25.554K (25554) - MemoryUsage: - BuildBlocks: 573.97 KB - BuildKeyArena: 0.00 - HashTable: 227.83 KB - PeakMemoryUsage: 801.79 KB - OpenTime: 57.682us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 400.781us - RuntimeFilterComputeTime: 295.398us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 971.00 KB - MemoryUsage: - Blocks: 391.00 KB - PeakMemoryUsage: 391.74 KB - OpenTime: 10.999us - ProjectionTime: 0ns - RowsProduced: 25.554K (25554) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 430.285ms PipelineXTask (index=16):(Active: 6.886ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 6.800ms - CloseTime: 21.764us - GetBlockTime: 146.679us - OpenTime: 2.738us - PrepareTime: 54.62us - SinkTime: 6.558ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.799ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.284ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.490us - BuildRows: 25.439K (25439) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.219ms - BuildTableInsertTime: 294.867us - BuildTableTime: 346.905us - CloseTime: 0ns - ExecTime: 6.566ms - InputRows: 25.438K (25438) - MemoryUsage: - BuildBlocks: 571.36 KB - BuildKeyArena: 0.00 - HashTable: 227.38 KB - PeakMemoryUsage: 798.73 KB - OpenTime: 13.151us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 748.974us - RuntimeFilterComputeTime: 1.172ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 14.401us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 165.120us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 994.00 KB - MemoryUsage: - Blocks: 437.00 KB - PeakMemoryUsage: 437.74 KB - OpenTime: 20.601us - ProjectionTime: 0ns - RowsProduced: 25.438K (25438) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 494.234ms PipelineXTask (index=19):(Active: 6.44ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 5.956ms - CloseTime: 22.311us - GetBlockTime: 136.149us - OpenTime: 2.868us - PrepareTime: 56.877us - SinkTime: 5.741ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.1ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.313ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.374us - BuildRows: 25.797K (25797) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.102ms - BuildTableInsertTime: 308.22us - BuildTableTime: 353.390us - CloseTime: 0ns - ExecTime: 5.755ms - InputRows: 25.796K (25796) - MemoryUsage: - BuildBlocks: 579.40 KB - BuildKeyArena: 0.00 - HashTable: 228.77 KB - PeakMemoryUsage: 808.17 KB - OpenTime: 18.124us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 738.209us - RuntimeFilterComputeTime: 1.19ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 18.465us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 164.786us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.06 MB - MemoryUsage: - Blocks: 414.00 KB - PeakMemoryUsage: 414.74 KB - OpenTime: 20.389us - ProjectionTime: 0ns - RowsProduced: 25.796K (25796) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 492.708ms PipelineXTask (index=22):(Active: 2.429ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.318ms - CloseTime: 14.389us - GetBlockTime: 116.466us - OpenTime: 2.785us - PrepareTime: 72.627us - SinkTime: 2.126ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.344ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.530ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.808us - BuildRows: 24.698K (24698) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.96ms - BuildTableInsertTime: 153.139us - BuildTableTime: 180.546us - CloseTime: 0ns - ExecTime: 2.153ms - InputRows: 24.697K (24697) - MemoryUsage: - BuildBlocks: 554.72 KB - BuildKeyArena: 0.00 - HashTable: 224.48 KB - PeakMemoryUsage: 779.19 KB - OpenTime: 32.315us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.487us - RuntimeFilterComputeTime: 314.846us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 11.585us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 133.237us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.01 MB - MemoryUsage: - Blocks: 414.00 KB - PeakMemoryUsage: 414.74 KB - OpenTime: 16.172us - ProjectionTime: 0ns - RowsProduced: 24.697K (24697) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 497.276ms PipelineXTask (index=25):(Active: 4.776ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.681ms - CloseTime: 16.387us - GetBlockTime: 106.21us - OpenTime: 2.530us - PrepareTime: 69.204us - SinkTime: 4.503ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.741ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.567ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.496us - BuildRows: 26.283K (26283) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.135ms - BuildTableInsertTime: 191.274us - BuildTableTime: 226.760us - CloseTime: 0ns - ExecTime: 4.518ms - InputRows: 26.282K (26282) - MemoryUsage: - BuildBlocks: 590.32 KB - BuildKeyArena: 0.00 - HashTable: 230.67 KB - PeakMemoryUsage: 820.98 KB - OpenTime: 20.329us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 542.864us - RuntimeFilterComputeTime: 479.19us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 128.151us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 437.00 KB - PeakMemoryUsage: 437.92 KB - OpenTime: 19.443us - ProjectionTime: 0ns - RowsProduced: 26.282K (26282) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 398.864ms PipelineXTask (index=28):(Active: 2.916ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.808ms - CloseTime: 10.323us - GetBlockTime: 130.908us - OpenTime: 2.311us - PrepareTime: 88.923us - SinkTime: 2.592ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.883ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.490ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.675us - BuildRows: 25.864K (25864) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.257ms - BuildTableInsertTime: 279.609us - BuildTableTime: 310.112us - CloseTime: 0ns - ExecTime: 2.614ms - InputRows: 25.863K (25863) - MemoryUsage: - BuildBlocks: 580.91 KB - BuildKeyArena: 0.00 - HashTable: 229.04 KB - PeakMemoryUsage: 809.93 KB - OpenTime: 24.931us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 219.700us - RuntimeFilterComputeTime: 291.182us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.470us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.132us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 960.00 KB - MemoryUsage: - Blocks: 357.00 KB - PeakMemoryUsage: 357.74 KB - OpenTime: 20.697us - ProjectionTime: 0ns - RowsProduced: 25.863K (25863) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 504.280ms PipelineXTask (index=31):(Active: 4.402ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.327ms - CloseTime: 10.426us - GetBlockTime: 98.34us - OpenTime: 2.560us - PrepareTime: 56.370us - SinkTime: 4.133ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.369ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.878ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.246us - BuildRows: 25.113K (25113) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.298ms - BuildTableInsertTime: 176.978us - BuildTableTime: 205.561us - CloseTime: 0ns - ExecTime: 4.144ms - InputRows: 25.112K (25112) - MemoryUsage: - BuildBlocks: 564.04 KB - BuildKeyArena: 0.00 - HashTable: 226.10 KB - PeakMemoryUsage: 790.13 KB - OpenTime: 16.673us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 339.379us - RuntimeFilterComputeTime: 322.940us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.176us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 110.977us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.02 MB - MemoryUsage: - Blocks: 402.50 KB - PeakMemoryUsage: 403.24 KB - OpenTime: 15.38us - ProjectionTime: 0ns - RowsProduced: 25.112K (25112) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 488.966ms PipelineXTask (index=34):(Active: 17.359ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 17.202ms - CloseTime: 15.955us - GetBlockTime: 125.725us - OpenTime: 3.62us - PrepareTime: 130.69us - SinkTime: 16.986ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.401ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.502ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.419us - BuildRows: 26.275K (26275) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 726.991us - BuildTableInsertTime: 230.611us - BuildTableTime: 272.176us - CloseTime: 0ns - ExecTime: 17.4ms - InputRows: 26.274K (26274) - MemoryUsage: - BuildBlocks: 590.14 KB - BuildKeyArena: 0.00 - HashTable: 230.64 KB - PeakMemoryUsage: 820.77 KB - OpenTime: 22.628us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.657ms - RuntimeFilterComputeTime: 326.37us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.11us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 141.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 414.00 KB - PeakMemoryUsage: 414.55 KB - OpenTime: 14.412us - ProjectionTime: 0ns - RowsProduced: 26.274K (26274) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 432.171ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 62.556ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 62.491ms - CloseTime: 19.856us - GetBlockTime: 349.912us - OpenTime: 5.519us - PrepareTime: 35.76us - SinkTime: 61.982ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.632ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 198.42ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.223us - BuildRows: 209.102K (209102) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 57.965ms - BuildTableInsertTime: 3.760ms - BuildTableTime: 3.917ms - CloseTime: 0ns - ExecTime: 61.976ms - InputRows: 209.101K (209101) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 4.796us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 17.47us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 349.96us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.32 MB - MemoryUsage: - Blocks: 1.20 MB - PeakMemoryUsage: 1.20 MB - OpenTime: 11.482us - ProjectionTime: 0ns - RowsProduced: 209.101K (209101) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 165.117ms PipelineXTask (index=5):(Active: 8.690ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 8.538ms - CloseTime: 14.631us - GetBlockTime: 352.650us - OpenTime: 2.414us - PrepareTime: 126.622us - SinkTime: 7.992ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.639ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 198.827ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.733us - BuildRows: 208.5K (208500) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.339ms - BuildTableInsertTime: 3.311ms - BuildTableTime: 3.544ms - CloseTime: 0ns - ExecTime: 7.981ms - InputRows: 208.499K (208499) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 7.909us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 11.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 352.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.06 MB - MemoryUsage: - Blocks: 782.00 KB - PeakMemoryUsage: 782.00 KB - OpenTime: 19.29us - ProjectionTime: 0ns - RowsProduced: 208.499K (208499) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 205.587ms PipelineXTask (index=8):(Active: 18.365ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 18.288ms - CloseTime: 10.984us - GetBlockTime: 390.172us - OpenTime: 2.865us - PrepareTime: 55.522us - SinkTime: 17.728ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 243.634ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.22us - BuildRows: 208.701K (208701) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.56ms - BuildTableInsertTime: 13.444ms - BuildTableTime: 13.598ms - CloseTime: 0ns - ExecTime: 17.729ms - InputRows: 208.7K (208700) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 13.988us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 8.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 389.331us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.26 MB - MemoryUsage: - Blocks: 1.20 MB - PeakMemoryUsage: 1.20 MB - OpenTime: 16.973us - ProjectionTime: 0ns - RowsProduced: 208.7K (208700) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 177.499ms PipelineXTask (index=11):(Active: 168.236ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 168.178ms - CloseTime: 8.809us - GetBlockTime: 368.118us - OpenTime: 2.365us - PrepareTime: 41.301us - SinkTime: 167.691ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 6.563ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.297ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.255us - BuildRows: 209.109K (209109) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 164.535ms - BuildTableInsertTime: 2.905ms - BuildTableTime: 3.87ms - CloseTime: 0ns - ExecTime: 167.685ms - InputRows: 209.108K (209108) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 4.311us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 7.277us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 367.205us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.23 MB - MemoryUsage: - Blocks: 1.35 MB - PeakMemoryUsage: 1.35 MB - OpenTime: 12.987us - ProjectionTime: 0ns - RowsProduced: 209.108K (209108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 159.232ms PipelineXTask (index=14):(Active: 18.584ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 18.506ms - CloseTime: 26.220us - GetBlockTime: 320.574us - OpenTime: 3.37us - PrepareTime: 42.323us - SinkTime: 18.27ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.339ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.25ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.815us - BuildRows: 208.295K (208295) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.76ms - BuildTableInsertTime: 13.672ms - BuildTableTime: 13.866ms - CloseTime: 0ns - ExecTime: 18.24ms - InputRows: 208.294K (208294) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.79 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 10.490us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 23.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 330.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 787.00 KB - PeakMemoryUsage: 787.00 KB - OpenTime: 12.913us - ProjectionTime: 0ns - RowsProduced: 208.294K (208294) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 205.312ms PipelineXTask (index=17):(Active: 9.723ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 9.543ms - CloseTime: 15.86us - GetBlockTime: 376.993us - OpenTime: 2.9us - PrepareTime: 155.897us - SinkTime: 9.36ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.683ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 300.358ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.210us - BuildRows: 209.196K (209196) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.720ms - BuildTableInsertTime: 5.39ms - BuildTableTime: 5.229ms - CloseTime: 0ns - ExecTime: 9.27ms - InputRows: 209.195K (209195) - MemoryUsage: - BuildBlocks: 1.80 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 5.584us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 10.811us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 492.524us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.17 MB - MemoryUsage: - Blocks: 1.12 MB - PeakMemoryUsage: 1.12 MB - OpenTime: 128.565us - ProjectionTime: 0ns - RowsProduced: 209.195K (209195) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 211.930ms PipelineXTask (index=20):(Active: 16.619ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 16.556ms - CloseTime: 8.893us - GetBlockTime: 317.937us - OpenTime: 2.257us - PrepareTime: 46.452us - SinkTime: 16.75ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 236.176ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 22.280us - BuildRows: 209.129K (209129) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.112ms - BuildTableInsertTime: 2.627ms - BuildTableTime: 2.839ms - CloseTime: 0ns - ExecTime: 16.62ms - InputRows: 209.128K (209128) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 6.601us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 7.332us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 309.635us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.16 MB - MemoryUsage: - Blocks: 1.38 MB - PeakMemoryUsage: 1.38 MB - OpenTime: 12.88us - ProjectionTime: 0ns - RowsProduced: 209.128K (209128) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 188.455ms PipelineXTask (index=23):(Active: 26.536ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 26.472ms - CloseTime: 19.237us - GetBlockTime: 368.627us - OpenTime: 2.957us - PrepareTime: 35.330us - SinkTime: 25.931ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.401ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 291.169ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.87us - BuildRows: 208.465K (208465) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.599ms - BuildTableInsertTime: 5.785ms - BuildTableTime: 6.245ms - CloseTime: 0ns - ExecTime: 25.921ms - InputRows: 208.464K (208464) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 4.433us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 14.802us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 375.36us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.15 MB - MemoryUsage: - Blocks: 1.12 MB - PeakMemoryUsage: 1.12 MB - OpenTime: 13.308us - ProjectionTime: 0ns - RowsProduced: 208.464K (208464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 202.234ms PipelineXTask (index=26):(Active: 32.787ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 32.728ms - CloseTime: 20.265us - GetBlockTime: 393.304us - OpenTime: 2.763us - PrepareTime: 32.397us - SinkTime: 32.181ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.694ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.707ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.174us - BuildRows: 209.242K (209242) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.50ms - BuildTableInsertTime: 16.753ms - BuildTableTime: 17.22ms - CloseTime: 0ns - ExecTime: 32.170ms - InputRows: 209.241K (209241) - MemoryUsage: - BuildBlocks: 1.80 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 5.669us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 15.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 388.55us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.29 MB - MemoryUsage: - Blocks: 1.34 MB - PeakMemoryUsage: 1.34 MB - OpenTime: 10.309us - ProjectionTime: 0ns - RowsProduced: 209.241K (209241) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 199.894ms PipelineXTask (index=29):(Active: 79.602ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 79.525ms - CloseTime: 9.881us - GetBlockTime: 351.963us - OpenTime: 2.468us - PrepareTime: 58.202us - SinkTime: 79.15ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.682ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.730ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.866us - BuildRows: 208.881K (208881) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 74.85ms - BuildTableInsertTime: 4.673ms - BuildTableTime: 4.842ms - CloseTime: 0ns - ExecTime: 79.13ms - InputRows: 208.88K (208880) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 11.268us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 7.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 342.315us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.12 MB - MemoryUsage: - Blocks: 1.14 MB - PeakMemoryUsage: 1.14 MB - OpenTime: 17.120us - ProjectionTime: 0ns - RowsProduced: 208.88K (208880) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 165.679ms PipelineXTask (index=32):(Active: 26.743ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 26.684ms - CloseTime: 15.362us - GetBlockTime: 367.301us - OpenTime: 2.730us - PrepareTime: 35.224us - SinkTime: 26.145ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.671ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 148.255ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.672us - BuildRows: 209.076K (209076) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.692ms - BuildTableInsertTime: 7.76ms - BuildTableTime: 7.362ms - CloseTime: 0ns - ExecTime: 26.136ms - InputRows: 209.075K (209075) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 4.930us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 11.873us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 362.776us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.12 MB - MemoryUsage: - Blocks: 668.00 KB - PeakMemoryUsage: 668.00 KB - OpenTime: 11.897us - ProjectionTime: 0ns - RowsProduced: 209.075K (209075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 253.746ms PipelineXTask (index=35):(Active: 9.20ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 8.960ms - CloseTime: 17.36us - GetBlockTime: 332.741us - OpenTime: 3.40us - PrepareTime: 32.468us - SinkTime: 8.478ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 169.426ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.135us - BuildRows: 208.333K (208333) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.78ms - BuildTableInsertTime: 4.3ms - BuildTableTime: 4.297ms - CloseTime: 0ns - ExecTime: 8.473ms - InputRows: 208.332K (208332) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.79 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 8.208us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 13.437us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 328.908us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.18 MB - MemoryUsage: - Blocks: 768.00 KB - PeakMemoryUsage: 768.00 KB - OpenTime: 9.971us - ProjectionTime: 0ns - RowsProduced: 208.332K (208332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 255.218ms Fragment 67: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.579ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 6.374ms - CloseTime: 50.859us - GetBlockTime: 4.804ms - OpenTime: 8.74us - PrepareTime: 139.238us - SinkTime: 1.472ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.487ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 390.367ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 32.445us - CompressTime: 0ns - ExecTime: 1.586ms - InputRows: 4.066K (4066) - LocalBytesSent: 372.90 KB - LocalSendTime: 155.516us - LocalSentRows: 4.066K (4066) - MemoryUsage: - PeakMemoryUsage: 570.00 KB - MergeBlockTime: 0ns - OpenTime: 92.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.066K (4066) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 930.465us - SplitBlockHashComputeTime: 80.124us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.402us - ExecTime: 4.707ms - InitProbeSideTime: 492.655us - JoinFilterTimer: 5.863us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 18.80us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.782us - ProbeFindNextTime: 0ns - ProbeRows: 8.425K (8425) - ProbeTime: 4.477ms - ProbeWhenBuildSideOutputTime: 2.175ms - ProbeWhenProbeSideOutputTime: 75.801us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.522ms - ProjectionTime: 153.20us - RowsProduced: 4.066K (4066) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 475.454ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 103.954us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 952.00 KB - OpenTime: 856ns - ProjectionTime: 0ns - RowsProduced: 8.425K (8425) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s527ms PipelineXTask (index=3):(Active: 5.826ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.633ms - CloseTime: 42.582us - GetBlockTime: 3.945ms - OpenTime: 8.905us - PrepareTime: 135.731us - SinkTime: 1.581ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.771ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 899.315ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.918us - CompressTime: 0ns - ExecTime: 1.681ms - InputRows: 4.156K (4156) - LocalBytesSent: 381.08 KB - LocalSendTime: 162.293us - LocalSentRows: 4.156K (4156) - MemoryUsage: - PeakMemoryUsage: 575.50 KB - MergeBlockTime: 0ns - OpenTime: 84.739us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.156K (4156) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.74ms - SplitBlockHashComputeTime: 67.509us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.810us - ExecTime: 3.874ms - InitProbeSideTime: 393.30us - JoinFilterTimer: 1.999us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.857us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.714us - ProbeFindNextTime: 0ns - ProbeRows: 7.351K (7351) - ProbeTime: 3.656ms - ProbeWhenBuildSideOutputTime: 1.679ms - ProbeWhenProbeSideOutputTime: 75.795us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.281ms - ProjectionTime: 144.619us - RowsProduced: 4.156K (4156) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 184.265ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 72.461us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 904.00 KB - OpenTime: 610ns - ProjectionTime: 0ns - RowsProduced: 7.351K (7351) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s438ms PipelineXTask (index=6):(Active: 8.289ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.80ms - CloseTime: 33.859us - GetBlockTime: 3.173ms - OpenTime: 4.633us - PrepareTime: 162.228us - SinkTime: 1.210ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.640ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 789.619ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.829us - CompressTime: 0ns - ExecTime: 1.302ms - InputRows: 3.097K (3097) - LocalBytesSent: 283.93 KB - LocalSendTime: 108.494us - LocalSentRows: 3.097K (3097) - MemoryUsage: - PeakMemoryUsage: 381.25 KB - MergeBlockTime: 0ns - OpenTime: 82.241us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.097K (3097) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 781.797us - SplitBlockHashComputeTime: 60.32us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 10.458us - ExecTime: 3.116ms - InitProbeSideTime: 328.778us - JoinFilterTimer: 1.695us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 16.685us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.316us - ProbeFindNextTime: 0ns - ProbeRows: 4.153K (4153) - ProbeTime: 2.935ms - ProbeWhenBuildSideOutputTime: 1.496ms - ProbeWhenProbeSideOutputTime: 57.27us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 887.266us - ProjectionTime: 120.557us - RowsProduced: 3.097K (3097) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 90.437ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 56.489us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 664.00 KB - OpenTime: 915ns - ProjectionTime: 0ns - RowsProduced: 4.153K (4153) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s530ms PipelineXTask (index=9):(Active: 2.979ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.823ms - CloseTime: 24.913us - GetBlockTime: 1.986ms - OpenTime: 7.150us - PrepareTime: 117.723us - SinkTime: 764.18us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.943ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 463.233ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.485us - CompressTime: 0ns - ExecTime: 846.415us - InputRows: 2.356K (2356) - LocalBytesSent: 216.04 KB - LocalSendTime: 99.660us - LocalSentRows: 2.356K (2356) - MemoryUsage: - PeakMemoryUsage: 303.00 KB - MergeBlockTime: 0ns - OpenTime: 75.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.356K (2356) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 445.598us - SplitBlockHashComputeTime: 47.207us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 13.112us - ExecTime: 1.962ms - InitProbeSideTime: 169.534us - JoinFilterTimer: 868ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 15.249us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.500us - ProbeFindNextTime: 0ns - ProbeRows: 3.385K (3385) - ProbeTime: 1.841ms - ProbeWhenBuildSideOutputTime: 867.742us - ProbeWhenProbeSideOutputTime: 35.244us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 668.849us - ProjectionTime: 72.131us - RowsProduced: 2.356K (2356) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 29.302ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 37.24us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 576.00 KB - OpenTime: 725ns - ProjectionTime: 0ns - RowsProduced: 3.385K (3385) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s923ms PipelineXTask (index=12):(Active: 8.316ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.164ms - CloseTime: 23.860us - GetBlockTime: 7.227ms - OpenTime: 4.210us - PrepareTime: 118.151us - SinkTime: 875.156us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.79ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 460.96ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.67us - CompressTime: 0ns - ExecTime: 950.279us - InputRows: 1.966K (1966) - LocalBytesSent: 180.30 KB - LocalSendTime: 86.37us - LocalSentRows: 1.966K (1966) - MemoryUsage: - PeakMemoryUsage: 289.00 KB - MergeBlockTime: 0ns - OpenTime: 69.125us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.966K (1966) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 549.774us - SplitBlockHashComputeTime: 39.414us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 12.491us - ExecTime: 7.190ms - InitProbeSideTime: 181.358us - JoinFilterTimer: 1.171us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 13.108us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.788us - ProbeFindNextTime: 0ns - ProbeRows: 2.883K (2883) - ProbeTime: 7.63ms - ProbeWhenBuildSideOutputTime: 6.67ms - ProbeWhenProbeSideOutputTime: 81.333us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 596.229us - ProjectionTime: 76.860us - RowsProduced: 1.966K (1966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 25.289ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 42.356us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 560.00 KB - OpenTime: 727ns - ProjectionTime: 0ns - RowsProduced: 2.883K (2883) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s925ms PipelineXTask (index=15):(Active: 1.866ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.665ms - CloseTime: 38.28us - GetBlockTime: 957.633us - OpenTime: 4.207us - PrepareTime: 152.37us - SinkTime: 627.393us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.816ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 505.66ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.281us - CompressTime: 0ns - ExecTime: 745.36us - InputRows: 631 - LocalBytesSent: 57.90 KB - LocalSendTime: 167.413us - LocalSentRows: 631 - MemoryUsage: - PeakMemoryUsage: 85.00 KB - MergeBlockTime: 0ns - OpenTime: 103.497us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 631 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 272.230us - SplitBlockHashComputeTime: 17.823us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 17.571us - ExecTime: 942.426us - InitProbeSideTime: 93.501us - JoinFilterTimer: 578ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 13.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.895us - ProbeFindNextTime: 0ns - ProbeRows: 878 - ProbeTime: 827.110us - ProbeWhenBuildSideOutputTime: 417.546us - ProbeWhenProbeSideOutputTime: 19.767us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 214.969us - ProjectionTime: 69.149us - RowsProduced: 631 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 4 - CloseTime: 0ns - ExecTime: 28.581us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 136.00 KB - OpenTime: 683ns - ProjectionTime: 0ns - RowsProduced: 878 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s11ms PipelineXTask (index=18):(Active: 2.122ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.864ms - CloseTime: 43.739us - GetBlockTime: 1.158ms - OpenTime: 8.789us - PrepareTime: 198.716us - SinkTime: 596.477us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.54ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 271.851ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.675us - CompressTime: 0ns - ExecTime: 766.1us - InputRows: 699 - LocalBytesSent: 64.13 KB - LocalSendTime: 115.915us - LocalSentRows: 699 - MemoryUsage: - PeakMemoryUsage: 92.25 KB - MergeBlockTime: 0ns - OpenTime: 156.161us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 699 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 312.8us - SplitBlockHashComputeTime: 23.274us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 24.169us - ExecTime: 1.126ms - InitProbeSideTime: 135.57us - JoinFilterTimer: 667ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 14.664us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.655us - ProbeFindNextTime: 0ns - ProbeRows: 1.038K (1038) - ProbeTime: 982.903us - ProbeWhenBuildSideOutputTime: 479.333us - ProbeWhenProbeSideOutputTime: 17.580us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 262.980us - ProjectionTime: 82.233us - RowsProduced: 699 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 76.619ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 4 - CloseTime: 0ns - ExecTime: 44.166us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 128.00 KB - OpenTime: 781ns - ProjectionTime: 0ns - RowsProduced: 1.038K (1038) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s107ms PipelineXTask (index=21):(Active: 375.296us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 185.578us - CloseTime: 18.935us - GetBlockTime: 20.864us - OpenTime: 4.578us - PrepareTime: 140.540us - SinkTime: 120.147us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 329.906us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 554.197us DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.691us - CompressTime: 0ns - ExecTime: 204.504us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 52.313us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.60us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 650ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.204us - ExecTime: 37.602us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.406us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.250us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.0us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.382us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.923us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s378ms PipelineXTask (index=24):(Active: 354.322us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 193.139us - CloseTime: 19.29us - GetBlockTime: 42.387us - OpenTime: 15.680us - PrepareTime: 121.747us - SinkTime: 115.743us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.249us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.160ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.211us - CompressTime: 0ns - ExecTime: 198.820us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 47.789us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.125us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 650ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.955us - ExecTime: 59.933us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.651us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.816us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 33.24us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.579us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 525ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s366ms PipelineXTask (index=27):(Active: 315.78us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 149.155us - CloseTime: 17.351us - GetBlockTime: 15.647us - OpenTime: 7.550us - PrepareTime: 135.70us - SinkTime: 104.655us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 291.429us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.346ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.180us - CompressTime: 0ns - ExecTime: 192.639us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 54.267us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.139us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 500ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.392us - ExecTime: 30.742us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.644us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.556us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.425us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.49us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 693ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s369ms PipelineXTask (index=30):(Active: 278.542us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 132.104us - CloseTime: 14.434us - GetBlockTime: 9.211us - OpenTime: 4.360us - PrepareTime: 121.877us - SinkTime: 102.63us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 257.49us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.567ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.440us - CompressTime: 0ns - ExecTime: 183.254us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 52.632us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 69.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 306ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.676us - ExecTime: 26.992us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.53us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.466us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.335us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.216us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 650ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s369ms PipelineXTask (index=33):(Active: 282.337us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 121.833us - CloseTime: 12.989us - GetBlockTime: 10.114us - OpenTime: 10.570us - PrepareTime: 131.277us - SinkTime: 86.917us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 263.171us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.796ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.408us - CompressTime: 0ns - ExecTime: 180.504us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.740us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 83.606us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 595ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.700us - ExecTime: 23.882us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.721us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.844us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.359us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.642us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 854ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s369ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.436ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 696.54us - CloseTime: 165.353us - GetBlockTime: 222.670us - OpenTime: 299.176us - PrepareTime: 266.238us - SinkTime: 103.374us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.254ms - WaitBfTime: 913.355ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 911.792ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 114.531us - InputRows: 2.117K (2117) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 15.925us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 165.730us - BlocksProduced: 7 - CloseTime: 160.778us - ExecTime: 216.727ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 445.486us - ProcessConjunctTime: 50.572us - ProjectionTime: 0ns - RowsProduced: 2.117K (2117) - RowsRead: 2.117K (2117) - RuntimeFilterInfo: - filter id = 67 filtered: 2.625785M (2625785) - filter id = 67 input: 2.635307M (2635307) - filter id = 71 filtered: 5.884K (5884) - filter id = 71 input: 9.522K (9522) - ScannerWorkerWaitTime: 320.379ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 215.903ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [104.132ms, 149.419ms, 111.567ms, ] - PerScannerRowsRead: [904, 905, 308, ] - PerScannerWaitTime: [103.432ms, 109.369ms, 107.577ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 362.48ms - MemoryUsage: - FreeBlocks: 396.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 13.195ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 586ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 221.706ms - ScannerCtxSchedTime: 320.365ms - ScannerFilterTime: 767.340us - ScannerGetBlockTime: 363.807ms - ScannerInitTime: 59.936us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 1316045, filtered = 1310395] - RuntimeFilterInfo id 71: [type = BF, input = 5650, filtered = 3533] - BitmapIndexFilterTimer: 5.557us - BlockConditionsFilteredBloomFilterTime: 4.611us - BlockConditionsFilteredDictTime: 1.558us - BlockConditionsFilteredTime: 650.285us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 589.433us - BlockInitSeekCount: 27 - BlockInitSeekTime: 28.69us - BlockInitTime: 867.645us - BlockLoadTime: 374.191ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 1.221K (1221) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 1.238ms - FirstReadTime: 256.583ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.349us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.599ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.796972M (4796972) - RowsShortCircuitPredInput: 4.799089M (4799089) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 103.563ms - TotalPagesNum: 1.221K (1221) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 518.499us PipelineXTask (index=4):(Active: 1.53ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 502.354us - CloseTime: 145.810us - GetBlockTime: 185.780us - OpenTime: 234.922us - PrepareTime: 160.611us - SinkTime: 40.901us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 894.149us - WaitBfTime: 913.607ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 811.563ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 38.551us - InputRows: 2.112K (2112) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.244us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 124.918us - BlocksProduced: 7 - CloseTime: 143.813us - ExecTime: 318.444ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 319.853us - ProcessConjunctTime: 29.31us - ProjectionTime: 0ns - RowsProduced: 2.112K (2112) - RowsRead: 2.112K (2112) - RuntimeFilterInfo: - filter id = 67 filtered: 1.922305M (1922305) - filter id = 67 input: 1.931157M (1931157) - filter id = 71 filtered: 5.488K (5488) - filter id = 71 input: 8.852K (8852) - ScannerWorkerWaitTime: 346.823ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 317.798ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [138.336ms, 223.406ms, 27.756ms, ] - PerScannerRowsRead: [912, 1.03K, 170, ] - PerScannerWaitTime: [116.909ms, 117.228ms, 112.685ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 386.634ms - MemoryUsage: - FreeBlocks: 388.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 138.111ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 588ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 238.536ms - ScannerCtxSchedTime: 346.803ms - ScannerFilterTime: 710.611us - ScannerGetBlockTime: 388.317ms - ScannerInitTime: 55.49us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 1315184, filtered = 1309674] - RuntimeFilterInfo id 71: [type = BF, input = 5510, filtered = 3398] - BitmapIndexFilterTimer: 4.926us - BlockConditionsFilteredBloomFilterTime: 11.857us - BlockConditionsFilteredDictTime: 1.804us - BlockConditionsFilteredTime: 549.701us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 483.555us - BlockInitSeekCount: 23 - BlockInitSeekTime: 30.145us - BlockInitTime: 761.854us - BlockLoadTime: 523.670ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 1.208K (1208) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 1.501ms - FirstReadTime: 299.284ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.458us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.714ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.796898M (4796898) - RowsShortCircuitPredInput: 4.79901M (4799010) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 85.483ms - TotalPagesNum: 1.208K (1208) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 530.367us PipelineXTask (index=7):(Active: 59.543ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.748ms - CloseTime: 88.231us - GetBlockTime: 143.958us - OpenTime: 29.512ms - PrepareTime: 184.286us - SinkTime: 38.772us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.454ms - WaitBfTime: 913.803ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 917.444ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 38.387us - InputRows: 1.93K (1930) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.498us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 136.70us - BlocksProduced: 5 - CloseTime: 86.407us - ExecTime: 211.390ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 29.609ms - ProcessConjunctTime: 40.164us - ProjectionTime: 0ns - RowsProduced: 1.93K (1930) - RowsRead: 1.93K (1930) - RuntimeFilterInfo: - filter id = 67 filtered: 367.804K (367804) - filter id = 67 input: 375.022K (375022) - filter id = 71 filtered: 4.491K (4491) - filter id = 71 input: 7.218K (7218) - ScannerWorkerWaitTime: 189.64ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 181.552ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [83.513ms, 67.015ms, ] - PerScannerRowsRead: [1.13K, 797, ] - PerScannerWaitTime: [96.105ms, 92.958ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 137.209ms - MemoryUsage: - FreeBlocks: 264.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.265ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 448ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 125.619ms - ScannerCtxSchedTime: 189.54ms - ScannerFilterTime: 657.232us - ScannerGetBlockTime: 149.474ms - ScannerInitTime: 29.298ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 259473, filtered = 254381] - RuntimeFilterInfo id 71: [type = BF, input = 5092, filtered = 3162] - BitmapIndexFilterTimer: 5.202us - BlockConditionsFilteredBloomFilterTime: 8.498us - BlockConditionsFilteredDictTime: 14.395us - BlockConditionsFilteredTime: 285.834us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 210.755us - BlockInitSeekCount: 48 - BlockInitSeekTime: 57.66us - BlockInitTime: 529.199us - BlockLoadTime: 158.209ms - BlocksLoad: 862 - CachedPagesNum: 538 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.712K (1712) - FirstReadSeekTime: 1.233ms - FirstReadTime: 110.445ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.867us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 1.137ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 3.471768M (3471768) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 2 - RowsDictFiltered: 2 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 788 - RowsShortCircuitPredFiltered: 3.469835M (3469835) - RowsShortCircuitPredInput: 3.471765M (3471765) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 3 - RowsVectorPredInput: 4 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 24.829ms - TotalPagesNum: 538 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 413.712us PipelineXTask (index=10):(Active: 1.483ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 729.297us - CloseTime: 72.450us - GetBlockTime: 170.576us - OpenTime: 453.97us - PrepareTime: 214.591us - SinkTime: 59.846us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.393ms - WaitBfTime: 1s10ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s175ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 57.812us - InputRows: 1.831K (1831) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.118us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 189.520us - BlocksProduced: 5 - CloseTime: 69.896us - ExecTime: 175.98ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 564.738us - ProcessConjunctTime: 71.954us - ProjectionTime: 0ns - RowsProduced: 1.831K (1831) - RowsRead: 1.831K (1831) - RuntimeFilterInfo: - filter id = 67 filtered: 367.927K (367927) - filter id = 67 input: 375.049K (375049) - filter id = 71 filtered: 4.555K (4555) - filter id = 71 input: 7.122K (7122) - ScannerWorkerWaitTime: 200.52ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 174.297ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [105.773ms, 44.450ms, ] - PerScannerRowsRead: [1.09K, 736, ] - PerScannerWaitTime: [101.764ms, 98.288ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 137.313ms - MemoryUsage: - FreeBlocks: 264.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.879ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 352ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 117.349ms - ScannerCtxSchedTime: 200.42ms - ScannerFilterTime: 516.69us - ScannerGetBlockTime: 149.353ms - ScannerInitTime: 157.814us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 259307, filtered = 254246] - RuntimeFilterInfo id 71: [type = BF, input = 5061, filtered = 3230] - BitmapIndexFilterTimer: 5.280us - BlockConditionsFilteredBloomFilterTime: 13.397us - BlockConditionsFilteredDictTime: 11.775us - BlockConditionsFilteredTime: 302.548us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 222.755us - BlockInitSeekCount: 49 - BlockInitSeekTime: 46.40us - BlockInitTime: 540.168us - BlockLoadTime: 158.964ms - BlocksLoad: 860 - CachedPagesNum: 536 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.71K (1710) - FirstReadSeekTime: 1.206ms - FirstReadTime: 101.352ms - IOTimer: 0ns - InvertedIndexFilterTime: 18.200us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.14ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 3.471729M (3471729) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 4 - RowsDictFiltered: 4 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 786 - RowsShortCircuitPredFiltered: 3.469898M (3469898) - RowsShortCircuitPredInput: 3.471729M (3471729) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 34.667ms - TotalPagesNum: 536 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 372.131us PipelineXTask (index=13):(Active: 953.338us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 453.1us - CloseTime: 50.599us - GetBlockTime: 124.316us - OpenTime: 242.573us - PrepareTime: 188.645us - SinkTime: 40.510us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 881.813us - WaitBfTime: 1s10ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s91ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 40.64us - InputRows: 1.873K (1873) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.908us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 124.258us - BlocksProduced: 3 - CloseTime: 48.28us - ExecTime: 298.473ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 336.417us - ProcessConjunctTime: 47.778us - ProjectionTime: 0ns - RowsProduced: 1.873K (1873) - RowsRead: 1.873K (1873) - RuntimeFilterInfo: - filter id = 67 filtered: 1.235776M (1235776) - filter id = 67 input: 1.24048M (1240480) - filter id = 71 filtered: 2.831K (2831) - filter id = 71 input: 4.704K (4704) - ScannerWorkerWaitTime: 104.925ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 297.967ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [164.436ms, ] - PerScannerRowsRead: [1.87K, ] - PerScannerWaitTime: [104.925ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 162.524ms - MemoryUsage: - FreeBlocks: 148.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 19.918ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 433ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 149.43ms - ScannerCtxSchedTime: 104.920ms - ScannerFilterTime: 529.644us - ScannerGetBlockTime: 163.641ms - ScannerInitTime: 52.970us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 1240480, filtered = 1235776] - RuntimeFilterInfo id 71: [type = BF, input = 4704, filtered = 2831] - BitmapIndexFilterTimer: 1.321us - BlockConditionsFilteredBloomFilterTime: 1.857us - BlockConditionsFilteredDictTime: 437ns - BlockConditionsFilteredTime: 170.113us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 145.449us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.655us - BlockInitTime: 223.787us - BlockLoadTime: 181.997ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 967.836us - FirstReadTime: 102.206ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.258us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 10.525ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.257922M (2257922) - RowsShortCircuitPredInput: 2.259795M (2259795) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 59.127ms - TotalPagesNum: 870 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 280.950us PipelineXTask (index=16):(Active: 1.669ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 855.22us - CloseTime: 52.500us - GetBlockTime: 163.3us - OpenTime: 577.9us - PrepareTime: 173.664us - SinkTime: 59.243us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.592ms - WaitBfTime: 1s47ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s344ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 57.579us - InputRows: 1.3K (1300) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.143us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 349.947us - BlocksProduced: 3 - CloseTime: 49.60us - ExecTime: 300.225ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 658.965us - ProcessConjunctTime: 87.941us - ProjectionTime: 0ns - RowsProduced: 1.3K (1300) - RowsRead: 1.824K (1824) - RuntimeFilterInfo: - filter id = 67 filtered: 1.235756M (1235756) - filter id = 67 input: 1.240382M (1240382) - filter id = 71 filtered: 2.802K (2802) - filter id = 71 input: 4.626K (4626) - ScannerWorkerWaitTime: 137.706ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 299.357ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 1.718K (1718) RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 - always_true: 0 - expr_filtered_rows: 524 - expr_input_rows: 859 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [148.613ms, ] - PerScannerRowsRead: [1.82K, ] - PerScannerWaitTime: [137.706ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 144.484ms - MemoryUsage: - FreeBlocks: 148.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.684ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 430ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 128.246ms - ScannerCtxSchedTime: 137.702ms - ScannerFilterTime: 2.939ms - ScannerGetBlockTime: 145.447ms - ScannerInitTime: 99.291us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 1240382, filtered = 1235756] - RuntimeFilterInfo id 71: [type = BF, input = 4626, filtered = 2802] - BitmapIndexFilterTimer: 1.193us - BlockConditionsFilteredBloomFilterTime: 1.887us - BlockConditionsFilteredDictTime: 859ns - BlockConditionsFilteredTime: 159.808us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 143.294us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.684us - BlockInitTime: 203.268us - BlockLoadTime: 154.720ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 911.782us - FirstReadTime: 78.241ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.577us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.61ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.257961M (2257961) - RowsShortCircuitPredInput: 2.259785M (2259785) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 65.414ms - TotalPagesNum: 870 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 273.610us PipelineXTask (index=19):(Active: 1.415ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 661.120us - CloseTime: 38.700us - GetBlockTime: 80.734us - OpenTime: 518.580us - PrepareTime: 186.351us - SinkTime: 23.963us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.360ms - WaitBfTime: 1s27ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s43ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.528us - InputRows: 3.532K (3532) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.324us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 315.161us - BlocksProduced: 2 - CloseTime: 35.580us - ExecTime: 220.348ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 617.608us - ProcessConjunctTime: 78.760us - ProjectionTime: 0ns - RowsProduced: 3.532K (3532) - RowsRead: 3.532K (3532) - RuntimeFilterInfo: - filter id = 67 filtered: 533.303K (533303) - filter id = 67 input: 546.924K (546924) - filter id = 71 filtered: 10.089K (10089) - filter id = 71 input: 13.621K (13621) - ScannerWorkerWaitTime: 151.499ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 219.616ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [56.099ms, ] - PerScannerRowsRead: [3.53K, ] - PerScannerWaitTime: [151.499ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 55.410ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.946ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 217ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 68.30ms - ScannerCtxSchedTime: 151.496ms - ScannerFilterTime: 179.842us - ScannerGetBlockTime: 55.812ms - ScannerInitTime: 92.513us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 546924, filtered = 533303] - RuntimeFilterInfo id 71: [type = BF, input = 13621, filtered = 10089] - BitmapIndexFilterTimer: 884ns - BlockConditionsFilteredBloomFilterTime: 1.658us - BlockConditionsFilteredDictTime: 453ns - BlockConditionsFilteredTime: 87.823us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 76.57us - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.850us - BlockInitTime: 130.130us - BlockLoadTime: 66.55ms - BlocksLoad: 217 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 708.820us - FirstReadTime: 37.215ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.74us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 445.815us - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 873.187K (873187) - RowsShortCircuitPredInput: 876.719K (876719) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 18.785ms - TotalPagesNum: 364 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 97.0us PipelineXTask (index=22):(Active: 994.679us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 426.84us - CloseTime: 32.87us - GetBlockTime: 52.461us - OpenTime: 333.0us - PrepareTime: 194.80us - SinkTime: 9.393us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 951.582us - WaitBfTime: 1s28ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 991.29ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.517us - InputRows: 3.549K (3549) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.188us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 186.427us - BlocksProduced: 2 - CloseTime: 29.958us - ExecTime: 273.475ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 431.63us - ProcessConjunctTime: 68.138us - ProjectionTime: 0ns - RowsProduced: 3.549K (3549) - RowsRead: 3.549K (3549) - RuntimeFilterInfo: - filter id = 67 filtered: 531.966K (531966) - filter id = 67 input: 545.377K (545377) - filter id = 71 filtered: 9.862K (9862) - filter id = 71 input: 13.411K (13411) - ScannerWorkerWaitTime: 154.531ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 272.962ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [105.754ms, ] - PerScannerRowsRead: [3.55K, ] - PerScannerWaitTime: [154.531ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 105.57ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.335ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 318ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 70.506ms - ScannerCtxSchedTime: 154.528ms - ScannerFilterTime: 186.748us - ScannerGetBlockTime: 105.462ms - ScannerInitTime: 56.519us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 545377, filtered = 531966] - RuntimeFilterInfo id 71: [type = BF, input = 13411, filtered = 9862] - BitmapIndexFilterTimer: 946ns - BlockConditionsFilteredBloomFilterTime: 1.868us - BlockConditionsFilteredDictTime: 327ns - BlockConditionsFilteredTime: 111.384us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 96.822us - BlockInitSeekCount: 7 - BlockInitSeekTime: 12.232us - BlockInitTime: 153.345us - BlockLoadTime: 116.95ms - BlocksLoad: 217 - CachedPagesNum: 363 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 392.918us - FirstReadTime: 85.815ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.923us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 456.84us - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 873.178K (873178) - RowsShortCircuitPredInput: 876.727K (876727) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 19.687ms - TotalPagesNum: 363 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 104.713us PipelineXTask (index=25):(Active: 1.144ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 523.878us - CloseTime: 57.284us - GetBlockTime: 191.899us - OpenTime: 246.963us - PrepareTime: 307.206us - SinkTime: 39.667us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.74ms - WaitBfTime: 1s11ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s279ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 36.941us - InputRows: 2.179K (2179) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.46us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 146.564us - BlocksProduced: 5 - CloseTime: 53.897us - ExecTime: 197.270ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 357.385us - ProcessConjunctTime: 27.648us - ProjectionTime: 0ns - RowsProduced: 2.179K (2179) - RowsRead: 2.179K (2179) - RuntimeFilterInfo: - filter id = 67 filtered: 492.857K (492857) - filter id = 67 input: 500.891K (500891) - filter id = 71 filtered: 5.007K (5007) - filter id = 71 input: 8.034K (8034) - ScannerWorkerWaitTime: 217.664ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 196.672ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [161.709ms, 40.840ms, ] - PerScannerRowsRead: [1.33K, 848, ] - PerScannerWaitTime: [110.920ms, 106.743ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 200.236ms - MemoryUsage: - FreeBlocks: 264.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 124.310ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 525ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 122.356ms - ScannerCtxSchedTime: 217.655ms - ScannerFilterTime: 572.110us - ScannerGetBlockTime: 201.598ms - ScannerInitTime: 38.808us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 356070, filtered = 350319] - RuntimeFilterInfo id 71: [type = BF, input = 5751, filtered = 3572] - BitmapIndexFilterTimer: 3.38us - BlockConditionsFilteredBloomFilterTime: 3.2us - BlockConditionsFilteredDictTime: 1.739us - BlockConditionsFilteredTime: 11.850ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.804ms - BlockInitSeekCount: 20 - BlockInitSeekTime: 14.315us - BlockInitTime: 11.957ms - BlockLoadTime: 323.847ms - BlocksLoad: 838 - CachedPagesNum: 578 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 973.588us - FirstReadTime: 134.578ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.465us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.189ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 3.390079M (3390079) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 262 - RowsShortCircuitPredFiltered: 3.3879M (3387900) - RowsShortCircuitPredInput: 3.390079M (3390079) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 50.492ms - TotalPagesNum: 578 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 14.376ms PipelineXTask (index=28):(Active: 16.658ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.135ms - CloseTime: 104.120us - GetBlockTime: 15.811ms - OpenTime: 219.880us - PrepareTime: 190.758us - SinkTime: 54.646us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 927.930us - WaitBfTime: 1s11ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s231ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 50.855us - InputRows: 2.233K (2233) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.215us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 133.439us - BlocksProduced: 5 - CloseTime: 101.391us - ExecTime: 199.502ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 339.870us - ProcessConjunctTime: 25.832us - ProjectionTime: 0ns - RowsProduced: 2.233K (2233) - RowsRead: 2.233K (2233) - RuntimeFilterInfo: - filter id = 67 filtered: 493.426K (493426) - filter id = 67 input: 501.817K (501817) - filter id = 71 filtered: 5.266K (5266) - filter id = 71 input: 8.391K (8391) - ScannerWorkerWaitTime: 240.643ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.257ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [85.546ms, 60.415ms, ] - PerScannerRowsRead: [1.34K, 892, ] - PerScannerWaitTime: [127.534ms, 113.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 143.914ms - MemoryUsage: - FreeBlocks: 264.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.565ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 484ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 116.644ms - ScannerCtxSchedTime: 240.632ms - ScannerFilterTime: 541.341us - ScannerGetBlockTime: 145.103ms - ScannerInitTime: 40.802us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 356683, filtered = 350671] - RuntimeFilterInfo id 71: [type = BF, input = 6012, filtered = 3779] - BitmapIndexFilterTimer: 3.49us - BlockConditionsFilteredBloomFilterTime: 2.671us - BlockConditionsFilteredDictTime: 1.70us - BlockConditionsFilteredTime: 249.914us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 215.233us - BlockInitSeekCount: 16 - BlockInitSeekTime: 17.850us - BlockInitTime: 396.514us - BlockLoadTime: 153.805ms - BlocksLoad: 837 - CachedPagesNum: 579 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.67K (1670) - FirstReadSeekTime: 641.74us - FirstReadTime: 116.595ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.63us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 990.82us - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 3.389479M (3389479) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 284 - RowsShortCircuitPredFiltered: 3.387246M (3387246) - RowsShortCircuitPredInput: 3.389479M (3389479) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 24.949ms - TotalPagesNum: 579 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 341.279us PipelineXTask (index=31):(Active: 1.186ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 595.167us - CloseTime: 114.158us - GetBlockTime: 212.759us - OpenTime: 274.82us - PrepareTime: 193.587us - SinkTime: 60.743us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.58ms - WaitBfTime: 1s11ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s160ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 57.50us - InputRows: 2.7K (2700) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.65us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 151.230us - BlocksProduced: 7 - CloseTime: 110.971us - ExecTime: 351.476ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 383.79us - ProcessConjunctTime: 31.814us - ProjectionTime: 0ns - RowsProduced: 2.7K (2700) - RowsRead: 2.7K (2700) - RuntimeFilterInfo: - filter id = 67 filtered: 943.591K (943591) - filter id = 67 input: 956.096K (956096) - filter id = 71 filtered: 7.908K (7908) - filter id = 71 input: 12.505K (12505) - ScannerWorkerWaitTime: 346.479ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 350.773ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [108.901ms, 242.943ms, 154.488ms, ] - PerScannerRowsRead: [1.25K, 1.13K, 324, ] - PerScannerWaitTime: [119.080ms, 118.999ms, 108.400ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 388.638ms - MemoryUsage: - FreeBlocks: 336.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 193.825ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 567ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 204.403ms - ScannerCtxSchedTime: 346.464ms - ScannerFilterTime: 4.534ms - ScannerGetBlockTime: 501.304ms - ScannerInitTime: 65.270us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 556104, filtered = 548757] - RuntimeFilterInfo id 71: [type = BF, input = 7347, filtered = 4647] - BitmapIndexFilterTimer: 5.284us - BlockConditionsFilteredBloomFilterTime: 7.145us - BlockConditionsFilteredDictTime: 1.946us - BlockConditionsFilteredTime: 402.946us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 335.51us - BlockInitSeekCount: 32 - BlockInitSeekTime: 42.890us - BlockInitTime: 637.430us - BlockLoadTime: 691.997ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 851 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 91.890ms - FirstReadTime: 428.670ms - IOTimer: 0ns - InvertedIndexFilterTime: 17.48us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.779ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.97391M (4973910) - RowsShortCircuitPredInput: 4.97661M (4976610) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 66.213ms - TotalPagesNum: 851 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 581.110us PipelineXTask (index=34):(Active: 1.85ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 551.256us - CloseTime: 85.521us - GetBlockTime: 179.18us - OpenTime: 256.444us - PrepareTime: 183.611us - SinkTime: 70.86us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 987.670us - WaitBfTime: 1s11ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s260ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 66.901us - InputRows: 2.757K (2757) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.123us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 64, type = minmax), RuntimeFilter: (id = 65, type = in_or_bloomfilter), RuntimeFilter: (id = 66, type = minmax), RuntimeFilter: (id = 67, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[788 : 817085359] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 120.237us - BlocksProduced: 7 - CloseTime: 82.897us - ExecTime: 231.377ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 347.800us - ProcessConjunctTime: 26.207us - ProjectionTime: 0ns - RowsProduced: 2.757K (2757) - RowsRead: 2.757K (2757) - RuntimeFilterInfo: - filter id = 67 filtered: 944.716K (944716) - filter id = 67 input: 957.021K (957021) - filter id = 71 filtered: 7.73K (7730) - filter id = 71 input: 12.305K (12305) - ScannerWorkerWaitTime: 354.917ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 230.771ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 65, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CUS_ID, UNIONID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=59, opposite=false ComparisonPredicateBase(STRING, LE), column_id=59, opposite=false BloomFilterColumnPredicate(BIGINT), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=59, opposite=false - PerScannerRunningTime: [179.815ms, 90.620ms, 203.319ms, ] - PerScannerRowsRead: [1.27K, 1.15K, 335, ] - PerScannerWaitTime: [124.182ms, 119.170ms, 111.565ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 419.635ms - MemoryUsage: - FreeBlocks: 336.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 88.593ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 537ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 206.530ms - ScannerCtxSchedTime: 354.904ms - ScannerFilterTime: 840.833us - ScannerGetBlockTime: 472.397ms - ScannerInitTime: 90.604us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id 67: [type = BF, input = 556013, filtered = 548588] - RuntimeFilterInfo id 71: [type = BF, input = 7425, filtered = 4668] - BitmapIndexFilterTimer: 12.530us - BlockConditionsFilteredBloomFilterTime: 14.866us - BlockConditionsFilteredDictTime: 436.835us - BlockConditionsFilteredTime: 916.337us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 361.870us - BlockInitSeekCount: 70 - BlockInitSeekTime: 82.422us - BlockInitTime: 1.322ms - BlockLoadTime: 557.150ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 862 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 67.600ms - FirstReadTime: 442.812ms - IOTimer: 0ns - InvertedIndexFilterTime: 32.198us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 2.288ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.730992M (4730992) - RowsShortCircuitPredInput: 4.733749M (4733749) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 242.388K (242388) - RowsVectorPredInput: 272.018K (272018) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 51.166ms - TotalPagesNum: 862 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.683ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 18.820ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.628ms - CloseTime: 22.891us - GetBlockTime: 502.156us - OpenTime: 3.225us - PrepareTime: 159.494us - SinkTime: 18.63ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.718ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 752.401ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 14.157us - BuildRows: 81.264K (81264) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.901ms - BuildTableInsertTime: 3.733ms - BuildTableTime: 3.833ms - CloseTime: 0ns - ExecTime: 18.152ms - InputRows: 81.263K (81263) - MemoryUsage: - BuildBlocks: 7.79 MB - BuildKeyArena: 2.48 MB - HashTable: 829.44 KB - PeakMemoryUsage: 11.09 MB - OpenTime: 96.315us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.51us - RuntimeFilterComputeTime: 2.169ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=219): - BlocksProduced: 22 - BytesReceived: 0.00 - CloseTime: 18.92us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 541.722us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.81 MB - MemoryUsage: - Blocks: 18.81 MB - PeakMemoryUsage: 11.26 MB - OpenTime: 32.37us - ProjectionTime: 0ns - RowsProduced: 81.263K (81263) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s329ms PipelineXTask (index=5):(Active: 166.652us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 95.403us - CloseTime: 16.499us - GetBlockTime: 0ns - OpenTime: 2.560us - PrepareTime: 47.522us - SinkTime: 75.205us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 143.499us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.964ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 88.590us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.409us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s91ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.191us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.224us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.142us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 130.543us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 52.604us - CloseTime: 4.503us - GetBlockTime: 0ns - OpenTime: 3.258us - PrepareTime: 64.661us - SinkTime: 25.178us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.107ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.10us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.102us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s91ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.237us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.739us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.550us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 159.971us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 80.702us - CloseTime: 15.690us - GetBlockTime: 0ns - OpenTime: 3.597us - PrepareTime: 54.378us - SinkTime: 59.703us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.500us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.883ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 77.536us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.497us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.231us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.189us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.108us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 121.752us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.388us - CloseTime: 4.647us - GetBlockTime: 0ns - OpenTime: 2.193us - PrepareTime: 65.407us - SinkTime: 27.505us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.78us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.236ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.640us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.512us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.536us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.583us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 188.653us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 95.427us - CloseTime: 19.263us - GetBlockTime: 0ns - OpenTime: 3.902us - PrepareTime: 66.137us - SinkTime: 76.475us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 163.516us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.352ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 92.641us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.669us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s87ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 15.931us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.398us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.610us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 199.555us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 88.868us - CloseTime: 19.645us - GetBlockTime: 0ns - OpenTime: 3.43us - PrepareTime: 82.414us - SinkTime: 69.323us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 172.575us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.382ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 88.425us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.351us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s99ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.556us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.220us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 36.837us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 116.253us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 45.433us - CloseTime: 10.96us - GetBlockTime: 0ns - OpenTime: 2.768us - PrepareTime: 52.571us - SinkTime: 25.911us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.548ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.433us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.664us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s99ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.166us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.505us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.577us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 149.948us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 51.749us - CloseTime: 6.32us - GetBlockTime: 0ns - OpenTime: 1.978us - PrepareTime: 78.141us - SinkTime: 25.128us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 134.518us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.11ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.959us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.933us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.412us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.481us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.542us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 136.848us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 48.677us - CloseTime: 5.595us - GetBlockTime: 0ns - OpenTime: 2.827us - PrepareTime: 73.317us - SinkTime: 31.951us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.14us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.117ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 51.328us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.616us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.279us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.91us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.229us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 221.368us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 52.872us - CloseTime: 5.101us - GetBlockTime: 0ns - OpenTime: 2.225us - PrepareTime: 154.860us - SinkTime: 36.272us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 208.893us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.224ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.765us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.737us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.960us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.700us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 102.832us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 145.492us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.520us - CloseTime: 5.563us - GetBlockTime: 0ns - OpenTime: 2.394us - PrepareTime: 92.156us - SinkTime: 24.311us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.326ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631f3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 52.593us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.599us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s90ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.85us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.145us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 68: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 8.403ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.275ms - CloseTime: 95.405us - GetBlockTime: 4.344ms - OpenTime: 722.644us - PrepareTime: 298.271us - SinkTime: 2.143ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.293ms - WaitBfTime: 1s381ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 826.670ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.474us - CompressTime: 0ns - ExecTime: 2.181ms - InputRows: 28.737K (28737) - LocalBytesSent: 2.76 MB - LocalSendTime: 2.126ms - LocalSentRows: 28.737K (28737) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.170us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 28.737K (28737) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 12.378us - ExecTime: 4.246ms - InitProbeSideTime: 785.291us - JoinFilterTimer: 1.263us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 18.643us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.304us - ProbeFindNextTime: 0ns - ProbeRows: 28.737K (28737) - ProbeTime: 3.775ms - ProbeWhenBuildSideOutputTime: 745.107us - ProbeWhenProbeSideOutputTime: 1.603ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 421.128us - ProjectionTime: 418.161us - RowsProduced: 28.737K (28737) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=217. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 62, type = minmax), RuntimeFilter: (id = 63, type = in_or_bloomfilter), RuntimeFilter: (id = 68, type = minmax), RuntimeFilter: (id = 69, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {CHAT_ID IN [more than 128 elements]}, {UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[wrnH-hBwAA-6InaPMfduyckj5wlPDVeg : wrnH-hBwAAz3juJxLd-dD_vQ2HHuSnOw] - TabletIds: [15206] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 271.515us - BlocksProduced: 8 - CloseTime: 68.559us - ExecTime: 56.695ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 839.683us - ProcessConjunctTime: 314.826us - ProjectionTime: 739.96us - RowsProduced: 28.737K (28737) - RowsRead: 28.737K (28737) - RuntimeFilterInfo: - filter id = -1 filtered: 579.49K (579490) - filter id = -1 input: 706.498K (706498) - filter id = 69 filtered: 0 - filter id = 69 input: 63.421K (63421) - filter id = 71 filtered: 34.684K (34684) - filter id = 71 input: 63.421K (63421) - ScannerWorkerWaitTime: 833.374us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 54.927ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 62, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 63, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 157 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=0, opposite=false ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [39.579ms, ] - PerScannerRowsRead: [28.74K, ] - PerScannerWaitTime: [833.374us, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.216ms - MemoryUsage: - FreeBlocks: 2.22 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.787ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 399ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.643ms - ScannerCtxSchedTime: 831.470us - ScannerFilterTime: 87.676us - ScannerGetBlockTime: 39.440ms - ScannerInitTime: 62.983us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 706498, filtered = 579490] - RuntimeFilterInfo id 69: [type = BF, input = 63421, filtered = 0] - RuntimeFilterInfo id 71: [type = BF, input = 63421, filtered = 34684] - BitmapIndexFilterTimer: 1.591us - BlockConditionsFilteredBloomFilterTime: 3.524us - BlockConditionsFilteredDictTime: 2.638us - BlockConditionsFilteredTime: 74.748us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 55.504us - BlockInitSeekCount: 21 - BlockInitSeekTime: 170.703us - BlockInitTime: 282.610us - BlockLoadTime: 49.725ms - BlocksLoad: 94 - CachedPagesNum: 208 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 279 - FirstReadSeekTime: 692.459us - FirstReadTime: 8.312ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.577us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.416ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 373.985K (373985) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 3.633K (3633) - RowsShortCircuitPredFiltered: 324.512K (324512) - RowsShortCircuitPredInput: 353.249K (353249) - RowsStatsFiltered: 786 - RowsVectorPredFiltered: 20.736K (20736) - RowsVectorPredInput: 373.985K (373985) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 31.779ms - TotalPagesNum: 208 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 515.219us PipelineXTask (index=2):(Active: 8.880ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.749ms - CloseTime: 88.771us - GetBlockTime: 4.979ms - OpenTime: 704.934us - PrepareTime: 326.555us - SinkTime: 2.16ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.728ms - WaitBfTime: 1s155ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 841.870ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 7 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.97us - CompressTime: 0ns - ExecTime: 2.114ms - InputRows: 26.452K (26452) - LocalBytesSent: 2.54 MB - LocalSendTime: 1.999ms - LocalSentRows: 26.452K (26452) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 91.333us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 26.452K (26452) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 14.384us - ExecTime: 4.918ms - InitProbeSideTime: 904.639us - JoinFilterTimer: 1.194us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 18.928us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.713us - ProbeFindNextTime: 0ns - ProbeRows: 26.452K (26452) - ProbeTime: 4.258ms - ProbeWhenBuildSideOutputTime: 938.156us - ProbeWhenProbeSideOutputTime: 1.856ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 382.45us - ProjectionTime: 605.431us - RowsProduced: 26.452K (26452) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=217. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 62, type = minmax), RuntimeFilter: (id = 63, type = in_or_bloomfilter), RuntimeFilter: (id = 68, type = minmax), RuntimeFilter: (id = 69, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {CHAT_ID IN [more than 128 elements]}, {UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[wrnH-hBwAA0ZsarOcPly3zUgyjSB7L6A : wrnH-hBwAAzGZb_T-_cXgBJ0dy4Gc0oQ] - TabletIds: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 256.970us - BlocksProduced: 7 - CloseTime: 59.261us - ExecTime: 121.240ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 795.88us - ProcessConjunctTime: 304.335us - ProjectionTime: 736.880us - RowsProduced: 26.452K (26452) - RowsRead: 26.452K (26452) - RuntimeFilterInfo: - filter id = -1 filtered: 559.374K (559374) - filter id = -1 input: 677.652K (677652) - filter id = 69 filtered: 0 - filter id = 69 input: 59.09K (59090) - filter id = 71 filtered: 32.638K (32638) - filter id = 71 input: 59.09K (59090) - ScannerWorkerWaitTime: 89.701ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.546ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 62, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 63, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 143 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=0, opposite=false ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [17.171ms, ] - PerScannerRowsRead: [26.45K, ] - PerScannerWaitTime: [89.701ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 16.811ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 9.646ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 229ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.804ms - ScannerCtxSchedTime: 89.700ms - ScannerFilterTime: 94.927us - ScannerGetBlockTime: 17.26ms - ScannerInitTime: 98.975us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 677652, filtered = 559374] - RuntimeFilterInfo id 69: [type = BF, input = 59090, filtered = 0] - RuntimeFilterInfo id 71: [type = BF, input = 59090, filtered = 32638] - BitmapIndexFilterTimer: 688ns - BlockConditionsFilteredBloomFilterTime: 2.454us - BlockConditionsFilteredDictTime: 7.940us - BlockConditionsFilteredTime: 62.748us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.587us - BlockInitSeekCount: 21 - BlockInitSeekTime: 168.509us - BlockInitTime: 262.400us - BlockLoadTime: 26.192ms - BlocksLoad: 90 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 267 - FirstReadSeekTime: 820.848us - FirstReadTime: 8.586ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.139us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.535ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 359.33K (359330) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 8.094K (8094) - RowsShortCircuitPredFiltered: 312.374K (312374) - RowsShortCircuitPredInput: 338.826K (338826) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 20.504K (20504) - RowsVectorPredInput: 359.33K (359330) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 8.175ms - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 582.940us PipelineXTask (index=4):(Active: 7.89ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 6.149ms - CloseTime: 70.588us - GetBlockTime: 3.984ms - OpenTime: 605.33us - PrepareTime: 255.628us - SinkTime: 1.516ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.8ms - WaitBfTime: 909.382ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 487.211ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 7 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.553us - CompressTime: 0ns - ExecTime: 1.545ms - InputRows: 26.074K (26074) - LocalBytesSent: 2.50 MB - LocalSendTime: 1.500ms - LocalSentRows: 26.074K (26074) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.878us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 26.074K (26074) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 12.103us - ExecTime: 3.914ms - InitProbeSideTime: 707.123us - JoinFilterTimer: 1.324us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 17.829us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.342us - ProbeFindNextTime: 0ns - ProbeRows: 26.074K (26074) - ProbeTime: 3.313ms - ProbeWhenBuildSideOutputTime: 700.839us - ProbeWhenProbeSideOutputTime: 1.371ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 338.573us - ProjectionTime: 549.239us - RowsProduced: 26.074K (26074) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=217. table name = QYWX_GROUPCHAT_MEMBER): - RuntimeFilters: : RuntimeFilter: (id = 62, type = minmax), RuntimeFilter: (id = 63, type = in_or_bloomfilter), RuntimeFilter: (id = 68, type = minmax), RuntimeFilter: (id = 69, type = bloomfilter), RuntimeFilter: (id = 70, type = minmax), RuntimeFilter: (id = 71, type = bloomfilter), - PushDownPredicates: [{TYPE IN [2]}, {CHAT_ID IN [more than 128 elements]}, {UNIONID >= [ogjXwv---9nRusgf_e2BIG_lvQEA]}, {UNIONID <= [ogjXwvzzztn-z3VUUpM1vSSM0gPg]}] - KeyRanges: ScanKeys:ScanKey=[wrnH-hBwAA-3B2MEgZ_TOMcI2weQZXmA : wrnH-hBwAAz8TILkUv1BTsVPaomFBYEQ] - TabletIds: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 236.678us - BlocksProduced: 7 - CloseTime: 45.604us - ExecTime: 161.363ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 697.881us - ProcessConjunctTime: 254.60us - ProjectionTime: 571.407us - RowsProduced: 26.074K (26074) - RowsRead: 26.074K (26074) - RuntimeFilterInfo: - filter id = -1 filtered: 569.032K (569032) - filter id = -1 input: 685.792K (685792) - filter id = 69 filtered: 0 - filter id = 69 input: 58.318K (58318) - filter id = 71 filtered: 32.244K (32244) - filter id = 71 input: 58.318K (58318) - ScannerWorkerWaitTime: 92.959ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 159.951ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 62, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 63, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 138 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [CHAT_ID, UNIONID, TYPE] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=0, opposite=false ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=4, opposite=false - PerScannerRunningTime: [44.091ms, ] - PerScannerRowsRead: [26.07K, ] - PerScannerWaitTime: [92.959ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 26.620ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.908ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 558ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.723ms - ScannerCtxSchedTime: 92.957ms - ScannerFilterTime: 74.413us - ScannerGetBlockTime: 43.970ms - ScannerInitTime: 70.83us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 685792, filtered = 569032] - RuntimeFilterInfo id 69: [type = BF, input = 58318, filtered = 0] - RuntimeFilterInfo id 71: [type = BF, input = 58318, filtered = 32244] - BitmapIndexFilterTimer: 1.888us - BlockConditionsFilteredBloomFilterTime: 16.704us - BlockConditionsFilteredDictTime: 6.828us - BlockConditionsFilteredTime: 146.216us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 91.10us - BlockInitSeekCount: 60 - BlockInitSeekTime: 187.361us - BlockInitTime: 419.807us - BlockLoadTime: 64.281ms - BlocksLoad: 95 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 276 - FirstReadSeekTime: 1.137ms - FirstReadTime: 7.714ms - IOTimer: 0ns - InvertedIndexFilterTime: 21.279us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.189ms - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 363.724K (363724) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 2.596K (2596) - RowsShortCircuitPredFiltered: 316.822K (316822) - RowsShortCircuitPredInput: 342.896K (342896) - RowsStatsFiltered: 1.359K (1359) - RowsVectorPredFiltered: 20.828K (20828) - RowsVectorPredInput: 363.724K (363724) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 21.513ms - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 524.338us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 280.40us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 171.263us - CloseTime: 13.377us - GetBlockTime: 11.262us - OpenTime: 4.83us - PrepareTime: 86.379us - SinkTime: 136.796us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 259.939us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 382.658ms HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.518us - BuildRows: 158 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.257us - BuildTableInsertTime: 11.44us - BuildTableTime: 14.203us - CloseTime: 0ns - ExecTime: 154.913us - InputRows: 157 - MemoryUsage: - BuildBlocks: 10.38 KB - BuildKeyArena: 12.00 KB - HashTable: 1.62 KB - PeakMemoryUsage: 20.00 KB - OpenTime: 18.747us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.697us - RuntimeFilterComputeTime: 64.414us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.715us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.50 KB - OpenTime: 47.766us - ProjectionTime: 0ns - RowsProduced: 157 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 502.782ms PipelineXTask (index=3):(Active: 268.375us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 147.575us - CloseTime: 14.465us - GetBlockTime: 10.31us - OpenTime: 3.477us - PrepareTime: 97.505us - SinkTime: 111.536us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.665us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.168ms HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.299us - BuildRows: 144 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.769us - BuildTableInsertTime: 12.732us - BuildTableTime: 15.998us - CloseTime: 0ns - ExecTime: 137.34us - InputRows: 143 - MemoryUsage: - BuildBlocks: 9.44 KB - BuildKeyArena: 12.00 KB - HashTable: 1.57 KB - PeakMemoryUsage: 19.00 KB - OpenTime: 25.852us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.789us - RuntimeFilterComputeTime: 39.769us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.815us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.50 KB - OpenTime: 37.127us - ProjectionTime: 0ns - RowsProduced: 143 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 520.934ms PipelineXTask (index=5):(Active: 238.97us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 156.499us - CloseTime: 14.290us - GetBlockTime: 9.644us - OpenTime: 3.144us - PrepareTime: 59.696us - SinkTime: 122.345us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 216.628us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.538ms HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.147us - BuildRows: 139 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.69us - BuildTableInsertTime: 29.950us - BuildTableTime: 32.687us - CloseTime: 0ns - ExecTime: 137.765us - InputRows: 138 - MemoryUsage: - BuildBlocks: 9.11 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 18.65 KB - OpenTime: 15.970us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.678us - RuntimeFilterComputeTime: 36.366us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.418us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.50 KB - OpenTime: 21.61us - ProjectionTime: 0ns - RowsProduced: 138 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 508.489ms Fragment 69: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 510.456us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 389.240us - CloseTime: 18.929us - GetBlockTime: 240.225us - OpenTime: 5.493us - PrepareTime: 90.164us - SinkTime: 122.989us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 483.618us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.292ms DATA_STREAM_SINK_OPERATOR (id=216,dst_id=216): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.881us - CompressTime: 0ns - ExecTime: 169.240us - InputRows: 438 - LocalBytesSent: 28.94 KB - LocalSendTime: 38.250us - LocalSentRows: 438 - MemoryUsage: - PeakMemoryUsage: 46.50 KB - MergeBlockTime: 0ns - OpenTime: 37.173us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 438 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 34.663us - SplitBlockHashComputeTime: 16.363us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=215): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 5.732us - ExecTime: 208.636us - InitProbeSideTime: 102.630us - JoinFilterTimer: 161ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 13.725us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 815ns - ProbeFindNextTime: 0ns - ProbeRows: 438 - ProbeTime: 164.372us - ProbeWhenBuildSideOutputTime: 22.591us - ProbeWhenProbeSideOutputTime: 10.620us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.23us - ProjectionTime: 20.747us - RowsProduced: 438 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=214): - BlocksProduced: 1 - CloseTime: 998ns - DeserializeAndMergeTime: 0ns - ExecTime: 60.430us - GetResultsTime: 42.753us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.671us - HashTableSize: 438 - InsertKeysToColumnTime: 10.835us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.792us - ProjectionTime: 0ns - RowsProduced: 438 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 519.344ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 173.61us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 92.202us - CloseTime: 12.495us - GetBlockTime: 9.599us - OpenTime: 2.353us - PrepareTime: 60.358us - SinkTime: 61.319us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 152.181us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.413ms HASH_JOIN_SINK_OPERATOR (id=215): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.184us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.481us - BuildTableInsertTime: 20.811us - BuildTableTime: 25.659us - CloseTime: 0ns - ExecTime: 69.200us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 9.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=210): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.601us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.454us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 31.412us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 33.458ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 457.320us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 215.125us - CloseTime: 13.572us - GetBlockTime: 10.55us - OpenTime: 4.68us - PrepareTime: 219.198us - SinkTime: 179.577us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 436.199us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.90ms AGGREGATION_SINK_OPERATOR (id=214): - BuildTime: 0ns - CloseTime: 822ns - DeserializeAndMergeTime: 9.308us - ExecTime: 342.916us - ExprTime: 0ns - HashTableComputeTime: 151.948us - HashTableEmplaceTime: 142.529us - HashTableInputCount: 438 - InputRows: 438 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 40.28 KB - PeakMemoryUsage: 784.28 KB - SerializeKeyArena: 744.00 KB - MergeTime: 172.358us - OpenTime: 163.46us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=213): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.328us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 56.00 KB - MemoryUsage: - Blocks: 56.00 KB - PeakMemoryUsage: 30.00 KB - OpenTime: 34.229us - ProjectionTime: 0ns - RowsProduced: 438 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 516.290ms Fragment 70: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.790ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 836.122us - CloseTime: 71.671us - GetBlockTime: 299.246us - OpenTime: 492.734us - PrepareTime: 378.71us - SinkTime: 18.60us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.706ms - WaitBfTime: 498.697ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.46ms DATA_STREAM_SINK_OPERATOR (id=213,dst_id=213): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.258us - CompressTime: 0ns - ExecTime: 62.0us - InputRows: 438 - LocalBytesSent: 23.88 KB - LocalSendTime: 12.889us - LocalSentRows: 438 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.458us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 438 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=212): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 171.712us - CloseTime: 9.726us - DeserializeAndMergeTime: 0ns - ExecTime: 334.243us - ExprTime: 2.616us - GetResultsTime: 72.103us - HashTableComputeTime: 157.243us - HashTableEmplaceTime: 135.698us - HashTableInputCount: 438 - HashTableIterateTime: 2.80us - HashTableSize: 438 - InsertKeysToColumnTime: 14.848us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 40.28 KB - PeakMemoryUsage: 784.28 KB - SerializeKeyArena: 744.00 KB - MergeTime: 0ns - OpenTime: 75.165us - ProjectionTime: 0ns - RowsProduced: 438 - SerializeDataTime: 39.947us - SerializeKeyTime: 0ns - SerializeResultTime: 73.697us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=211. table name = QYWX_GROUPCHAT_INFO): - RuntimeFilters: : RuntimeFilter: (id = 68, type = minmax), RuntimeFilter: (id = 69, type = bloomfilter), - PushDownPredicates: [{IS_DELETED IN [0]}, {CHAT_ID >= [wrnH-hBwAA-3B2MEgZ_TOMcI2weQZXmA]}, {CHAT_ID <= [wrnH-hBwAAzzWT1nRX0yPE7e-3Lgus9Q]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 241.907us - BlocksProduced: 1 - CloseTime: 45.405us - ExecTime: 11.587ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 579.425us - ProcessConjunctTime: 98.730us - ProjectionTime: 15.666us - RowsProduced: 438 - RowsRead: 438 - RuntimeFilterInfo: - filter id = 69 filtered: 4.609K (4609) - filter id = 69 input: 11.44K (11440) - ScannerWorkerWaitTime: 1.901ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 10.898ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [OWNER, NAME, CHAT_ID, IS_DELETED] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=3, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(STRING, GE), column_id=3, opposite=false ComparisonPredicateBase(STRING, LE), column_id=3, opposite=false - PerScannerRunningTime: [1.300ms, ] - PerScannerRowsRead: [438, ] - PerScannerWaitTime: [1.901ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.233ms - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 7.526ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 132ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.987ms - ScannerCtxSchedTime: 1.900ms - ScannerFilterTime: 2.640us - ScannerGetBlockTime: 1.288ms - ScannerInitTime: 110.955us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id 69: [type = BF, input = 11440, filtered = 4609] - BitmapIndexFilterTimer: 804ns - BlockConditionsFilteredBloomFilterTime: 2.620us - BlockConditionsFilteredDictTime: 327.488us - BlockConditionsFilteredTime: 353.381us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.381us - BlockInitSeekCount: 8 - BlockInitSeekTime: 50.369us - BlockInitTime: 433.539us - BlockLoadTime: 8.576ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 198.697us - FirstReadSeekCount: 12 - FirstReadSeekTime: 17.841us - FirstReadTime: 489.47us - IOTimer: 0ns - InvertedIndexFilterTime: 3.943us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 701.177us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 206.900us - OutputIndexResultColumnTimer: 989ns - RawRowsRead: 22.996K (22996) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.609K (4609) - RowsShortCircuitPredInput: 11.44K (11440) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 11.556K (11556) - RowsVectorPredInput: 22.996K (22996) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 681.131us - ShortPredEvalTime: 493.988us - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 201.578us Fragment 71: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 652.745us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 269.207us - CloseTime: 69.224us - GetBlockTime: 67.7us - OpenTime: 152.714us - PrepareTime: 153.170us - SinkTime: 21.372us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 572.309us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.150ms DATA_STREAM_SINK_OPERATOR (id=210,dst_id=210): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.967us - CompressTime: 0ns - ExecTime: 68.768us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 12.576us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.167us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=209. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 480ns - BlocksProduced: 1 - CloseTime: 49.513us - ExecTime: 20.754ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 211.170us - ProcessConjunctTime: 69.258us - ProjectionTime: 6.174us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 19.931ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 20.422ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [39.059us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [19.931ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.826us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 336.408us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 485.664us - ScannerCtxSchedTime: 19.929ms - ScannerFilterTime: 1.605us - ScannerGetBlockTime: 30.481us - ScannerInitTime: 62.327us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 595ns - BlockConditionsFilteredBloomFilterTime: 1.903us - BlockConditionsFilteredDictTime: 6.788us - BlockConditionsFilteredTime: 27.179us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.263us - BlockInitSeekCount: 6 - BlockInitSeekTime: 20.45us - BlockInitTime: 75.14us - BlockLoadTime: 204.437us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.923us - FirstReadTime: 11.733us - IOTimer: 0ns - InvertedIndexFilterTime: 3.649us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.280us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 26.479us - OutputIndexResultColumnTimer: 256ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 129ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.737us Fragment 72: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 297.712ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 297.322ms - CloseTime: 34.508us - GetBlockTime: 1.219ms - OpenTime: 166.182us - PrepareTime: 178.424us - SinkTime: 295.129ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 48.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.305ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.121us - CompressTime: 0ns - ExecTime: 295.98ms - InputRows: 835.868K (835868) - LocalBytesSent: 7.17 MB - LocalSendTime: 1.345ms - LocalSentRows: 835.868K (835868) - MemoryUsage: - PeakMemoryUsage: 13.03 MB - MergeBlockTime: 0ns - OpenTime: 74.544us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 835.868K (835868) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.352ms - SplitBlockHashComputeTime: 176.409ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=207. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15145] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 547ns - BlocksProduced: 206 - CloseTime: 18.291us - ExecTime: 56.476ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 234.60us - ProcessConjunctTime: 25.822us - ProjectionTime: 0ns - RowsProduced: 835.868K (835868) - RowsRead: 835.868K (835868) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 42.540ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 55.101ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [8.923ms, ] - PerScannerRowsRead: [835.87K, ] - PerScannerWaitTime: [42.540ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.526ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 159.11us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.987us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.544ms - ScannerCtxSchedTime: 42.539ms - ScannerFilterTime: 53.766us - ScannerGetBlockTime: 8.809ms - ScannerInitTime: 105.546us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 505ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.966us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.418us - BlockInitTime: 41.497us - BlockLoadTime: 8.566ms - BlocksLoad: 207 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 50.908us - FirstReadTime: 8.87ms - IOTimer: 0ns - InvertedIndexFilterTime: 598ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 20.272us - OutputIndexResultColumnTimer: 18.197us - RawRowsRead: 835.868K (835868) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 104 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 176.568ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 176.12ms - CloseTime: 46.440us - GetBlockTime: 947.429us - OpenTime: 209.524us - PrepareTime: 288.640us - SinkTime: 174.353ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 30.651ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.948ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.518us - CompressTime: 0ns - ExecTime: 174.381ms - InputRows: 834.234K (834234) - LocalBytesSent: 7.16 MB - LocalSendTime: 907.3us - LocalSentRows: 834.234K (834234) - MemoryUsage: - PeakMemoryUsage: 12.56 MB - MergeBlockTime: 0ns - OpenTime: 83.773us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 834.234K (834234) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 148.887ms - SplitBlockHashComputeTime: 9.546ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=207. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15147] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 806ns - BlocksProduced: 206 - CloseTime: 28.436us - ExecTime: 112.502ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 276.756us - ProcessConjunctTime: 61.332us - ProjectionTime: 0ns - RowsProduced: 834.234K (834234) - RowsRead: 834.234K (834234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 55.759ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.323ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [50.823ms, ] - PerScannerRowsRead: [834.23K, ] - PerScannerWaitTime: [55.759ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 50.156ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 218.133us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.27us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.542ms - ScannerCtxSchedTime: 55.757ms - ScannerFilterTime: 83.227us - ScannerGetBlockTime: 50.653ms - ScannerInitTime: 102.896us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 503ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.983us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.804us - BlockInitTime: 39.573us - BlockLoadTime: 50.241ms - BlocksLoad: 207 - CachedPagesNum: 103 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 75.149us - FirstReadTime: 49.474ms - IOTimer: 0ns - InvertedIndexFilterTime: 571ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 36.847us - OutputIndexResultColumnTimer: 27.130us - RawRowsRead: 834.234K (834234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 103 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 146.309ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 145.924ms - CloseTime: 46.182us - GetBlockTime: 1.36ms - OpenTime: 154.133us - PrepareTime: 174.692us - SinkTime: 144.119ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 33.695ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.873ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.767us - CompressTime: 0ns - ExecTime: 144.136ms - InputRows: 835.915K (835915) - LocalBytesSent: 7.17 MB - LocalSendTime: 1.15ms - LocalSentRows: 835.915K (835915) - MemoryUsage: - PeakMemoryUsage: 12.63 MB - MergeBlockTime: 0ns - OpenTime: 66.250us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 835.915K (835915) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 128.538ms - SplitBlockHashComputeTime: 7.972ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=207. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15149] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 705ns - BlocksProduced: 206 - CloseTime: 32.194us - ExecTime: 212.900ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 222.483us - ProcessConjunctTime: 29.237us - ProjectionTime: 0ns - RowsProduced: 835.915K (835915) - RowsRead: 835.915K (835915) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 54.832ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 211.664ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [147.144ms, ] - PerScannerRowsRead: [835.91K, ] - PerScannerWaitTime: [54.832ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 146.49ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 259.207us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.779us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.905ms - ScannerCtxSchedTime: 54.830ms - ScannerFilterTime: 185.821us - ScannerGetBlockTime: 146.817ms - ScannerInitTime: 95.823us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 854ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.497us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.525us - BlockInitTime: 82.17us - BlockLoadTime: 146.29ms - BlocksLoad: 207 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 120.417us - FirstReadTime: 144.741ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.200us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 59.477us - OutputIndexResultColumnTimer: 50.551us - RawRowsRead: 835.915K (835915) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 104 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 73: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 20.641ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 19.999ms - CloseTime: 186.757us - GetBlockTime: 267.566us - OpenTime: 213.336us - PrepareTime: 231.532us - SinkTime: 19.427ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.304ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.753us - CompressTime: 0ns - ExecTime: 19.510ms - InputRows: 62.352K (62352) - LocalBytesSent: 1.37 MB - LocalSendTime: 253.773us - LocalSentRows: 62.352K (62352) - MemoryUsage: - PeakMemoryUsage: 2.50 MB - MergeBlockTime: 0ns - OpenTime: 71.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 62.352K (62352) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.843ms - SplitBlockHashComputeTime: 601.602us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 453ns - BlocksProduced: 19 - CloseTime: 166.315us - ExecTime: 359.721ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 276.644us - ProcessConjunctTime: 50.794us - ProjectionTime: 199.543us - RowsProduced: 62.352K (62352) - RowsRead: 62.352K (62352) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 768.846ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 358.814ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [12.877us, 9.909us, 13.013us, 10.641ms, ] - PerScannerRowsRead: [0, 0, 0, 62.35K, ] - PerScannerWaitTime: [189.332ms, 191.893ms, 193.727ms, 193.893ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.262ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 291.784ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.65us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 132.340ms - ScannerCtxSchedTime: 768.839ms - ScannerFilterTime: 23.786us - ScannerGetBlockTime: 10.600ms - ScannerInitTime: 129.826us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.93us - BlockConditionsFilteredBloomFilterTime: 316ns - BlockConditionsFilteredDictTime: 257ns - BlockConditionsFilteredTime: 9.491us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 366ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 44.654us - BlockInitTime: 178.791us - BlockLoadTime: 301.556ms - BlocksLoad: 262 - CachedPagesNum: 290 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 278.3ms - FirstReadSeekCount: 649 - FirstReadSeekTime: 301.344us - FirstReadTime: 13.134ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.881us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.769ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 733.736us - OutputIndexResultColumnTimer: 29.357us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 5.351ms - ShortPredEvalTime: 1.102ms - TotalPagesNum: 290 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 35.291us PipelineXTask (index=1):(Active: 27.531ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 16.529ms - CloseTime: 181.347us - GetBlockTime: 244.656us - OpenTime: 10.632ms - PrepareTime: 181.705us - SinkTime: 5.565ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.507ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.908ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.278us - CompressTime: 0ns - ExecTime: 5.639ms - InputRows: 61.293K (61293) - LocalBytesSent: 1.34 MB - LocalSendTime: 168.814us - LocalSentRows: 61.293K (61293) - MemoryUsage: - PeakMemoryUsage: 2.38 MB - MergeBlockTime: 0ns - OpenTime: 68.645us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 61.293K (61293) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.107ms - SplitBlockHashComputeTime: 585.654us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 409ns - BlocksProduced: 19 - CloseTime: 167.412us - ExecTime: 255.438ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 10.691ms - ProcessConjunctTime: 40.639us - ProjectionTime: 309.396us - RowsProduced: 61.293K (61293) - RowsRead: 61.293K (61293) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 891.236ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 244.25ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [9.132us, 8.119us, 6.900us, 18.637ms, ] - PerScannerRowsRead: [0, 0, 0, 61.29K, ] - PerScannerWaitTime: [221.809ms, 222.525ms, 223.419ms, 223.481ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 17.955ms - MemoryUsage: - FreeBlocks: 1.98 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 111.813ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 962ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 131.337ms - ScannerCtxSchedTime: 891.229ms - ScannerFilterTime: 30.567us - ScannerGetBlockTime: 18.588ms - ScannerInitTime: 10.553ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 970ns - BlockConditionsFilteredBloomFilterTime: 220ns - BlockConditionsFilteredDictTime: 184ns - BlockConditionsFilteredTime: 8.118us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 277ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 47.875us - BlockInitTime: 187.42us - BlockLoadTime: 129.490ms - BlocksLoad: 282 - CachedPagesNum: 310 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 107.798ms - FirstReadSeekCount: 709 - FirstReadSeekTime: 323.804us - FirstReadTime: 13.631ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.865us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.255ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 573.253us - OutputIndexResultColumnTimer: 43.409us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.578ms - ShortPredEvalTime: 324.518us - TotalPagesNum: 310 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 32.707us PipelineXTask (index=2):(Active: 27.143ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.675ms - CloseTime: 301.189us - GetBlockTime: 333.712us - OpenTime: 952.197us - PrepareTime: 206.189us - SinkTime: 24.275ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.733ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.748ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.276us - CompressTime: 0ns - ExecTime: 24.345ms - InputRows: 60.76K (60760) - LocalBytesSent: 1.33 MB - LocalSendTime: 264.105us - LocalSentRows: 60.76K (60760) - MemoryUsage: - PeakMemoryUsage: 2.35 MB - MergeBlockTime: 0ns - OpenTime: 63.992us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 60.76K (60760) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.124ms - SplitBlockHashComputeTime: 1.4ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 576ns - BlocksProduced: 19 - CloseTime: 282.543us - ExecTime: 117.131ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 1.28ms - ProcessConjunctTime: 79.97us - ProjectionTime: 297.950us - RowsProduced: 60.76K (60760) - RowsRead: 60.76K (60760) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.587ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.192ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [47.854us, 9.217us, 12.498us, 17.132ms, ] - PerScannerRowsRead: [0, 0, 0, 60.76K, ] - PerScannerWaitTime: [502.165us, 583.314us, 621.697us, 880.703us, ] - BlockConvertTime: 0ns - BlockFetchTime: 16.663ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 441.922ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.619us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 213.66ms - ScannerCtxSchedTime: 2.577ms - ScannerFilterTime: 21.125us - ScannerGetBlockTime: 17.97ms - ScannerInitTime: 802.864us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.983us - BlockConditionsFilteredBloomFilterTime: 226ns - BlockConditionsFilteredDictTime: 158ns - BlockConditionsFilteredTime: 12.780us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 222ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 75.665us - BlockInitTime: 278.200us - BlockLoadTime: 457.847ms - BlocksLoad: 288 - CachedPagesNum: 318 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 400.262ms - FirstReadSeekCount: 721 - FirstReadSeekTime: 402.229us - FirstReadTime: 44.391ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.728us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.762ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.21ms - OutputIndexResultColumnTimer: 49.495us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 6.307ms - ShortPredEvalTime: 1.271ms - TotalPagesNum: 318 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 68.580us PipelineXTask (index=3):(Active: 108.923ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 108.332ms - CloseTime: 178.169us - GetBlockTime: 244.3us - OpenTime: 191.788us - PrepareTime: 215.195us - SinkTime: 107.795ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 7.632ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.807ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.224us - CompressTime: 0ns - ExecTime: 107.881ms - InputRows: 61.616K (61616) - LocalBytesSent: 1.35 MB - LocalSendTime: 176.101us - LocalSentRows: 61.616K (61616) - MemoryUsage: - PeakMemoryUsage: 2.43 MB - MergeBlockTime: 0ns - OpenTime: 80.680us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 61.616K (61616) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 105.944ms - SplitBlockHashComputeTime: 873.564us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 547ns - BlocksProduced: 19 - CloseTime: 163.19us - ExecTime: 114.274ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 255.419us - ProcessConjunctTime: 49.65us - ProjectionTime: 359.677us - RowsProduced: 61.616K (61616) - RowsRead: 61.616K (61616) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 327.613ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 113.262ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [9.094us, 15.782us, 11.110us, 23.764ms, ] - PerScannerRowsRead: [0, 0, 0, 61.62K, ] - PerScannerWaitTime: [78.424ms, 79.700ms, 83.673ms, 85.815ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.172ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 215.613ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.279us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 132.692ms - ScannerCtxSchedTime: 327.606ms - ScannerFilterTime: 28.86us - ScannerGetBlockTime: 23.717ms - ScannerInitTime: 119.749us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.269us - BlockConditionsFilteredBloomFilterTime: 738ns - BlockConditionsFilteredDictTime: 490ns - BlockConditionsFilteredTime: 15.109us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 688ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 52.867us - BlockInitTime: 237.269us - BlockLoadTime: 238.253ms - BlocksLoad: 259 - CachedPagesNum: 289 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 214.343ms - FirstReadSeekCount: 604 - FirstReadSeekTime: 235.261us - FirstReadTime: 12.632ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.136us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.743ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 799.368us - OutputIndexResultColumnTimer: 26.910us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 6.31ms - ShortPredEvalTime: 811.25us - TotalPagesNum: 289 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.306us PipelineXTask (index=4):(Active: 10.903ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.380ms - CloseTime: 175.100us - GetBlockTime: 77.672us - OpenTime: 5.98ms - PrepareTime: 239.338us - SinkTime: 144.429us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.495ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.72us - CompressTime: 0ns - ExecTime: 235.370us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 62.3us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 79.656us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.90us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 702ns - BlocksProduced: 0 - CloseTime: 161.23us - ExecTime: 144.150ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 5.169ms - ProcessConjunctTime: 84.118us - ProjectionTime: 4.695us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 123.844ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 138.738ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.602us, 5.685us, 5.461us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [41.001ms, 41.393ms, 41.449ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 184.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 249.481ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 371ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 123.367ms - ScannerCtxSchedTime: 123.838ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.254us - ScannerInitTime: 4.957ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.203us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.610us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 45.711us - BlockInitTime: 191.74us - BlockLoadTime: 248.823ms - BlocksLoad: 240 - CachedPagesNum: 245 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 147.410ms - FirstReadSeekCount: 711 - FirstReadSeekTime: 296.938us - FirstReadTime: 98.753ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.184us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 88.972us - OutputIndexResultColumnTimer: 31.709us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 245 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 976.921us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 463.470us - CloseTime: 160.150us - GetBlockTime: 85.563us - OpenTime: 173.255us - PrepareTime: 174.67us - SinkTime: 163.235us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 806.934us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.500ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.752us - CompressTime: 0ns - ExecTime: 237.966us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 95.436us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 59.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 442ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 467ns - BlocksProduced: 0 - CloseTime: 142.42us - ExecTime: 160.398ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 239.256us - ProcessConjunctTime: 27.242us - ProjectionTime: 4.958us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 268.14ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 159.927ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [15.030us, 5.277us, 5.888us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [87.869ms, 89.197ms, 90.947ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 199.473ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 515ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 135.778ms - ScannerCtxSchedTime: 267.59ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.186us - ScannerInitTime: 122.450us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.248us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.73us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 36.635us - BlockInitTime: 155.316us - BlockLoadTime: 198.866ms - BlocksLoad: 264 - CachedPagesNum: 272 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 171.952ms - FirstReadSeekCount: 783 - FirstReadSeekTime: 276.77us - FirstReadTime: 23.886ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.618us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 106.54us - OutputIndexResultColumnTimer: 36.408us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 272 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 5.155ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.494ms - CloseTime: 124.720us - GetBlockTime: 70.319us - OpenTime: 2.294ms - PrepareTime: 227.601us - SinkTime: 101.978us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.15ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.990ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.756us - CompressTime: 0ns - ExecTime: 183.547us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.895us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 70.677us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 719ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 814ns - BlocksProduced: 0 - CloseTime: 111.548us - ExecTime: 142.954ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 2.385ms - ProcessConjunctTime: 81.160us - ProjectionTime: 5.266us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 30.522ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 140.382ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [7.820us, 5.563us, 5.280us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [10.163ms, 10.158ms, 10.200ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 276.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 421.359ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 157ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 189.486ms - ScannerCtxSchedTime: 30.512ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.75us - ScannerInitTime: 2.150ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.559us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.970us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 51.638us - BlockInitTime: 201.941us - BlockLoadTime: 420.552ms - BlocksLoad: 255 - CachedPagesNum: 260 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 369.335ms - FirstReadSeekCount: 756 - FirstReadSeekTime: 384.251us - FirstReadTime: 47.761ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.598us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 107.189us - OutputIndexResultColumnTimer: 37.951us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 260 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 43.577ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.735ms - CloseTime: 135.153us - GetBlockTime: 70.436us - OpenTime: 21.470ms - PrepareTime: 225.673us - SinkTime: 141.656us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.61ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.633ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.265us - CompressTime: 0ns - ExecTime: 233.356us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 84.454us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 76.29us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 383ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 713ns - BlocksProduced: 0 - CloseTime: 117.50us - ExecTime: 379.188ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 21.536ms - ProcessConjunctTime: 80.205us - ProjectionTime: 6.128us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 401.52ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 357.460ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [6.942us, 10.240us, 10.675us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [129.572ms, 135.508ms, 135.970ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 608.435ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 545ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 134.423ms - ScannerCtxSchedTime: 401.48ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.733us - ScannerInitTime: 21.343ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 817ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.902us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 30.37us - BlockInitTime: 126.943us - BlockLoadTime: 607.904ms - BlocksLoad: 259 - CachedPagesNum: 265 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 116.560ms - FirstReadSeekCount: 768 - FirstReadSeekTime: 360.775us - FirstReadTime: 482.283ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.222us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 90.628us - OutputIndexResultColumnTimer: 30.887us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 265 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 22.474ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 11.186ms - CloseTime: 160.631us - GetBlockTime: 101.957us - OpenTime: 10.919ms - PrepareTime: 203.922us - SinkTime: 133.777us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 879.114us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 901.816us DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.297us - CompressTime: 0ns - ExecTime: 218.283us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 73.759us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 72.54us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 530ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 554ns - BlocksProduced: 0 - CloseTime: 144.801us - ExecTime: 330.7ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 10.999ms - ProcessConjunctTime: 66.448us - ProjectionTime: 6.121us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 214.932ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 318.756ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.226us, 12.238us, 9.207us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [67.108ms, 70.818ms, 77.005ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 184.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 397.394ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 183ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 163.696ms - ScannerCtxSchedTime: 214.927ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.845us - ScannerInitTime: 10.814ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.29us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.540us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 40.536us - BlockInitTime: 176.306us - BlockLoadTime: 396.737ms - BlocksLoad: 267 - CachedPagesNum: 273 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 364.575ms - FirstReadSeekCount: 792 - FirstReadSeekTime: 368.383us - FirstReadTime: 28.917ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.892us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 87.916us - OutputIndexResultColumnTimer: 45.503us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 273 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 116.127ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 71.38ms - CloseTime: 121.772us - GetBlockTime: 77.601us - OpenTime: 44.765ms - PrepareTime: 192.678us - SinkTime: 26.152ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.34ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.135ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.906us - CompressTime: 0ns - ExecTime: 26.221ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 59.498us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 56.356us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 505ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 666ns - BlocksProduced: 0 - CloseTime: 104.210us - ExecTime: 323.446ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 44.820ms - ProcessConjunctTime: 76.603us - ProjectionTime: 4.923us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 732.189ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 278.440ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [6.116us, 6.320us, 10.518us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [243.266ms, 243.518ms, 245.404ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 184.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 110.563ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 195ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 110.758ms - ScannerCtxSchedTime: 732.190ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 9.622us - ScannerInitTime: 44.639ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 587ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.819us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 31.155us - BlockInitTime: 93.345us - BlockLoadTime: 110.160ms - BlocksLoad: 269 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 91.497ms - FirstReadSeekCount: 798 - FirstReadSeekTime: 266.719us - FirstReadTime: 16.330ms - IOTimer: 0ns - InvertedIndexFilterTime: 844ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 72.101us - OutputIndexResultColumnTimer: 24.751us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 888.89us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 363.770us - CloseTime: 167.41us - GetBlockTime: 51.930us - OpenTime: 180.64us - PrepareTime: 170.697us - SinkTime: 97.991us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 711.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.534ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.325us - CompressTime: 0ns - ExecTime: 181.30us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 52.889us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 72.487us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 716ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 639ns - BlocksProduced: 0 - CloseTime: 147.52us - ExecTime: 317.527ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 230.122us - ProcessConjunctTime: 62.740us - ProjectionTime: 4.997us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 533.395ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 317.94ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [14.549us, 6.140us, 6.378us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [175.344ms, 178.419ms, 179.631ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 184.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 252.844ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 240ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.320ms - ScannerCtxSchedTime: 533.391ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 8.424us - ScannerInitTime: 89.881us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 634ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.598us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 38.397us - BlockInitTime: 120.957us - BlockLoadTime: 252.369ms - BlocksLoad: 274 - CachedPagesNum: 286 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 234.574ms - FirstReadSeekCount: 813 - FirstReadSeekTime: 279.409us - FirstReadTime: 15.348ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.197us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 68.778us - OutputIndexResultColumnTimer: 28.586us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 286 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 7.114ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.577ms - CloseTime: 143.217us - GetBlockTime: 322.815us - OpenTime: 145.810us - PrepareTime: 241.276us - SinkTime: 6.9ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.962ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.516ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.546us - CompressTime: 0ns - ExecTime: 6.82ms - InputRows: 61.546K (61546) - LocalBytesSent: 1.35 MB - LocalSendTime: 162.144us - LocalSentRows: 61.546K (61546) - MemoryUsage: - PeakMemoryUsage: 2.29 MB - MergeBlockTime: 0ns - OpenTime: 67.637us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 61.546K (61546) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.417ms - SplitBlockHashComputeTime: 784.126us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 602ns - BlocksProduced: 19 - CloseTime: 129.381us - ExecTime: 264.471ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 216.248us - ProcessConjunctTime: 47.454us - ProjectionTime: 231.294us - RowsProduced: 61.546K (61546) - RowsRead: 61.546K (61546) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 552.952ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 263.573ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.888us, 16.490us, 77.011ms, ] - PerScannerRowsRead: [0, 0, 61.55K, ] - PerScannerWaitTime: [181.079ms, 183.234ms, 188.639ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 76.634ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 96.592ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 944ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.250ms - ScannerCtxSchedTime: 552.947ms - ScannerFilterTime: 16.813us - ScannerGetBlockTime: 76.982ms - ScannerInitTime: 77.220us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 844ns - BlockConditionsFilteredBloomFilterTime: 182ns - BlockConditionsFilteredDictTime: 102ns - BlockConditionsFilteredTime: 6.248us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 185ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 32.219us - BlockInitTime: 133.719us - BlockLoadTime: 172.915ms - BlocksLoad: 201 - CachedPagesNum: 229 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 155.193ms - FirstReadSeekCount: 553 - FirstReadSeekTime: 239.381us - FirstReadTime: 13.180ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.272us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.693ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 220.697us - OutputIndexResultColumnTimer: 21.879us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.191ms - ShortPredEvalTime: 108.577us - TotalPagesNum: 229 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.623us Fragment 74: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 19.686ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.257ms - CloseTime: 53.443us - GetBlockTime: 314.417us - OpenTime: 186.754us - PrepareTime: 179.182us - SinkTime: 18.619ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.792ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.758us - CompressTime: 0ns - ExecTime: 18.698ms - InputRows: 78.716K (78716) - LocalBytesSent: 5.18 MB - LocalSendTime: 198.520us - LocalSentRows: 78.716K (78716) - MemoryUsage: - PeakMemoryUsage: 8.48 MB - MergeBlockTime: 0ns - OpenTime: 75.221us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 78.716K (78716) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.201ms - SplitBlockHashComputeTime: 7.57ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : - PushDownPredicates: [{UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15193] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 628ns - BlocksProduced: 21 - CloseTime: 36.110us - ExecTime: 60.216ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 249.654us - ProcessConjunctTime: 71.237us - ProjectionTime: 0ns - RowsProduced: 78.716K (78716) - RowsRead: 78.716K (78716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.480ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 59.628ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [53.909ms, ] - PerScannerRowsRead: [78.72K, ] - PerScannerWaitTime: [2.480ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 53.726ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.599ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.143us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.135ms - ScannerCtxSchedTime: 2.476ms - ScannerFilterTime: 19.970us - ScannerGetBlockTime: 53.853ms - ScannerInitTime: 76.905us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 433ns - BlockConditionsFilteredBloomFilterTime: 2.109us - BlockConditionsFilteredDictTime: 517ns - BlockConditionsFilteredTime: 26.631us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 16.882us - BlockInitSeekCount: 9 - BlockInitSeekTime: 133.821us - BlockInitTime: 187.884us - BlockLoadTime: 56.176ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 21 - FirstReadSeekTime: 929.879us - FirstReadTime: 3.272ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.235us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 47.964ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.354ms - OutputIndexResultColumnTimer: 5.837us - RawRowsRead: 83.949K (83949) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 5.233K (5233) - RowsShortCircuitPredInput: 83.949K (83949) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 200.591us - TotalPagesNum: 35 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 16.355us PipelineXTask (index=1):(Active: 62.649ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 62.230ms - CloseTime: 73.641us - GetBlockTime: 339.699us - OpenTime: 162.483us - PrepareTime: 174.63us - SinkTime: 61.584ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.528ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.515ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.250us - CompressTime: 0ns - ExecTime: 61.671ms - InputRows: 71.341K (71341) - LocalBytesSent: 4.69 MB - LocalSendTime: 243.175us - LocalSentRows: 71.341K (71341) - MemoryUsage: - PeakMemoryUsage: 6.80 MB - MergeBlockTime: 0ns - OpenTime: 76.869us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 71.341K (71341) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 54.838ms - SplitBlockHashComputeTime: 5.145ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : - PushDownPredicates: [{UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15195] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 628ns - BlocksProduced: 19 - CloseTime: 49.860us - ExecTime: 15.361ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 224.518us - ProcessConjunctTime: 54.557us - ProjectionTime: 0ns - RowsProduced: 71.341K (71341) - RowsRead: 71.341K (71341) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 201.317us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 14.757ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [11.270ms, ] - PerScannerRowsRead: [71.34K, ] - PerScannerWaitTime: [201.317us, ] - BlockConvertTime: 0ns - BlockFetchTime: 11.101ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.741ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.220us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.562ms - ScannerCtxSchedTime: 197.594us - ScannerFilterTime: 17.885us - ScannerGetBlockTime: 11.222ms - ScannerInitTime: 67.142us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 529ns - BlockConditionsFilteredBloomFilterTime: 1.714us - BlockConditionsFilteredDictTime: 606ns - BlockConditionsFilteredTime: 29.339us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.378us - BlockInitSeekCount: 8 - BlockInitSeekTime: 113.49us - BlockInitTime: 172.625us - BlockLoadTime: 13.644ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 19 - FirstReadSeekTime: 972.215us - FirstReadTime: 3.537ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.529us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.155ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.406ms - OutputIndexResultColumnTimer: 5.350us - RawRowsRead: 76.266K (76266) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.925K (4925) - RowsShortCircuitPredInput: 76.266K (76266) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 224.102us - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 15.986us PipelineXTask (index=2):(Active: 86.156ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 65.682ms - CloseTime: 46.59us - GetBlockTime: 233.975us - OpenTime: 20.227ms - PrepareTime: 192.647us - SinkTime: 45.111ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.981ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.702ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.913us - CompressTime: 0ns - ExecTime: 45.209ms - InputRows: 75.346K (75346) - LocalBytesSent: 4.96 MB - LocalSendTime: 170.365us - LocalSentRows: 75.346K (75346) - MemoryUsage: - PeakMemoryUsage: 7.70 MB - MergeBlockTime: 0ns - OpenTime: 90.914us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 75.346K (75346) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.801ms - SplitBlockHashComputeTime: 4.102ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : - PushDownPredicates: [{UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15197] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 669ns - BlocksProduced: 20 - CloseTime: 29.496us - ExecTime: 255.671ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 20.298ms - ProcessConjunctTime: 50.269us - ProjectionTime: 0ns - RowsProduced: 75.346K (75346) - RowsRead: 75.346K (75346) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 120.970ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 235.117ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [6.422ms, ] - PerScannerRowsRead: [75.35K, ] - PerScannerWaitTime: [120.970ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.321ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 107.323ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.6us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.381ms - ScannerCtxSchedTime: 120.968ms - ScannerFilterTime: 9.391us - ScannerGetBlockTime: 6.395ms - ScannerInitTime: 20.143ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 322ns - BlockConditionsFilteredBloomFilterTime: 1.163us - BlockConditionsFilteredDictTime: 265ns - BlockConditionsFilteredTime: 17.782us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.518us - BlockInitSeekCount: 9 - BlockInitSeekTime: 42.941us - BlockInitTime: 84.831us - BlockLoadTime: 113.547ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 106.432ms - FirstReadTime: 107.811ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.348us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.920ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.525ms - OutputIndexResultColumnTimer: 3.53us - RawRowsRead: 80.456K (80456) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 5.11K (5110) - RowsShortCircuitPredInput: 80.456K (80456) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 101.326us - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.32us PipelineXTask (index=3):(Active: 31.800ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.389ms - CloseTime: 54.968us - GetBlockTime: 325.980us - OpenTime: 181.514us - PrepareTime: 167.227us - SinkTime: 30.710ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.52ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.566ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.941us - CompressTime: 0ns - ExecTime: 30.786ms - InputRows: 74.582K (74582) - LocalBytesSent: 4.91 MB - LocalSendTime: 299.637us - LocalSentRows: 74.582K (74582) - MemoryUsage: - PeakMemoryUsage: 7.32 MB - MergeBlockTime: 0ns - OpenTime: 71.535us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74.582K (74582) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 20.483ms - SplitBlockHashComputeTime: 8.388ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : - PushDownPredicates: [{UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15199] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 582ns - BlocksProduced: 20 - CloseTime: 34.159us - ExecTime: 15.586ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 241.55us - ProcessConjunctTime: 38.674us - ProjectionTime: 0ns - RowsProduced: 74.582K (74582) - RowsRead: 74.582K (74582) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 426.714us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 14.998ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [11.252ms, ] - PerScannerRowsRead: [74.58K, ] - PerScannerWaitTime: [426.714us, ] - BlockConvertTime: 0ns - BlockFetchTime: 11.122ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.673ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.878us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.518ms - ScannerCtxSchedTime: 425.816us - ScannerFilterTime: 18.217us - ScannerGetBlockTime: 11.219ms - ScannerInitTime: 104.557us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 463ns - BlockConditionsFilteredBloomFilterTime: 1.157us - BlockConditionsFilteredDictTime: 480ns - BlockConditionsFilteredTime: 23.300us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.197us - BlockInitSeekCount: 9 - BlockInitSeekTime: 81.663us - BlockInitTime: 128.464us - BlockLoadTime: 13.687ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 922.468us - FirstReadTime: 3.391ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.77us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.334ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.445ms - OutputIndexResultColumnTimer: 5.604us - RawRowsRead: 79.427K (79427) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 4.845K (4845) - RowsShortCircuitPredInput: 79.427K (79427) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 214.165us - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 15.917us PipelineXTask (index=4):(Active: 96.191ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 95.659ms - CloseTime: 52.785us - GetBlockTime: 334.629us - OpenTime: 200.603us - PrepareTime: 269.33us - SinkTime: 94.994ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.504ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 453.955us DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.888us - CompressTime: 0ns - ExecTime: 95.159ms - InputRows: 73.951K (73951) - LocalBytesSent: 4.87 MB - LocalSendTime: 265.368us - LocalSentRows: 73.951K (73951) - MemoryUsage: - PeakMemoryUsage: 7.38 MB - MergeBlockTime: 0ns - OpenTime: 159.47us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 73.951K (73951) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 64.50ms - SplitBlockHashComputeTime: 28.872ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=203. table name = QYWX_GROUPCHAT_MEMBER_CURRENT): - RuntimeFilters: : - PushDownPredicates: [{UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15201] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 661ns - BlocksProduced: 20 - CloseTime: 30.469us - ExecTime: 31.500ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 266.996us - ProcessConjunctTime: 36.71us - ProjectionTime: 0ns - RowsProduced: 73.951K (73951) - RowsRead: 73.951K (73951) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 453.166us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 30.880ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [26.721ms, ] - PerScannerRowsRead: [73.95K, ] - PerScannerWaitTime: [453.166us, ] - BlockConvertTime: 0ns - BlockFetchTime: 26.520ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.965ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.692us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.389ms - ScannerCtxSchedTime: 449.416us - ScannerFilterTime: 30.887us - ScannerGetBlockTime: 26.667ms - ScannerInitTime: 122.803us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 504ns - BlockConditionsFilteredBloomFilterTime: 1.769us - BlockConditionsFilteredDictTime: 570ns - BlockConditionsFilteredTime: 28.547us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.99us - BlockInitSeekCount: 7 - BlockInitSeekTime: 132.0us - BlockInitTime: 187.148us - BlockLoadTime: 29.307ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 957.346us - FirstReadTime: 16.194ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.113us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.972ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 5.388ms - OutputIndexResultColumnTimer: 7.513us - RawRowsRead: 78.985K (78985) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 5.034K (5034) - RowsShortCircuitPredInput: 78.985K (78985) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 343.707us - TotalPagesNum: 31 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 26.459us Fragment 75: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 94.826ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 94.731ms - CloseTime: 17.84us - GetBlockTime: 94.438ms - OpenTime: 805ns - PrepareTime: 69.116us - SinkTime: 265.604us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.371ms DATA_STREAM_SINK_OPERATOR (id=202,dst_id=202): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.137us - CompressTime: 0ns - ExecTime: 304.802us - InputRows: 4.177K (4177) - LocalBytesSent: 202.31 KB - LocalSendTime: 256.427us - LocalSentRows: 4.177K (4177) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.177K (4177) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=201): - BlocksProduced: 2 - CloseTime: 689ns - DeserializeAndMergeTime: 0ns - ExecTime: 94.425ms - GetResultsTime: 845.551us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 48.129us - HashTableSize: 4.177K (4177) - InsertKeysToColumnTime: 388.10us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.822us - ProjectionTime: 93.528ms - RowsProduced: 4.177K (4177) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 200.909ms PipelineXTask (index=2):(Active: 1.185ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.83ms - CloseTime: 11.194us - GetBlockTime: 942.432us - OpenTime: 963ns - PrepareTime: 83.9us - SinkTime: 123.300us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.166ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.295ms DATA_STREAM_SINK_OPERATOR (id=202,dst_id=202): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.496us - CompressTime: 0ns - ExecTime: 156.902us - InputRows: 4.04K (4040) - LocalBytesSent: 195.32 KB - LocalSendTime: 118.207us - LocalSentRows: 4.04K (4040) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.867us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.04K (4040) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=201): - BlocksProduced: 1 - CloseTime: 714ns - DeserializeAndMergeTime: 0ns - ExecTime: 955.58us - GetResultsTime: 421.24us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 22.801us - HashTableSize: 4.04K (4040) - InsertKeysToColumnTime: 173.544us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.687us - ProjectionTime: 508.158us - RowsProduced: 4.04K (4040) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 197.121ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.679ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.551ms - CloseTime: 18.110us - GetBlockTime: 22.999us - OpenTime: 3.945us - PrepareTime: 100.772us - SinkTime: 2.474ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.649ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.338ms AGGREGATION_SINK_OPERATOR (id=201): - BuildTime: 0ns - CloseTime: 6.790us - DeserializeAndMergeTime: 71.308us - ExecTime: 2.519ms - ExprTime: 0ns - HashTableComputeTime: 2.320ms - HashTableEmplaceTime: 1.867ms - HashTableInputCount: 4.177K (4177) - InputRows: 4.177K (4177) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 2.465ms - OpenTime: 40.189us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=200): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 377.50 KB - MemoryUsage: - Blocks: 360.00 KB - PeakMemoryUsage: 360.00 KB - OpenTime: 30.505us - ProjectionTime: 0ns - RowsProduced: 4.177K (4177) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 194.314ms PipelineXTask (index=3):(Active: 1.985ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.889ms - CloseTime: 19.811us - GetBlockTime: 43.452us - OpenTime: 3.447us - PrepareTime: 68.188us - SinkTime: 1.813ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.956ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.132ms AGGREGATION_SINK_OPERATOR (id=201): - BuildTime: 0ns - CloseTime: 1.880us - DeserializeAndMergeTime: 73.735us - ExecTime: 1.838ms - ExprTime: 0ns - HashTableComputeTime: 1.578ms - HashTableEmplaceTime: 1.191ms - HashTableInputCount: 4.04K (4040) - InputRows: 4.04K (4040) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 1.806ms - OpenTime: 23.640us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=200): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 17.6us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.636us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 377.50 KB - MemoryUsage: - Blocks: 360.00 KB - PeakMemoryUsage: 360.00 KB - OpenTime: 26.169us - ProjectionTime: 0ns - RowsProduced: 4.04K (4040) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 175.387ms Fragment 76: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 10.314ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.935ms - CloseTime: 214.45us - GetBlockTime: 8.374ms - OpenTime: 7.554us - PrepareTime: 149.308us - SinkTime: 1.456ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.78ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.738ms DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.423us - CompressTime: 0ns - ExecTime: 1.504ms - InputRows: 7.867K (7867) - LocalBytesSent: 543.81 KB - LocalSendTime: 30.631us - LocalSentRows: 7.867K (7867) - MemoryUsage: - PeakMemoryUsage: 720.00 KB - MergeBlockTime: 0ns - OpenTime: 35.222us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.867K (7867) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 991.686us - SplitBlockHashComputeTime: 324.82us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 5.74ms - CloseTime: 170.141us - DeserializeAndMergeTime: 0ns - ExecTime: 6.876ms - ExprTime: 116.946us - GetResultsTime: 1.569ms - HashTableComputeTime: 4.847ms - HashTableEmplaceTime: 4.318ms - HashTableInputCount: 7.867K (7867) - HashTableIterateTime: 72.629us - HashTableSize: 7.867K (7867) - InsertKeysToColumnTime: 598.431us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.26 MB - SerializeKeyArena: 904.00 KB - MergeTime: 0ns - OpenTime: 36.562us - ProjectionTime: 0ns - RowsProduced: 7.867K (7867) - SerializeDataTime: 735.627us - SerializeKeyTime: 0ns - SerializeResultTime: 1.576ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=198): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 23.61us - ExecTime: 1.645ms - InitProbeSideTime: 252.914us - JoinFilterTimer: 596ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.202us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.603us - ProbeFindNextTime: 0ns - ProbeRows: 7.867K (7867) - ProbeTime: 775.32us - ProbeWhenBuildSideOutputTime: 27.65us - ProbeWhenProbeSideOutputTime: 196.974us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 189.915us - ProjectionTime: 801.311us - RowsProduced: 7.867K (7867) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 64.180us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 156.00 KB - OpenTime: 3.308us - ProjectionTime: 0ns - RowsProduced: 7.867K (7867) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 148.465ms PipelineXTask (index=3):(Active: 1.49ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 793.51us - CloseTime: 90.879us - GetBlockTime: 562.338us - OpenTime: 4.317us - PrepareTime: 131.169us - SinkTime: 142.406us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 919.258us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.51ms DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.310us - CompressTime: 0ns - ExecTime: 189.10us - InputRows: 350 - LocalBytesSent: 22.34 KB - LocalSendTime: 31.425us - LocalSentRows: 350 - MemoryUsage: - PeakMemoryUsage: 35.00 KB - MergeBlockTime: 0ns - OpenTime: 34.287us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 350 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 52.380us - SplitBlockHashComputeTime: 14.93us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 178.836us - CloseTime: 12.530us - DeserializeAndMergeTime: 0ns - ExecTime: 348.451us - ExprTime: 22.622us - GetResultsTime: 108.814us - HashTableComputeTime: 147.826us - HashTableEmplaceTime: 118.498us - HashTableInputCount: 350 - HashTableIterateTime: 4.742us - HashTableSize: 350 - InsertKeysToColumnTime: 38.628us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 675.98 KB - SerializeKeyArena: 664.00 KB - MergeTime: 0ns - OpenTime: 29.329us - ProjectionTime: 0ns - RowsProduced: 350 - SerializeDataTime: 47.1us - SerializeKeyTime: 0ns - SerializeResultTime: 118.912us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=198): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 49.445us - ExecTime: 266.47us - InitProbeSideTime: 33.62us - JoinFilterTimer: 198ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.800us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 872ns - ProbeFindNextTime: 0ns - ProbeRows: 350 - ProbeTime: 103.953us - ProbeWhenBuildSideOutputTime: 3.604us - ProbeWhenProbeSideOutputTime: 11.480us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 6.574us - ProjectionTime: 84.188us - RowsProduced: 350 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 29.419us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 124.00 KB - OpenTime: 786ns - ProjectionTime: 0ns - RowsProduced: 350 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 150.500ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.882ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 902.73us - CloseTime: 100.833us - GetBlockTime: 74.890us - OpenTime: 697.781us - PrepareTime: 167.430us - SinkTime: 68.668us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.762ms - WaitBfTime: 10.226ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.556ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.395us - InputRows: 4.401K (4401) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.443us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=197. table name = QYWX_USER_BEHAVIOR_DATA): - RuntimeFilters: : RuntimeFilter: (id = 60, type = minmax), RuntimeFilter: (id = 61, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[13302448394 : zhangsb] - TabletIds: [21089] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 88.838us - BlocksProduced: 2 - CloseTime: 98.772us - ExecTime: 128.370ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 780.984us - ProcessConjunctTime: 403.748us - ProjectionTime: 0ns - RowsProduced: 4.401K (4401) - RowsRead: 4.401K (4401) - RuntimeFilterInfo: - filter id = -1 filtered: 11.958468M (11958468) - filter id = -1 input: 12.075422M (12075422) - ScannerWorkerWaitTime: 181.895ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 127.418ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 60, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 61, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [USER_ID, CHAT_CNT, REPLY_PERCENTAGE, STAT_DATE] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=0, opposite=false - PerScannerRunningTime: [1.805us, 2.057us, 5.628ms, ] - PerScannerRowsRead: [0, 0, 4.40K, ] - PerScannerWaitTime: [57.280ms, 62.066ms, 62.548ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.528ms - MemoryUsage: - FreeBlocks: 376.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 93.125ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 434ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.72ms - ScannerCtxSchedTime: 181.890ms - ScannerFilterTime: 11.198us - ScannerGetBlockTime: 5.610ms - ScannerInitTime: 167.994us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 7217940, filtered = 7149200] - BitmapIndexFilterTimer: 4.523us - BlockConditionsFilteredBloomFilterTime: 13.141us - BlockConditionsFilteredDictTime: 75.191us - BlockConditionsFilteredTime: 298.699us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 157.246us - BlockInitSeekCount: 82 - BlockInitSeekTime: 746.937us - BlockInitTime: 1.288ms - BlockLoadTime: 97.842ms - BlocksLoad: 894 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.782ms - FirstReadSeekCount: 890 - FirstReadSeekTime: 79.450us - FirstReadTime: 61.297ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.759us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 798.397us - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.38ms - OutputIndexResultColumnTimer: 2.357us - RawRowsRead: 3.60897M (3608970) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 2.550504M (2550504) - RowsShortCircuitPredFiltered: 3.5746M (3574600) - RowsShortCircuitPredInput: 3.60897M (3608970) - RowsStatsFiltered: 2.467774M (2467774) - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 537.46us - ShortPredEvalTime: 25.500ms - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 290.830us PipelineXTask (index=4):(Active: 1.820ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 848.132us - CloseTime: 129.527us - GetBlockTime: 117.960us - OpenTime: 647.314us - PrepareTime: 180.950us - SinkTime: 26.494us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.670ms - WaitBfTime: 11.22ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.427ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.629us - InputRows: 3.816K (3816) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.264us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=197. table name = QYWX_USER_BEHAVIOR_DATA): - RuntimeFilters: : RuntimeFilter: (id = 60, type = minmax), RuntimeFilter: (id = 61, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[13302448394 : zhangsb] - TabletIds: [21091] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 83.140us - BlocksProduced: 1 - CloseTime: 125.832us - ExecTime: 103.413ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 763.540us - ProcessConjunctTime: 398.712us - ProjectionTime: 0ns - RowsProduced: 3.816K (3816) - RowsRead: 3.816K (3816) - RuntimeFilterInfo: - filter id = -1 filtered: 13.126246M (13126246) - filter id = -1 input: 13.22161M (13221610) - ScannerWorkerWaitTime: 284.512ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.407ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 60, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 61, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [USER_ID, CHAT_CNT, REPLY_PERCENTAGE, STAT_DATE] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=0, opposite=false - PerScannerRunningTime: [1.487us, 1.764us, 4.186ms, ] - PerScannerRowsRead: [0, 0, 3.82K, ] - PerScannerWaitTime: [92.369ms, 95.105ms, 97.037ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.106ms - MemoryUsage: - FreeBlocks: 280.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.198ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 260ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.259ms - ScannerCtxSchedTime: 284.508ms - ScannerFilterTime: 10.602us - ScannerGetBlockTime: 4.168ms - ScannerInitTime: 122.873us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 7258192, filtered = 7190838] - BitmapIndexFilterTimer: 3.254us - BlockConditionsFilteredBloomFilterTime: 5.491us - BlockConditionsFilteredDictTime: 50.38us - BlockConditionsFilteredTime: 204.670us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 105.216us - BlockInitSeekCount: 80 - BlockInitSeekTime: 769.349us - BlockInitTime: 1.243ms - BlockLoadTime: 21.551ms - BlocksLoad: 899 - CachedPagesNum: 278 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.20ms - FirstReadSeekCount: 895 - FirstReadSeekTime: 73.363us - FirstReadTime: 5.165ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.238us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 635.436us - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 538.135us - OutputIndexResultColumnTimer: 1.853us - RawRowsRead: 3.629096M (3629096) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 2.600584M (2600584) - RowsShortCircuitPredFiltered: 3.595419M (3595419) - RowsShortCircuitPredInput: 3.629096M (3629096) - RowsStatsFiltered: 2.551512M (2551512) - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 518.0us - ShortPredEvalTime: 5.40ms - TotalPagesNum: 278 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 230.22us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 302.664us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 196.22us - CloseTime: 23.872us - GetBlockTime: 12.387us - OpenTime: 4.846us - PrepareTime: 71.359us - SinkTime: 148.245us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 267.809us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.837ms HASH_JOIN_SINK_OPERATOR (id=198): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.361us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.463us - BuildTableInsertTime: 28.945us - BuildTableTime: 38.18us - CloseTime: 0ns - ExecTime: 163.716us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 16.537us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.512us - RuntimeFilterComputeTime: 28.895us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=196): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 21.75us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.663us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 26.0us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=5):(Active: 237.459us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 58.382us - CloseTime: 13.222us - GetBlockTime: 0ns - OpenTime: 4.226us - PrepareTime: 155.685us - SinkTime: 33.547us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 216.135us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.51ms HASH_JOIN_SINK_OPERATOR (id=198): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689631d5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 64.58us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.238us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 8.960ms EXCHANGE_OPERATOR (id=196): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.209us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.878us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 77: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 787.823us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 305.937us - CloseTime: 83.357us - GetBlockTime: 48.914us - OpenTime: 217.847us - PrepareTime: 172.558us - SinkTime: 20.295us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 695.180us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.355us DATA_STREAM_SINK_OPERATOR (id=196,dst_id=196): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.963us - CompressTime: 0ns - ExecTime: 81.709us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 13.865us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 45.960us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=195. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.28us - BlocksProduced: 1 - CloseTime: 65.59us - ExecTime: 1.323ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 307.828us - ProcessConjunctTime: 61.859us - ProjectionTime: 8.762us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 400.238us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 893.381us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [67.099us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [400.238us, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.40us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 308.99us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 507.15us - ScannerCtxSchedTime: 396.799us - ScannerFilterTime: 2.75us - ScannerGetBlockTime: 55.598us - ScannerInitTime: 101.576us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 400ns - BlockConditionsFilteredBloomFilterTime: 1.929us - BlockConditionsFilteredDictTime: 6.115us - BlockConditionsFilteredTime: 21.348us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.186us - BlockInitSeekCount: 6 - BlockInitSeekTime: 19.821us - BlockInitTime: 68.161us - BlockLoadTime: 178.104us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 7.624us - FirstReadTime: 11.522us - IOTimer: 0ns - InvertedIndexFilterTime: 2.75us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.644us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 17.158us - OutputIndexResultColumnTimer: 351ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 92ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.735us Fragment 78: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 482.733us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 324.761us - CloseTime: 21.464us - GetBlockTime: 100.999us - OpenTime: 2.293us - PrepareTime: 127.201us - SinkTime: 197.931us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 454.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.752ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.539us - CompressTime: 0ns - ExecTime: 313.798us - InputRows: 149 - LocalBytesSent: 10.77 KB - LocalSendTime: 85.609us - LocalSentRows: 149 - MemoryUsage: - PeakMemoryUsage: 21.00 KB - MergeBlockTime: 0ns - OpenTime: 97.661us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 149 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.7us - SplitBlockHashComputeTime: 6.430us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 889ns - DeserializeAndMergeTime: 0ns - ExecTime: 110.36us - GetResultsTime: 44.986us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.831us - HashTableSize: 149 - InsertKeysToColumnTime: 14.843us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.283us - ProjectionTime: 39.519us - RowsProduced: 149 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s158ms PipelineXTask (index=2):(Active: 462.586us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 298.646us - CloseTime: 20.675us - GetBlockTime: 87.520us - OpenTime: 2.936us - PrepareTime: 134.910us - SinkTime: 189.836us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 434.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.97ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.377us - CompressTime: 0ns - ExecTime: 280.98us - InputRows: 165 - LocalBytesSent: 11.92 KB - LocalSendTime: 65.908us - LocalSentRows: 165 - MemoryUsage: - PeakMemoryUsage: 23.38 KB - MergeBlockTime: 0ns - OpenTime: 72.413us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 165 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 35.786us - SplitBlockHashComputeTime: 7.940us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 540ns - DeserializeAndMergeTime: 0ns - ExecTime: 111.419us - GetResultsTime: 33.466us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.10us - HashTableSize: 165 - InsertKeysToColumnTime: 11.567us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 24.432us - ProjectionTime: 42.511us - RowsProduced: 165 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s142ms PipelineXTask (index=4):(Active: 512.143us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 359.753us - CloseTime: 25.971us - GetBlockTime: 101.163us - OpenTime: 3.981us - PrepareTime: 116.775us - SinkTime: 235.362us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 478.675us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.642ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.227us - CompressTime: 0ns - ExecTime: 340.686us - InputRows: 153 - LocalBytesSent: 11.06 KB - LocalSendTime: 93.796us - LocalSentRows: 153 - MemoryUsage: - PeakMemoryUsage: 21.88 KB - MergeBlockTime: 0ns - OpenTime: 82.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 153 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.672us - SplitBlockHashComputeTime: 6.677us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 818ns - DeserializeAndMergeTime: 0ns - ExecTime: 107.742us - GetResultsTime: 37.763us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.645us - HashTableSize: 153 - InsertKeysToColumnTime: 10.416us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.798us - ProjectionTime: 51.975us - RowsProduced: 153 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s135ms PipelineXTask (index=6):(Active: 518.271us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 382.673us - CloseTime: 11.558us - GetBlockTime: 107.610us - OpenTime: 2.133us - PrepareTime: 109.749us - SinkTime: 244.368us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 497.401us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.749ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.966us - CompressTime: 0ns - ExecTime: 338.128us - InputRows: 159 - LocalBytesSent: 11.49 KB - LocalSendTime: 98.739us - LocalSentRows: 159 - MemoryUsage: - PeakMemoryUsage: 23.06 KB - MergeBlockTime: 0ns - OpenTime: 84.663us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 159 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.621us - SplitBlockHashComputeTime: 6.948us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 517ns - DeserializeAndMergeTime: 0ns - ExecTime: 117.328us - GetResultsTime: 59.898us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.672us - HashTableSize: 159 - InsertKeysToColumnTime: 27.188us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.551us - ProjectionTime: 34.727us - RowsProduced: 159 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s149ms PipelineXTask (index=8):(Active: 597.36us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 439.644us - CloseTime: 14.949us - GetBlockTime: 115.49us - OpenTime: 3.912us - PrepareTime: 131.685us - SinkTime: 297.219us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 572.825us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.929ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.95us - CompressTime: 0ns - ExecTime: 384.311us - InputRows: 151 - LocalBytesSent: 10.91 KB - LocalSendTime: 126.885us - LocalSentRows: 151 - MemoryUsage: - PeakMemoryUsage: 21.13 KB - MergeBlockTime: 0ns - OpenTime: 75.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 151 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 45.792us - SplitBlockHashComputeTime: 7.707us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 1.33us - DeserializeAndMergeTime: 0ns - ExecTime: 120.300us - GetResultsTime: 36.817us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.633us - HashTableSize: 151 - InsertKeysToColumnTime: 9.866us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.471us - ProjectionTime: 56.758us - RowsProduced: 151 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s122ms PipelineXTask (index=10):(Active: 536.398us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 418.619us - CloseTime: 9.946us - GetBlockTime: 130.705us - OpenTime: 3.118us - PrepareTime: 101.275us - SinkTime: 268.764us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 521.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.270ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.344us - CompressTime: 0ns - ExecTime: 346.291us - InputRows: 142 - LocalBytesSent: 10.26 KB - LocalSendTime: 102.890us - LocalSentRows: 142 - MemoryUsage: - PeakMemoryUsage: 19.88 KB - MergeBlockTime: 0ns - OpenTime: 69.471us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 142 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 47.89us - SplitBlockHashComputeTime: 6.728us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 610ns - DeserializeAndMergeTime: 0ns - ExecTime: 141.866us - GetResultsTime: 68.188us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.232us - HashTableSize: 142 - InsertKeysToColumnTime: 27.482us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.956us - ProjectionTime: 47.387us - RowsProduced: 142 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s148ms PipelineXTask (index=12):(Active: 613.902us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 477.646us - CloseTime: 15.310us - GetBlockTime: 132.138us - OpenTime: 3.40us - PrepareTime: 110.518us - SinkTime: 315.812us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 589.741us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.391ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.488us - CompressTime: 0ns - ExecTime: 408.564us - InputRows: 164 - LocalBytesSent: 11.85 KB - LocalSendTime: 116.600us - LocalSentRows: 164 - MemoryUsage: - PeakMemoryUsage: 23.00 KB - MergeBlockTime: 0ns - OpenTime: 80.835us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 164 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 75.826us - SplitBlockHashComputeTime: 12.532us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 878ns - DeserializeAndMergeTime: 0ns - ExecTime: 141.257us - GetResultsTime: 58.324us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.662us - HashTableSize: 164 - InsertKeysToColumnTime: 13.492us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.893us - ProjectionTime: 52.108us - RowsProduced: 164 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s206ms PipelineXTask (index=14):(Active: 455.190us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 324.587us - CloseTime: 11.780us - GetBlockTime: 92.302us - OpenTime: 2.664us - PrepareTime: 110.822us - SinkTime: 213.325us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 436.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.864ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.544us - CompressTime: 0ns - ExecTime: 300.492us - InputRows: 149 - LocalBytesSent: 10.77 KB - LocalSendTime: 61.874us - LocalSentRows: 149 - MemoryUsage: - PeakMemoryUsage: 20.88 KB - MergeBlockTime: 0ns - OpenTime: 77.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 149 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.604us - SplitBlockHashComputeTime: 6.88us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 459ns - DeserializeAndMergeTime: 0ns - ExecTime: 99.648us - GetResultsTime: 48.681us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.534us - HashTableSize: 149 - InsertKeysToColumnTime: 20.761us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.684us - ProjectionTime: 32.870us - RowsProduced: 149 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s159ms PipelineXTask (index=16):(Active: 525.399us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 395.969us - CloseTime: 14.247us - GetBlockTime: 96.40us - OpenTime: 3.71us - PrepareTime: 106.678us - SinkTime: 279.616us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 503.670us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.227ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.297us - CompressTime: 0ns - ExecTime: 367.160us - InputRows: 152 - LocalBytesSent: 10.98 KB - LocalSendTime: 134.128us - LocalSentRows: 152 - MemoryUsage: - PeakMemoryUsage: 21.94 KB - MergeBlockTime: 0ns - OpenTime: 75.897us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 152 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.19us - SplitBlockHashComputeTime: 7.284us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 555ns - DeserializeAndMergeTime: 0ns - ExecTime: 100.281us - GetResultsTime: 40.454us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.615us - HashTableSize: 152 - InsertKeysToColumnTime: 10.702us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.939us - ProjectionTime: 43.65us - RowsProduced: 152 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s146ms PipelineXTask (index=18):(Active: 525.153us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 349.365us - CloseTime: 10.656us - GetBlockTime: 111.438us - OpenTime: 2.178us - PrepareTime: 156.905us - SinkTime: 218.900us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 505.413us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.459ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.598us - CompressTime: 0ns - ExecTime: 337.831us - InputRows: 157 - LocalBytesSent: 11.35 KB - LocalSendTime: 81.181us - LocalSentRows: 157 - MemoryUsage: - PeakMemoryUsage: 22.00 KB - MergeBlockTime: 0ns - OpenTime: 109.725us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 157 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 45.68us - SplitBlockHashComputeTime: 6.350us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 264ns - DeserializeAndMergeTime: 0ns - ExecTime: 119.913us - GetResultsTime: 65.605us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.828us - HashTableSize: 157 - InsertKeysToColumnTime: 27.134us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.740us - ProjectionTime: 36.736us - RowsProduced: 157 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s147ms PipelineXTask (index=20):(Active: 433.360us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 262.959us - CloseTime: 10.553us - GetBlockTime: 86.293us - OpenTime: 2.34us - PrepareTime: 152.242us - SinkTime: 159.843us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 416.489us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.605ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.341us - CompressTime: 0ns - ExecTime: 278.649us - InputRows: 155 - LocalBytesSent: 11.20 KB - LocalSendTime: 59.306us - LocalSentRows: 155 - MemoryUsage: - PeakMemoryUsage: 23.44 KB - MergeBlockTime: 0ns - OpenTime: 109.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 155 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 31.921us - SplitBlockHashComputeTime: 6.507us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 423ns - DeserializeAndMergeTime: 0ns - ExecTime: 92.801us - GetResultsTime: 52.833us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.746us - HashTableSize: 155 - InsertKeysToColumnTime: 26.5us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.640us - ProjectionTime: 26.322us - RowsProduced: 155 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s147ms PipelineXTask (index=22):(Active: 475.600us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 346.863us - CloseTime: 10.500us - GetBlockTime: 109.206us - OpenTime: 2.949us - PrepareTime: 108.394us - SinkTime: 217.331us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 456.960us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 831.835us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.50us - CompressTime: 0ns - ExecTime: 301.773us - InputRows: 148 - LocalBytesSent: 10.70 KB - LocalSendTime: 67.723us - LocalSentRows: 148 - MemoryUsage: - PeakMemoryUsage: 21.56 KB - MergeBlockTime: 0ns - OpenTime: 75.996us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 148 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.870us - SplitBlockHashComputeTime: 8.129us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: 1 - CloseTime: 349ns - DeserializeAndMergeTime: 0ns - ExecTime: 118.334us - GetResultsTime: 47.672us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.574us - HashTableSize: 148 - InsertKeysToColumnTime: 18.985us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.896us - ProjectionTime: 53.503us - RowsProduced: 148 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s150ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.347ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.237ms - CloseTime: 11.770us - GetBlockTime: 113.993us - OpenTime: 4.100us - PrepareTime: 85.983us - SinkTime: 2.59ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 775.458us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.647ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 990ns - DeserializeAndMergeTime: 230.307us - ExecTime: 2.92ms - ExprTime: 0ns - HashTableComputeTime: 1.766ms - HashTableEmplaceTime: 1.711ms - HashTableInputCount: 298 - InputRows: 298 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 2.38ms - OpenTime: 36.267us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 139.277us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 49.56 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 23.193us - ProjectionTime: 0ns - RowsProduced: 298 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s116ms PipelineXTask (index=3):(Active: 1.143ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.35ms - CloseTime: 16.508us - GetBlockTime: 188.432us - OpenTime: 2.210us - PrepareTime: 85.155us - SinkTime: 746.655us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.108ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.971ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 4.184us - DeserializeAndMergeTime: 359.927us - ExecTime: 786.832us - ExprTime: 0ns - HashTableComputeTime: 305.83us - HashTableEmplaceTime: 208.110us - HashTableInputCount: 334 - InputRows: 334 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 720.26us - OpenTime: 41.457us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.567us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 203.725us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 57.13 KB - MemoryUsage: - Blocks: 18.13 KB - PeakMemoryUsage: 18.13 KB - OpenTime: 14.185us - ProjectionTime: 0ns - RowsProduced: 334 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s50ms PipelineXTask (index=5):(Active: 973.200us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 877.333us - CloseTime: 5.118us - GetBlockTime: 123.231us - OpenTime: 5.593us - PrepareTime: 78.245us - SinkTime: 667.475us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 947.214us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.27ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 822ns - DeserializeAndMergeTime: 350.864us - ExecTime: 700.96us - ExprTime: 0ns - HashTableComputeTime: 248.589us - HashTableEmplaceTime: 189.208us - HashTableInputCount: 322 - InputRows: 322 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 648.40us - OpenTime: 37.579us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.566us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 138.488us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 51.38 KB - MemoryUsage: - Blocks: 17.44 KB - PeakMemoryUsage: 17.44 KB - OpenTime: 22.943us - ProjectionTime: 0ns - RowsProduced: 322 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s42ms PipelineXTask (index=7):(Active: 603.388us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 512.960us - CloseTime: 14.440us - GetBlockTime: 104.100us - OpenTime: 3.417us - PrepareTime: 67.613us - SinkTime: 369.706us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 580.321us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 131.82ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 854ns - DeserializeAndMergeTime: 169.206us - ExecTime: 396.677us - ExprTime: 0ns - HashTableComputeTime: 160.829us - HashTableEmplaceTime: 112.971us - HashTableInputCount: 286 - InputRows: 286 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 358.156us - OpenTime: 28.677us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.421us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.156us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 50.38 KB - MemoryUsage: - Blocks: 27.13 KB - PeakMemoryUsage: 27.13 KB - OpenTime: 17.228us - ProjectionTime: 0ns - RowsProduced: 286 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s18ms PipelineXTask (index=9):(Active: 625.224us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 520.192us - CloseTime: 6.967us - GetBlockTime: 87.786us - OpenTime: 3.448us - PrepareTime: 89.478us - SinkTime: 395.632us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 609.862us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.648ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 706ns - DeserializeAndMergeTime: 191.589us - ExecTime: 438.305us - ExprTime: 0ns - HashTableComputeTime: 163.318us - HashTableEmplaceTime: 117.280us - HashTableInputCount: 280 - InputRows: 280 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 382.1us - OpenTime: 44.459us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.358us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.620us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 24.31 KB - PeakMemoryUsage: 24.31 KB - OpenTime: 26.33us - ProjectionTime: 0ns - RowsProduced: 280 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s96ms PipelineXTask (index=11):(Active: 1.732ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.614ms - CloseTime: 12.842us - GetBlockTime: 103.195us - OpenTime: 3.250us - PrepareTime: 96.358us - SinkTime: 1.448ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 760.986us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.723ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 671ns - DeserializeAndMergeTime: 210.211us - ExecTime: 1.505ms - ExprTime: 0ns - HashTableComputeTime: 1.166ms - HashTableEmplaceTime: 1.124ms - HashTableInputCount: 234 - InputRows: 234 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 1.429ms - OpenTime: 60.841us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.583us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.889us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.56 KB - MemoryUsage: - Blocks: 16.25 KB - PeakMemoryUsage: 16.25 KB - OpenTime: 13.230us - ProjectionTime: 0ns - RowsProduced: 234 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s112ms PipelineXTask (index=13):(Active: 696.720us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 596.507us - CloseTime: 11.157us - GetBlockTime: 144.466us - OpenTime: 10.726us - PrepareTime: 73.83us - SinkTime: 408.158us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 677.111us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 166.851ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 3.70us - DeserializeAndMergeTime: 173.919us - ExecTime: 439.644us - ExprTime: 0ns - HashTableComputeTime: 186.128us - HashTableEmplaceTime: 124.505us - HashTableInputCount: 296 - InputRows: 296 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 395.550us - OpenTime: 31.57us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.337us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 173.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.50 KB - MemoryUsage: - Blocks: 31.50 KB - PeakMemoryUsage: 31.50 KB - OpenTime: 18.786us - ProjectionTime: 0ns - RowsProduced: 296 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s39ms PipelineXTask (index=15):(Active: 1.65ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 880.20us - CloseTime: 13.639us - GetBlockTime: 82.679us - OpenTime: 7.680us - PrepareTime: 157.166us - SinkTime: 742.277us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 713.935us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.331ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 700ns - DeserializeAndMergeTime: 150.570us - ExecTime: 865.580us - ExprTime: 0ns - HashTableComputeTime: 549.969us - HashTableEmplaceTime: 506.486us - HashTableInputCount: 234 - InputRows: 234 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 729.976us - OpenTime: 124.668us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.318us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.94 KB - MemoryUsage: - Blocks: 19.00 KB - PeakMemoryUsage: 19.00 KB - OpenTime: 16.621us - ProjectionTime: 0ns - RowsProduced: 234 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s122ms PipelineXTask (index=17):(Active: 470.876us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 396.301us - CloseTime: 6.238us - GetBlockTime: 81.693us - OpenTime: 2.708us - PrepareTime: 61.130us - SinkTime: 288.304us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 458.37us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.526ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 435ns - DeserializeAndMergeTime: 140.544us - ExecTime: 314.634us - ExprTime: 0ns - HashTableComputeTime: 121.904us - HashTableEmplaceTime: 88.337us - HashTableInputCount: 273 - InputRows: 273 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 280.444us - OpenTime: 27.364us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.216us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.565us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.69 KB - MemoryUsage: - Blocks: 26.63 KB - PeakMemoryUsage: 26.63 KB - OpenTime: 16.503us - ProjectionTime: 0ns - RowsProduced: 273 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s15ms PipelineXTask (index=19):(Active: 510.760us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 431.324us - CloseTime: 7.379us - GetBlockTime: 78.62us - OpenTime: 2.523us - PrepareTime: 64.141us - SinkTime: 327.405us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 495.161us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.934ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 3.164us - DeserializeAndMergeTime: 150.946us - ExecTime: 361.733us - ExprTime: 0ns - HashTableComputeTime: 151.127us - HashTableEmplaceTime: 120.451us - HashTableInputCount: 328 - InputRows: 328 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 320.392us - OpenTime: 32.505us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.558us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.427us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 56.81 KB - MemoryUsage: - Blocks: 29.69 KB - PeakMemoryUsage: 29.69 KB - OpenTime: 18.790us - ProjectionTime: 0ns - RowsProduced: 328 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s15ms PipelineXTask (index=21):(Active: 444.914us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 364.947us - CloseTime: 4.550us - GetBlockTime: 59.536us - OpenTime: 2.901us - PrepareTime: 67.714us - SinkTime: 277.995us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 432.932us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.375ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 517ns - DeserializeAndMergeTime: 121.584us - ExecTime: 309.328us - ExprTime: 0ns - HashTableComputeTime: 114.77us - HashTableEmplaceTime: 86.313us - HashTableInputCount: 275 - InputRows: 275 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 264.292us - OpenTime: 32.713us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.393us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.363us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.63 KB - MemoryUsage: - Blocks: 26.69 KB - PeakMemoryUsage: 26.69 KB - OpenTime: 15.935us - ProjectionTime: 0ns - RowsProduced: 275 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s15ms PipelineXTask (index=23):(Active: 507.789us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 412.69us - CloseTime: 11.264us - GetBlockTime: 85.162us - OpenTime: 3.163us - PrepareTime: 76.192us - SinkTime: 297.488us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 488.801us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.686ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.25us - DeserializeAndMergeTime: 150.111us - ExecTime: 326.969us - ExprTime: 0ns - HashTableComputeTime: 114.216us - HashTableEmplaceTime: 83.935us - HashTableInputCount: 291 - InputRows: 291 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 288.37us - OpenTime: 30.186us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.855us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 50.25 KB - MemoryUsage: - Blocks: 26.38 KB - PeakMemoryUsage: 26.38 KB - OpenTime: 13.381us - ProjectionTime: 0ns - RowsProduced: 291 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s15ms Fragment 79: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.103ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.727ms - CloseTime: 71.41us - GetBlockTime: 2.336ms - OpenTime: 11.813us - PrepareTime: 284.305us - SinkTime: 333.367us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.21ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.35ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.776us - CompressTime: 0ns - ExecTime: 420.31us - InputRows: 260 - LocalBytesSent: 25.26 KB - LocalSendTime: 119.870us - LocalSentRows: 260 - MemoryUsage: - PeakMemoryUsage: 46.94 KB - MergeBlockTime: 0ns - OpenTime: 76.519us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 260 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 103.856us - SplitBlockHashComputeTime: 10.495us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 358.606us - CloseTime: 38.154us - DeserializeAndMergeTime: 0ns - ExecTime: 551.794us - ExprTime: 9.777us - GetResultsTime: 98.952us - HashTableComputeTime: 160.365us - HashTableEmplaceTime: 134.205us - HashTableInputCount: 343 - HashTableIterateTime: 1.546us - HashTableSize: 260 - InsertKeysToColumnTime: 23.917us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 42.688us - ProjectionTime: 0ns - RowsProduced: 260 - SerializeDataTime: 55.840us - SerializeKeyTime: 0ns - SerializeResultTime: 102.300us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 11.306us - ExecTime: 1.729ms - InitProbeSideTime: 834.85us - JoinFilterTimer: 789ns - MemoryUsage: - PeakMemoryUsage: 276.00 KB - ProbeKeyArena: 276.00 KB - OpenTime: 23.283us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.838us - ProbeFindNextTime: 0ns - ProbeRows: 28.424K (28424) - ProbeTime: 1.391ms - ProbeWhenBuildSideOutputTime: 28.847us - ProbeWhenProbeSideOutputTime: 20.111us - ProbeWhenProcessHashTableTime: 49.774us - ProbeWhenSearchHashTableTime: 290.734us - ProjectionTime: 261.737us - RowsProduced: 343 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s700ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 201.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 51.415us - ProjectionTime: 0ns - RowsProduced: 28.424K (28424) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=2):(Active: 3.18ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.695ms - CloseTime: 108.264us - GetBlockTime: 2.303ms - OpenTime: 8.23us - PrepareTime: 200.247us - SinkTime: 338.605us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.900ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.479ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.901us - CompressTime: 0ns - ExecTime: 421.741us - InputRows: 267 - LocalBytesSent: 25.25 KB - LocalSendTime: 111.788us - LocalSentRows: 267 - MemoryUsage: - PeakMemoryUsage: 43.69 KB - MergeBlockTime: 0ns - OpenTime: 68.898us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 267 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 108.576us - SplitBlockHashComputeTime: 11.464us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 358.722us - CloseTime: 54.688us - DeserializeAndMergeTime: 0ns - ExecTime: 582.216us - ExprTime: 8.500us - GetResultsTime: 107.996us - HashTableComputeTime: 167.849us - HashTableEmplaceTime: 134.606us - HashTableInputCount: 318 - HashTableIterateTime: 1.626us - HashTableSize: 267 - InsertKeysToColumnTime: 38.500us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 48.230us - ProjectionTime: 0ns - RowsProduced: 267 - SerializeDataTime: 58.914us - SerializeKeyTime: 0ns - SerializeResultTime: 112.723us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 21.107us - ExecTime: 1.710ms - InitProbeSideTime: 867.45us - JoinFilterTimer: 507ns - MemoryUsage: - PeakMemoryUsage: 276.00 KB - ProbeKeyArena: 276.00 KB - OpenTime: 16.285us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.503us - ProbeFindNextTime: 0ns - ProbeRows: 28.81K (28810) - ProbeTime: 1.367ms - ProbeWhenBuildSideOutputTime: 26.925us - ProbeWhenProbeSideOutputTime: 14.930us - ProbeWhenProcessHashTableTime: 54.561us - ProbeWhenSearchHashTableTime: 286.502us - ProjectionTime: 266.61us - RowsProduced: 318 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s700ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.81us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.904us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 16.620us - ProjectionTime: 0ns - RowsProduced: 28.81K (28810) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=4):(Active: 2.670ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.281ms - CloseTime: 73.484us - GetBlockTime: 1.965ms - OpenTime: 6.871us - PrepareTime: 300.35us - SinkTime: 259.415us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.168ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.967us - CompressTime: 0ns - ExecTime: 349.390us - InputRows: 324 - LocalBytesSent: 30.65 KB - LocalSendTime: 76.502us - LocalSentRows: 324 - MemoryUsage: - PeakMemoryUsage: 53.19 KB - MergeBlockTime: 0ns - OpenTime: 77.970us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 324 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 101.585us - SplitBlockHashComputeTime: 11.466us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 327.836us - CloseTime: 38.493us - DeserializeAndMergeTime: 0ns - ExecTime: 516.386us - ExprTime: 6.853us - GetResultsTime: 93.971us - HashTableComputeTime: 157.340us - HashTableEmplaceTime: 129.797us - HashTableInputCount: 403 - HashTableIterateTime: 1.539us - HashTableSize: 324 - InsertKeysToColumnTime: 25.687us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 32.761us - ProjectionTime: 0ns - RowsProduced: 324 - SerializeDataTime: 58.400us - SerializeKeyTime: 0ns - SerializeResultTime: 96.362us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 11.420us - ExecTime: 1.450ms - InitProbeSideTime: 691.779us - JoinFilterTimer: 417ns - MemoryUsage: - PeakMemoryUsage: 276.00 KB - ProbeKeyArena: 276.00 KB - OpenTime: 31.536us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.2us - ProbeFindNextTime: 0ns - ProbeRows: 28.628K (28628) - ProbeTime: 1.203ms - ProbeWhenBuildSideOutputTime: 22.739us - ProbeWhenProbeSideOutputTime: 11.513us - ProbeWhenProcessHashTableTime: 47.732us - ProbeWhenSearchHashTableTime: 325.691us - ProjectionTime: 168.551us - RowsProduced: 403 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s700ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.111us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.22 MB - MemoryUsage: - Blocks: 1.22 MB - PeakMemoryUsage: 1.23 MB - OpenTime: 16.591us - ProjectionTime: 0ns - RowsProduced: 28.628K (28628) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s234ms PipelineXTask (index=6):(Active: 3.132ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.797ms - CloseTime: 81.464us - GetBlockTime: 2.455ms - OpenTime: 7.400us - PrepareTime: 238.11us - SinkTime: 291.101us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.40ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.846ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.402us - CompressTime: 0ns - ExecTime: 373.465us - InputRows: 307 - LocalBytesSent: 30.11 KB - LocalSendTime: 91.652us - LocalSentRows: 307 - MemoryUsage: - PeakMemoryUsage: 52.38 KB - MergeBlockTime: 0ns - OpenTime: 68.496us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 307 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 97.641us - SplitBlockHashComputeTime: 12.563us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 455.226us - CloseTime: 39.189us - DeserializeAndMergeTime: 0ns - ExecTime: 649.749us - ExprTime: 16.417us - GetResultsTime: 106.236us - HashTableComputeTime: 222.430us - HashTableEmplaceTime: 181.1us - HashTableInputCount: 418 - HashTableIterateTime: 1.918us - HashTableSize: 307 - InsertKeysToColumnTime: 28.454us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 37.261us - ProjectionTime: 0ns - RowsProduced: 307 - SerializeDataTime: 63.954us - SerializeKeyTime: 0ns - SerializeResultTime: 109.72us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 10.876us - ExecTime: 1.803ms - InitProbeSideTime: 800.93us - JoinFilterTimer: 977ns - MemoryUsage: - PeakMemoryUsage: 100.00 KB - ProbeKeyArena: 100.00 KB - OpenTime: 49.75us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.288us - ProbeFindNextTime: 0ns - ProbeRows: 28.248K (28248) - ProbeTime: 1.409ms - ProbeWhenBuildSideOutputTime: 49.426us - ProbeWhenProbeSideOutputTime: 19.27us - ProbeWhenProcessHashTableTime: 67.947us - ProbeWhenSearchHashTableTime: 346.215us - ProjectionTime: 293.860us - RowsProduced: 418 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s700ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.534us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 162.472us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 38.269us - ProjectionTime: 0ns - RowsProduced: 28.248K (28248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=8):(Active: 2.711ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.397ms - CloseTime: 76.117us - GetBlockTime: 2.86ms - OpenTime: 6.863us - PrepareTime: 224.0us - SinkTime: 267.238us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.626ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.968ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.770us - CompressTime: 0ns - ExecTime: 367.459us - InputRows: 307 - LocalBytesSent: 29.56 KB - LocalSendTime: 77.43us - LocalSentRows: 307 - MemoryUsage: - PeakMemoryUsage: 52.88 KB - MergeBlockTime: 0ns - OpenTime: 85.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 307 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 100.735us - SplitBlockHashComputeTime: 11.39us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 302.112us - CloseTime: 40.213us - DeserializeAndMergeTime: 0ns - ExecTime: 504.687us - ExprTime: 6.341us - GetResultsTime: 118.926us - HashTableComputeTime: 144.166us - HashTableEmplaceTime: 119.343us - HashTableInputCount: 391 - HashTableIterateTime: 1.616us - HashTableSize: 307 - InsertKeysToColumnTime: 34.511us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.913us - ProjectionTime: 0ns - RowsProduced: 307 - SerializeDataTime: 71.67us - SerializeKeyTime: 0ns - SerializeResultTime: 121.476us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 9.171us - ExecTime: 1.526ms - InitProbeSideTime: 787.748us - JoinFilterTimer: 562ns - MemoryUsage: - PeakMemoryUsage: 276.00 KB - ProbeKeyArena: 276.00 KB - OpenTime: 22.476us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.231us - ProbeFindNextTime: 0ns - ProbeRows: 28.202K (28202) - ProbeTime: 1.292ms - ProbeWhenBuildSideOutputTime: 19.347us - ProbeWhenProbeSideOutputTime: 9.338us - ProbeWhenProcessHashTableTime: 53.65us - ProbeWhenSearchHashTableTime: 316.474us - ProjectionTime: 163.571us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s705ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 8.286us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 162.110us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.22 MB - MemoryUsage: - Blocks: 1.22 MB - PeakMemoryUsage: 1.23 MB - OpenTime: 10.688us - ProjectionTime: 0ns - RowsProduced: 28.202K (28202) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=10):(Active: 2.835ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.467ms - CloseTime: 81.244us - GetBlockTime: 2.115ms - OpenTime: 8.629us - PrepareTime: 270.577us - SinkTime: 295.622us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.742ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.189ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.759us - CompressTime: 0ns - ExecTime: 410.744us - InputRows: 273 - LocalBytesSent: 26.01 KB - LocalSendTime: 99.667us - LocalSentRows: 273 - MemoryUsage: - PeakMemoryUsage: 47.44 KB - MergeBlockTime: 0ns - OpenTime: 104.106us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 273 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.895us - SplitBlockHashComputeTime: 9.669us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 371.715us - CloseTime: 37.428us - DeserializeAndMergeTime: 0ns - ExecTime: 572.225us - ExprTime: 7.942us - GetResultsTime: 101.329us - HashTableComputeTime: 169.49us - HashTableEmplaceTime: 119.592us - HashTableInputCount: 331 - HashTableIterateTime: 1.532us - HashTableSize: 273 - InsertKeysToColumnTime: 36.22us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 50.602us - ProjectionTime: 0ns - RowsProduced: 273 - SerializeDataTime: 55.199us - SerializeKeyTime: 0ns - SerializeResultTime: 104.588us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 18.19us - ExecTime: 1.529ms - InitProbeSideTime: 734.940us - JoinFilterTimer: 562ns - MemoryUsage: - PeakMemoryUsage: 100.00 KB - ProbeKeyArena: 100.00 KB - OpenTime: 17.969us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.655us - ProbeFindNextTime: 0ns - ProbeRows: 28.291K (28291) - ProbeTime: 1.232ms - ProbeWhenBuildSideOutputTime: 20.580us - ProbeWhenProbeSideOutputTime: 12.857us - ProbeWhenProcessHashTableTime: 45.972us - ProbeWhenSearchHashTableTime: 283.673us - ProjectionTime: 222.720us - RowsProduced: 331 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s813ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 9.882us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 138.701us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 23.62us - ProjectionTime: 0ns - RowsProduced: 28.291K (28291) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=12):(Active: 2.515ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.234ms - CloseTime: 60.649us - GetBlockTime: 1.945ms - OpenTime: 9.133us - PrepareTime: 202.951us - SinkTime: 241.930us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.444ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 558.391ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.14us - CompressTime: 0ns - ExecTime: 315.189us - InputRows: 265 - LocalBytesSent: 25.26 KB - LocalSendTime: 81.154us - LocalSentRows: 265 - MemoryUsage: - PeakMemoryUsage: 46.81 KB - MergeBlockTime: 0ns - OpenTime: 60.686us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 265 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.210us - SplitBlockHashComputeTime: 11.569us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 275.566us - CloseTime: 29.243us - DeserializeAndMergeTime: 0ns - ExecTime: 437.859us - ExprTime: 9.690us - GetResultsTime: 71.258us - HashTableComputeTime: 145.60us - HashTableEmplaceTime: 115.138us - HashTableInputCount: 327 - HashTableIterateTime: 1.415us - HashTableSize: 265 - InsertKeysToColumnTime: 20.726us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 50.968us - ProjectionTime: 0ns - RowsProduced: 265 - SerializeDataTime: 41.371us - SerializeKeyTime: 0ns - SerializeResultTime: 73.841us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 7.479us - ExecTime: 1.505ms - InitProbeSideTime: 773.98us - JoinFilterTimer: 834ns - MemoryUsage: - PeakMemoryUsage: 264.00 KB - ProbeKeyArena: 264.00 KB - OpenTime: 18.454us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.66us - ProbeFindNextTime: 0ns - ProbeRows: 27.846K (27846) - ProbeTime: 1.221ms - ProbeWhenBuildSideOutputTime: 28.458us - ProbeWhenProbeSideOutputTime: 12.692us - ProbeWhenProcessHashTableTime: 36.439us - ProbeWhenSearchHashTableTime: 273.994us - ProjectionTime: 221.493us - RowsProduced: 327 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s338ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.822us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.665us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.22 MB - MemoryUsage: - Blocks: 1.22 MB - PeakMemoryUsage: 1.23 MB - OpenTime: 28.2us - ProjectionTime: 0ns - RowsProduced: 27.846K (27846) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s230ms PipelineXTask (index=14):(Active: 9.761ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.258ms - CloseTime: 206.561us - GetBlockTime: 3.129ms - OpenTime: 13.57us - PrepareTime: 261.720us - SinkTime: 6.22ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.21ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 552.542ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.634us - CompressTime: 0ns - ExecTime: 6.126ms - InputRows: 294 - LocalBytesSent: 27.39 KB - LocalSendTime: 5.674ms - LocalSentRows: 294 - MemoryUsage: - PeakMemoryUsage: 49.75 KB - MergeBlockTime: 0ns - OpenTime: 77.30us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 294 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 171.278us - SplitBlockHashComputeTime: 18.336us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 561.238us - CloseTime: 134.627us - DeserializeAndMergeTime: 0ns - ExecTime: 929.415us - ExprTime: 14.206us - GetResultsTime: 171.75us - HashTableComputeTime: 291.332us - HashTableEmplaceTime: 235.936us - HashTableInputCount: 349 - HashTableIterateTime: 2.517us - HashTableSize: 294 - InsertKeysToColumnTime: 46.376us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 42.222us - ProjectionTime: 0ns - RowsProduced: 294 - SerializeDataTime: 108.299us - SerializeKeyTime: 0ns - SerializeResultTime: 175.785us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 22.632us - ExecTime: 2.199ms - InitProbeSideTime: 916.940us - JoinFilterTimer: 1.94us - MemoryUsage: - PeakMemoryUsage: 100.00 KB - ProbeKeyArena: 100.00 KB - OpenTime: 40.325us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.151us - ProbeFindNextTime: 0ns - ProbeRows: 27.67K (27670) - ProbeTime: 1.719ms - ProbeWhenBuildSideOutputTime: 38.264us - ProbeWhenProbeSideOutputTime: 23.96us - ProbeWhenProcessHashTableTime: 104.707us - ProbeWhenSearchHashTableTime: 372.64us - ProjectionTime: 358.994us - RowsProduced: 349 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s258ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 13.689us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 208.307us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.21 MB - MemoryUsage: - Blocks: 1.21 MB - PeakMemoryUsage: 1.21 MB - OpenTime: 16.604us - ProjectionTime: 0ns - RowsProduced: 27.67K (27670) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=16):(Active: 2.938ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.588ms - CloseTime: 79.516us - GetBlockTime: 2.251ms - OpenTime: 7.665us - PrepareTime: 255.977us - SinkTime: 286.689us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.849ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 566.300ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.680us - CompressTime: 0ns - ExecTime: 384.579us - InputRows: 289 - LocalBytesSent: 27.35 KB - LocalSendTime: 85.799us - LocalSentRows: 289 - MemoryUsage: - PeakMemoryUsage: 47.25 KB - MergeBlockTime: 0ns - OpenTime: 83.824us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 289 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 94.265us - SplitBlockHashComputeTime: 11.823us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 385.192us - CloseTime: 36.984us - DeserializeAndMergeTime: 0ns - ExecTime: 575.73us - ExprTime: 11.114us - GetResultsTime: 102.20us - HashTableComputeTime: 191.453us - HashTableEmplaceTime: 156.379us - HashTableInputCount: 378 - HashTableIterateTime: 1.739us - HashTableSize: 289 - InsertKeysToColumnTime: 28.430us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 35.703us - ProjectionTime: 0ns - RowsProduced: 289 - SerializeDataTime: 59.262us - SerializeKeyTime: 0ns - SerializeResultTime: 106.399us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 10.859us - ExecTime: 1.604ms - InitProbeSideTime: 762.957us - JoinFilterTimer: 517ns - MemoryUsage: - PeakMemoryUsage: 276.00 KB - ProbeKeyArena: 276.00 KB - OpenTime: 15.728us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.167us - ProbeFindNextTime: 0ns - ProbeRows: 28.402K (28402) - ProbeTime: 1.278ms - ProbeWhenBuildSideOutputTime: 32.428us - ProbeWhenProbeSideOutputTime: 15.501us - ProbeWhenProcessHashTableTime: 50.410us - ProbeWhenSearchHashTableTime: 294.578us - ProjectionTime: 250.815us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s339ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 12.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 169.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 16.119us - ProjectionTime: 0ns - RowsProduced: 28.402K (28402) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s232ms PipelineXTask (index=18):(Active: 2.505ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.231ms - CloseTime: 59.384us - GetBlockTime: 1.943ms - OpenTime: 7.957us - PrepareTime: 200.913us - SinkTime: 226.207us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.436ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 559.266ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.60us - CompressTime: 0ns - ExecTime: 305.4us - InputRows: 297 - LocalBytesSent: 28.01 KB - LocalSendTime: 64.671us - LocalSentRows: 297 - MemoryUsage: - PeakMemoryUsage: 52.94 KB - MergeBlockTime: 0ns - OpenTime: 67.231us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 297 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 93.844us - SplitBlockHashComputeTime: 10.340us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 276.800us - CloseTime: 32.155us - DeserializeAndMergeTime: 0ns - ExecTime: 451.603us - ExprTime: 7.427us - GetResultsTime: 87.33us - HashTableComputeTime: 149.199us - HashTableEmplaceTime: 113.759us - HashTableInputCount: 368 - HashTableIterateTime: 1.537us - HashTableSize: 297 - InsertKeysToColumnTime: 18.977us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 47.88us - ProjectionTime: 0ns - RowsProduced: 297 - SerializeDataTime: 59.571us - SerializeKeyTime: 0ns - SerializeResultTime: 89.273us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 5.581us - ExecTime: 1.485ms - InitProbeSideTime: 733.457us - JoinFilterTimer: 593ns - MemoryUsage: - PeakMemoryUsage: 264.00 KB - ProbeKeyArena: 264.00 KB - OpenTime: 28.108us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.674us - ProbeFindNextTime: 0ns - ProbeRows: 27.638K (27638) - ProbeTime: 1.245ms - ProbeWhenBuildSideOutputTime: 32.706us - ProbeWhenProbeSideOutputTime: 14.448us - ProbeWhenProcessHashTableTime: 46.977us - ProbeWhenSearchHashTableTime: 310.224us - ProjectionTime: 170.25us - RowsProduced: 368 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s337ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.229us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.13 MB - MemoryUsage: - Blocks: 1.13 MB - PeakMemoryUsage: 1.13 MB - OpenTime: 12.145us - ProjectionTime: 0ns - RowsProduced: 27.638K (27638) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s233ms PipelineXTask (index=20):(Active: 2.438ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.120ms - CloseTime: 57.900us - GetBlockTime: 1.839ms - OpenTime: 5.594us - PrepareTime: 247.488us - SinkTime: 232.169us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.371ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 539.969ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.767us - CompressTime: 0ns - ExecTime: 311.335us - InputRows: 291 - LocalBytesSent: 26.98 KB - LocalSendTime: 74.614us - LocalSentRows: 291 - MemoryUsage: - PeakMemoryUsage: 48.38 KB - MergeBlockTime: 0ns - OpenTime: 70.114us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 291 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 88.223us - SplitBlockHashComputeTime: 10.36us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 261.842us - CloseTime: 31.183us - DeserializeAndMergeTime: 0ns - ExecTime: 436.672us - ExprTime: 7.229us - GetResultsTime: 81.194us - HashTableComputeTime: 147.72us - HashTableEmplaceTime: 118.324us - HashTableInputCount: 341 - HashTableIterateTime: 1.647us - HashTableSize: 291 - InsertKeysToColumnTime: 17.546us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 51.524us - ProjectionTime: 0ns - RowsProduced: 291 - SerializeDataTime: 54.764us - SerializeKeyTime: 0ns - SerializeResultTime: 82.790us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 6.906us - ExecTime: 1.387ms - InitProbeSideTime: 666.441us - JoinFilterTimer: 582ns - MemoryUsage: - PeakMemoryUsage: 264.00 KB - ProbeKeyArena: 264.00 KB - OpenTime: 17.94us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.507us - ProbeFindNextTime: 0ns - ProbeRows: 28.05K (28050) - ProbeTime: 1.152ms - ProbeWhenBuildSideOutputTime: 20.297us - ProbeWhenProbeSideOutputTime: 10.302us - ProbeWhenProcessHashTableTime: 42.86us - ProbeWhenSearchHashTableTime: 301.907us - ProjectionTime: 166.937us - RowsProduced: 341 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s360ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.111us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.722us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.22 MB - MemoryUsage: - Blocks: 1.22 MB - PeakMemoryUsage: 1.23 MB - OpenTime: 20.563us - ProjectionTime: 0ns - RowsProduced: 28.05K (28050) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s231ms PipelineXTask (index=22):(Active: 2.410ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.115ms - CloseTime: 61.682us - GetBlockTime: 1.844ms - OpenTime: 6.437us - PrepareTime: 220.815us - SinkTime: 230.328us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.340ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 563.406ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.671us - CompressTime: 0ns - ExecTime: 320.272us - InputRows: 277 - LocalBytesSent: 26.71 KB - LocalSendTime: 58.154us - LocalSentRows: 277 - MemoryUsage: - PeakMemoryUsage: 48.13 KB - MergeBlockTime: 0ns - OpenTime: 79.952us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 277 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 95.331us - SplitBlockHashComputeTime: 9.782us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 282.327us - CloseTime: 33.382us - DeserializeAndMergeTime: 0ns - ExecTime: 458.791us - ExprTime: 8.114us - GetResultsTime: 80.62us - HashTableComputeTime: 140.70us - HashTableEmplaceTime: 115.257us - HashTableInputCount: 372 - HashTableIterateTime: 1.425us - HashTableSize: 277 - InsertKeysToColumnTime: 17.217us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.91 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 54.815us - ProjectionTime: 0ns - RowsProduced: 277 - SerializeDataTime: 54.873us - SerializeKeyTime: 0ns - SerializeResultTime: 81.784us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 8.283us - ExecTime: 1.381ms - InitProbeSideTime: 656.931us - JoinFilterTimer: 659ns - MemoryUsage: - PeakMemoryUsage: 100.00 KB - ProbeKeyArena: 100.00 KB - OpenTime: 14.830us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.292us - ProbeFindNextTime: 0ns - ProbeRows: 28.458K (28458) - ProbeTime: 1.136ms - ProbeWhenBuildSideOutputTime: 30.439us - ProbeWhenProbeSideOutputTime: 13.540us - ProbeWhenProcessHashTableTime: 45.452us - ProbeWhenSearchHashTableTime: 288.993us - ProjectionTime: 186.981us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s337ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 6.357us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 110.607us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.32 MB - MemoryUsage: - Blocks: 1.32 MB - PeakMemoryUsage: 1.32 MB - OpenTime: 13.644us - ProjectionTime: 0ns - RowsProduced: 28.458K (28458) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s233ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 244.117us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 146.634us - CloseTime: 14.616us - GetBlockTime: 16.19us - OpenTime: 3.37us - PrepareTime: 74.498us - SinkTime: 111.425us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 222.747us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.588ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.291us - BuildRows: 329 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.374us - BuildTableInsertTime: 22.42us - BuildTableTime: 25.83us - CloseTime: 0ns - ExecTime: 134.152us - InputRows: 328 - MemoryUsage: - BuildBlocks: 29.18 KB - BuildKeyArena: 12.00 KB - HashTable: 3.61 KB - PeakMemoryUsage: 40.78 KB - OpenTime: 22.685us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.12us - RuntimeFilterComputeTime: 16.26us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.420us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.662us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 14.498us - ProjectionTime: 0ns - RowsProduced: 328 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s3ms PipelineXTask (index=3):(Active: 207.529us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 112.476us - CloseTime: 4.542us - GetBlockTime: 13.655us - OpenTime: 2.737us - PrepareTime: 82.408us - SinkTime: 81.171us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 196.356us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.754ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 889ns - BuildRows: 313 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.612us - BuildTableInsertTime: 19.423us - BuildTableTime: 20.738us - CloseTime: 0ns - ExecTime: 110.378us - InputRows: 312 - MemoryUsage: - BuildBlocks: 27.78 KB - BuildKeyArena: 12.00 KB - HashTable: 3.53 KB - PeakMemoryUsage: 39.30 KB - OpenTime: 29.310us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.191us - RuntimeFilterComputeTime: 2.705us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.555us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.124us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 10.374us - ProjectionTime: 0ns - RowsProduced: 312 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s3ms PipelineXTask (index=5):(Active: 210.660us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 140.500us - CloseTime: 4.960us - GetBlockTime: 18.966us - OpenTime: 2.289us - PrepareTime: 57.626us - SinkTime: 102.47us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.451us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.861ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 882ns - BuildRows: 390 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 34.817us - BuildTableInsertTime: 30.405us - BuildTableTime: 32.579us - CloseTime: 0ns - ExecTime: 120.936us - InputRows: 389 - MemoryUsage: - BuildBlocks: 34.59 KB - BuildKeyArena: 16.00 KB - HashTable: 3.91 KB - PeakMemoryUsage: 50.49 KB - OpenTime: 19.76us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.388us - RuntimeFilterComputeTime: 3.600us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.401us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.733us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.50 KB - MemoryUsage: - Blocks: 47.50 KB - PeakMemoryUsage: 47.50 KB - OpenTime: 17.569us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s3ms PipelineXTask (index=7):(Active: 252.668us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 174.667us - CloseTime: 8.260us - GetBlockTime: 9.523us - OpenTime: 2.370us - PrepareTime: 62.283us - SinkTime: 146.793us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.80us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.13ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 839ns - BuildRows: 393 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.835us - BuildTableInsertTime: 74.760us - BuildTableTime: 76.42us - CloseTime: 0ns - ExecTime: 169.945us - InputRows: 392 - MemoryUsage: - BuildBlocks: 34.86 KB - BuildKeyArena: 16.00 KB - HashTable: 3.92 KB - PeakMemoryUsage: 50.77 KB - OpenTime: 23.378us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 757ns - RuntimeFilterComputeTime: 3.285us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.239us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.500us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 47.50 KB - MemoryUsage: - Blocks: 47.50 KB - PeakMemoryUsage: 47.50 KB - OpenTime: 13.534us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s3ms PipelineXTask (index=9):(Active: 257.590us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 165.567us - CloseTime: 8.493us - GetBlockTime: 11.359us - OpenTime: 3.311us - PrepareTime: 75.166us - SinkTime: 133.586us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 242.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.800ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 782ns - BuildRows: 384 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.320us - BuildTableInsertTime: 32.735us - BuildTableTime: 36.186us - CloseTime: 0ns - ExecTime: 160.140us - InputRows: 383 - MemoryUsage: - BuildBlocks: 34.05 KB - BuildKeyArena: 16.00 KB - HashTable: 3.88 KB - PeakMemoryUsage: 49.92 KB - OpenTime: 26.710us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.60us - RuntimeFilterComputeTime: 27.672us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.857us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.890us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 49.50 KB - MemoryUsage: - Blocks: 49.50 KB - PeakMemoryUsage: 49.50 KB - OpenTime: 17.53us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s989ms PipelineXTask (index=11):(Active: 229.540us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 155.922us - CloseTime: 14.903us - GetBlockTime: 13.336us - OpenTime: 2.859us - PrepareTime: 51.155us - SinkTime: 122.595us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 209.162us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.273ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.471us - BuildRows: 328 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.80us - BuildTableInsertTime: 21.5us - BuildTableTime: 23.860us - CloseTime: 0ns - ExecTime: 138.634us - InputRows: 327 - MemoryUsage: - BuildBlocks: 29.09 KB - BuildKeyArena: 12.00 KB - HashTable: 3.61 KB - PeakMemoryUsage: 40.69 KB - OpenTime: 16.347us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.564us - RuntimeFilterComputeTime: 15.80us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.782us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.873us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 16.468us - ProjectionTime: 0ns - RowsProduced: 327 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s0ms PipelineXTask (index=13):(Active: 261.985us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 184.362us - CloseTime: 8.275us - GetBlockTime: 12.315us - OpenTime: 10.272us - PrepareTime: 53.16us - SinkTime: 136.522us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.528us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.948ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.219us - BuildRows: 322 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.824us - BuildTableInsertTime: 25.413us - BuildTableTime: 28.175us - CloseTime: 0ns - ExecTime: 151.26us - InputRows: 321 - MemoryUsage: - BuildBlocks: 28.54 KB - BuildKeyArena: 12.00 KB - HashTable: 3.58 KB - PeakMemoryUsage: 40.11 KB - OpenTime: 14.617us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.839us - RuntimeFilterComputeTime: 8.263us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.796us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 15.540us - ProjectionTime: 0ns - RowsProduced: 321 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s2ms PipelineXTask (index=15):(Active: 260.338us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 164.895us - CloseTime: 22.63us - GetBlockTime: 12.954us - OpenTime: 2.730us - PrepareTime: 65.229us - SinkTime: 123.15us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.925us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.124ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.232us - BuildRows: 336 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.171us - BuildTableInsertTime: 29.910us - BuildTableTime: 33.739us - CloseTime: 0ns - ExecTime: 153.41us - InputRows: 335 - MemoryUsage: - BuildBlocks: 29.80 KB - BuildKeyArena: 12.00 KB - HashTable: 3.64 KB - PeakMemoryUsage: 41.44 KB - OpenTime: 30.240us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.763us - RuntimeFilterComputeTime: 7.307us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 19.591us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 15.970us - ProjectionTime: 0ns - RowsProduced: 335 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s2ms PipelineXTask (index=17):(Active: 330.811us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 248.338us - CloseTime: 6.964us - GetBlockTime: 12.202us - OpenTime: 3.160us - PrepareTime: 66.916us - SinkTime: 211.777us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 315.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.118ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.59us - BuildRows: 339 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.847us - BuildTableInsertTime: 17.341us - BuildTableTime: 19.144us - CloseTime: 0ns - ExecTime: 233.480us - InputRows: 338 - MemoryUsage: - BuildBlocks: 30.07 KB - BuildKeyArena: 12.00 KB - HashTable: 3.66 KB - PeakMemoryUsage: 41.72 KB - OpenTime: 21.863us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 148.993us - RuntimeFilterComputeTime: 2.947us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.86us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 15.680us - ProjectionTime: 0ns - RowsProduced: 338 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s998ms PipelineXTask (index=19):(Active: 249.400us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 128.426us - CloseTime: 8.142us - GetBlockTime: 12.217us - OpenTime: 3.120us - PrepareTime: 102.986us - SinkTime: 98.20us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 234.726us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.206ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 744ns - BuildRows: 348 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 36.337us - BuildTableInsertTime: 17.524us - BuildTableTime: 19.640us - CloseTime: 0ns - ExecTime: 156.790us - InputRows: 347 - MemoryUsage: - BuildBlocks: 30.85 KB - BuildKeyArena: 12.00 KB - HashTable: 3.70 KB - PeakMemoryUsage: 42.54 KB - OpenTime: 59.3us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.574us - RuntimeFilterComputeTime: 4.49us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.101us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 13.864us - ProjectionTime: 0ns - RowsProduced: 347 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s0ms PipelineXTask (index=21):(Active: 170.189us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 91.505us - CloseTime: 5.473us - GetBlockTime: 7.241us - OpenTime: 2.390us - PrepareTime: 62.623us - SinkTime: 64.922us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.545us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.340ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 843ns - BuildRows: 331 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.976us - BuildTableInsertTime: 18.490us - BuildTableTime: 19.333us - CloseTime: 0ns - ExecTime: 86.529us - InputRows: 330 - MemoryUsage: - BuildBlocks: 29.36 KB - BuildKeyArena: 12.00 KB - HashTable: 3.62 KB - PeakMemoryUsage: 40.97 KB - OpenTime: 21.815us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 692ns - RuntimeFilterComputeTime: 3.93us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.6us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.271us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 15.326us - ProjectionTime: 0ns - RowsProduced: 330 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s0ms PipelineXTask (index=23):(Active: 167.564us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 80.75us - CloseTime: 2.916us - GetBlockTime: 5.863us - OpenTime: 2.630us - PrepareTime: 76.32us - SinkTime: 58.599us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.580us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.430ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 600ns - BuildRows: 343 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.479us - BuildTableInsertTime: 16.651us - BuildTableTime: 18.80us - CloseTime: 0ns - ExecTime: 90.993us - InputRows: 342 - MemoryUsage: - BuildBlocks: 30.42 KB - BuildKeyArena: 12.00 KB - HashTable: 3.68 KB - PeakMemoryUsage: 42.09 KB - OpenTime: 32.294us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 851ns - RuntimeFilterComputeTime: 2.666us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.407us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.50 KB - MemoryUsage: - Blocks: 43.50 KB - PeakMemoryUsage: 43.50 KB - OpenTime: 17.895us - ProjectionTime: 0ns - RowsProduced: 342 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s0ms Fragment 80: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 76.495ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 75.620ms - CloseTime: 168.920us - GetBlockTime: 259.205us - OpenTime: 329.938us - PrepareTime: 363.60us - SinkTime: 74.920ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.308ms - WaitBfTime: 775.713ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 305.995ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.200us - CompressTime: 0ns - ExecTime: 75.10ms - InputRows: 68.654K (68654) - LocalBytesSent: 1.77 MB - LocalSendTime: 153.536us - LocalSentRows: 68.654K (68654) - MemoryUsage: - PeakMemoryUsage: 3.16 MB - MergeBlockTime: 0ns - OpenTime: 83.803us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 68.654K (68654) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.386ms - SplitBlockHashComputeTime: 67.509ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.590us - BlocksProduced: 19 - CloseTime: 153.122us - ExecTime: 114.579ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 526.319us - ProcessConjunctTime: 81.753us - ProjectionTime: 3.432ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 384.247ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.215ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [13.502us, 3.822us, 4.089us, 7.552ms, ] - PerScannerRowsRead: [0, 0, 0, 68.65K, ] - PerScannerWaitTime: [94.473ms, 95.141ms, 96.934ms, 97.697ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.181ms - MemoryUsage: - FreeBlocks: 2.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 66.369ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.121us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.181ms - ScannerCtxSchedTime: 384.239ms - ScannerFilterTime: 13.76us - ScannerGetBlockTime: 7.529ms - ScannerInitTime: 204.385us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.103us - BlockConditionsFilteredBloomFilterTime: 321ns - BlockConditionsFilteredDictTime: 165ns - BlockConditionsFilteredTime: 10.177us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 180ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 49.211us - BlockInitTime: 189.153us - BlockLoadTime: 73.19ms - BlocksLoad: 262 - CachedPagesNum: 220 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 53.427ms - FirstReadSeekCount: 453 - FirstReadSeekTime: 206.220us - FirstReadTime: 7.511ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.63us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 9.177ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 488.82us - OutputIndexResultColumnTimer: 21.909us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 8.657ms - ShortPredEvalTime: 568.758us - TotalPagesNum: 220 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 30.64us PipelineXTask (index=1):(Active: 9.738ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.155ms - CloseTime: 174.996us - GetBlockTime: 354.182us - OpenTime: 167.905us - PrepareTime: 230.839us - SinkTime: 8.518ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.546ms - WaitBfTime: 775.609ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 344.347ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.688us - CompressTime: 0ns - ExecTime: 8.590ms - InputRows: 67.716K (67716) - LocalBytesSent: 1.74 MB - LocalSendTime: 231.2us - LocalSentRows: 67.716K (67716) - MemoryUsage: - PeakMemoryUsage: 2.88 MB - MergeBlockTime: 0ns - OpenTime: 65.784us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 67.716K (67716) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.974ms - SplitBlockHashComputeTime: 1.492ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.484us - BlocksProduced: 19 - CloseTime: 155.322us - ExecTime: 144.156ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 238.666us - ProcessConjunctTime: 25.181us - ProjectionTime: 23.799ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 395.359ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.612ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.650us, 5.929us, 13.104us, 17.510ms, ] - PerScannerRowsRead: [0, 0, 0, 67.72K, ] - PerScannerWaitTime: [97.542ms, 97.634ms, 100.049ms, 100.132ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 16.974ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 84.324ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 964ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.875ms - ScannerCtxSchedTime: 395.347ms - ScannerFilterTime: 29.581us - ScannerGetBlockTime: 17.470ms - ScannerInitTime: 121.975us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.160us - BlockConditionsFilteredBloomFilterTime: 189ns - BlockConditionsFilteredDictTime: 123ns - BlockConditionsFilteredTime: 9.262us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 187ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 58.135us - BlockInitTime: 219.331us - BlockLoadTime: 100.933ms - BlocksLoad: 282 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 85.775ms - FirstReadSeekCount: 493 - FirstReadSeekTime: 198.742us - FirstReadTime: 9.715ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.452us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.256ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 490.620us - OutputIndexResultColumnTimer: 24.154us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.629ms - ShortPredEvalTime: 288.376us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 23.723us PipelineXTask (index=2):(Active: 73.475ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 40.110ms - CloseTime: 163.93us - GetBlockTime: 241.17us - OpenTime: 32.967ms - PrepareTime: 225.113us - SinkTime: 6.819ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.981ms - WaitBfTime: 913.51ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 403.521ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.857us - CompressTime: 0ns - ExecTime: 6.892ms - InputRows: 66.761K (66761) - LocalBytesSent: 1.72 MB - LocalSendTime: 175.384us - LocalSentRows: 66.761K (66761) - MemoryUsage: - PeakMemoryUsage: 2.98 MB - MergeBlockTime: 0ns - OpenTime: 66.301us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 66.761K (66761) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.874ms - SplitBlockHashComputeTime: 1.163ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.742us - BlocksProduced: 19 - CloseTime: 149.215us - ExecTime: 136.584ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 33.36ms - ProcessConjunctTime: 50.674us - ProjectionTime: 2.923ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 347.142ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.236ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.853us, 5.494us, 4.986us, 7.323ms, ] - PerScannerRowsRead: [0, 0, 0, 66.76K, ] - PerScannerWaitTime: [85.428ms, 86.470ms, 86.556ms, 88.687ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.42ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 206.516ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.4us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 65.926ms - ScannerCtxSchedTime: 347.137ms - ScannerFilterTime: 11.340us - ScannerGetBlockTime: 7.294ms - ScannerInitTime: 32.867ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 968ns - BlockConditionsFilteredBloomFilterTime: 192ns - BlockConditionsFilteredDictTime: 110ns - BlockConditionsFilteredTime: 7.233us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 175ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 52.175us - BlockInitTime: 180.186us - BlockLoadTime: 213.52ms - BlocksLoad: 288 - CachedPagesNum: 241 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 114.769ms - FirstReadSeekCount: 502 - FirstReadSeekTime: 159.243us - FirstReadTime: 61.282ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.612us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.293ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 31.956ms - OutputIndexResultColumnTimer: 24.238us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.812ms - ShortPredEvalTime: 635.2us - TotalPagesNum: 241 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.174us PipelineXTask (index=3):(Active: 39.35ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.286ms - CloseTime: 166.82us - GetBlockTime: 268.201us - OpenTime: 290.334us - PrepareTime: 284.932us - SinkTime: 37.649ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.882ms - WaitBfTime: 946.19ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 439.832ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.956us - CompressTime: 0ns - ExecTime: 37.789ms - InputRows: 68.072K (68072) - LocalBytesSent: 1.75 MB - LocalSendTime: 175.938us - LocalSentRows: 68.072K (68072) - MemoryUsage: - PeakMemoryUsage: 3.07 MB - MergeBlockTime: 0ns - OpenTime: 131.570us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 68.072K (68072) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 35.622ms - SplitBlockHashComputeTime: 1.190ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.800us - BlocksProduced: 19 - CloseTime: 149.162us - ExecTime: 138.994ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 368.403us - ProcessConjunctTime: 64.596us - ProjectionTime: 34.153ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 370.91ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.54ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.662us, 5.790us, 6.868us, 143.870ms, ] - PerScannerRowsRead: [0, 0, 0, 68.07K, ] - PerScannerWaitTime: [91.491ms, 91.821ms, 92.614ms, 94.163ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 143.219ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 158.853ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 986ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 60.641ms - ScannerCtxSchedTime: 370.84ms - ScannerFilterTime: 13.424us - ScannerGetBlockTime: 143.846ms - ScannerInitTime: 192.975us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.385us - BlockConditionsFilteredBloomFilterTime: 1.81us - BlockConditionsFilteredDictTime: 555ns - BlockConditionsFilteredTime: 20.630us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 902ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 61.957us - BlockInitTime: 233.107us - BlockLoadTime: 301.598ms - BlocksLoad: 259 - CachedPagesNum: 219 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 213.991ms - FirstReadSeekCount: 429 - FirstReadSeekTime: 169.8us - FirstReadTime: 7.39ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.100us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 77.285ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 665.330us - OutputIndexResultColumnTimer: 17.24us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.361ms - ShortPredEvalTime: 730.57us - TotalPagesNum: 219 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 33.425us PipelineXTask (index=4):(Active: 864.975us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 285.486us - CloseTime: 96.776us - GetBlockTime: 57.532us - OpenTime: 147.820us - PrepareTime: 326.39us - SinkTime: 60.322us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 759.562us - WaitBfTime: 946.305ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 466.304ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.404us - CompressTime: 0ns - ExecTime: 132.735us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.982us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 64.672us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 395ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.548us - BlocksProduced: 0 - CloseTime: 86.831us - ExecTime: 116.284ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 219.922us - ProcessConjunctTime: 28.41us - ProjectionTime: 4.139us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 291.169ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.914ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.770us, 5.293us, 5.585us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [94.999ms, 97.003ms, 99.166ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 129.400ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 168ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.550ms - ScannerCtxSchedTime: 291.164ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.609us - ScannerInitTime: 93.710us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 836ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.595us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 26.342us - BlockInitTime: 96.307us - BlockLoadTime: 128.959ms - BlocksLoad: 240 - CachedPagesNum: 183 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.557ms - FirstReadSeekCount: 474 - FirstReadSeekTime: 150.379us - FirstReadTime: 83.782ms - IOTimer: 0ns - InvertedIndexFilterTime: 820ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 44.93us - OutputIndexResultColumnTimer: 17.948us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 183 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 667.507us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 247.447us - CloseTime: 89.9us - GetBlockTime: 56.899us - OpenTime: 106.100us - PrepareTime: 217.980us - SinkTime: 61.981us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 569.350us - WaitBfTime: 946.448ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 465.187ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.744us - CompressTime: 0ns - ExecTime: 153.927us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.521us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 84.523us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 517ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.695us - BlocksProduced: 0 - CloseTime: 80.179us - ExecTime: 117.611ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 168.283us - ProcessConjunctTime: 22.821us - ProjectionTime: 5.895us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 301.416ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.300ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.548us, 18.356us, 5.353us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [99.684ms, 100.278ms, 101.453ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 78.506ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 172ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.458ms - ScannerCtxSchedTime: 301.412ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 9.821us - ScannerInitTime: 63.633us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 629ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.256us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 29.432us - BlockInitTime: 96.377us - BlockLoadTime: 78.54ms - BlocksLoad: 264 - CachedPagesNum: 203 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 67.121ms - FirstReadSeekCount: 522 - FirstReadSeekTime: 136.415us - FirstReadTime: 9.1ms - IOTimer: 0ns - InvertedIndexFilterTime: 952ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 86.620us - OutputIndexResultColumnTimer: 17.423us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 203 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 700.797us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 221.559us - CloseTime: 108.358us - GetBlockTime: 45.373us - OpenTime: 104.291us - PrepareTime: 258.368us - SinkTime: 51.869us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 583.57us - WaitBfTime: 946.553ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 465.462ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.744us - CompressTime: 0ns - ExecTime: 125.218us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.929us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 65.949us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 388ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.879us - BlocksProduced: 0 - CloseTime: 99.639us - ExecTime: 117.576ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 164.657us - ProcessConjunctTime: 18.876us - ProjectionTime: 3.952us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 312.468ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.262ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.506us, 4.360us, 5.390us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [103.695ms, 104.182ms, 104.590ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 102.864ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 211ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.49ms - ScannerCtxSchedTime: 312.462ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.235us - ScannerInitTime: 63.375us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 611ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.1us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 30.874us - BlockInitTime: 97.817us - BlockLoadTime: 102.367ms - BlocksLoad: 255 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 59.772ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 144.687us - FirstReadTime: 41.18ms - IOTimer: 0ns - InvertedIndexFilterTime: 965ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 55.49us - OutputIndexResultColumnTimer: 21.908us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 746.924us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 270.282us - CloseTime: 100.594us - GetBlockTime: 55.766us - OpenTime: 129.238us - PrepareTime: 239.309us - SinkTime: 63.372us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 637.144us - WaitBfTime: 946.650ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 464.255ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.977us - CompressTime: 0ns - ExecTime: 179.518us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.326us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 105.605us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 369ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.515us - BlocksProduced: 0 - CloseTime: 88.665us - ExecTime: 119.12ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 190.749us - ProcessConjunctTime: 18.178us - ProjectionTime: 4.373us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 319.595ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.672ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.547us, 4.263us, 6.323us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [104.768ms, 105.251ms, 109.575ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 163.8ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 221ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 56.467ms - ScannerCtxSchedTime: 319.589ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.646us - ScannerInitTime: 89.279us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 615ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.338us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 43.924us - BlockInitTime: 129.671us - BlockLoadTime: 162.517ms - BlocksLoad: 259 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 151.91ms - FirstReadSeekCount: 512 - FirstReadSeekTime: 176.182us - FirstReadTime: 9.465ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.228us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 64.321us - OutputIndexResultColumnTimer: 18.81us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 198 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.398ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 615.188us - CloseTime: 131.19us - GetBlockTime: 64.424us - OpenTime: 414.111us - PrepareTime: 227.791us - SinkTime: 89.836us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.253ms - WaitBfTime: 767.950ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.659ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.266us - CompressTime: 0ns - ExecTime: 191.268us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 46.338us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 89.949us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 441ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 10.945us - BlocksProduced: 0 - CloseTime: 116.459us - ExecTime: 136.35ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 484.336us - ProcessConjunctTime: 115.916us - ProjectionTime: 3.883us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 323.836ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 135.367ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.735us, 4.391us, 9.822us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [107.550ms, 107.963ms, 108.322ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 75.192ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 249ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.549ms - ScannerCtxSchedTime: 323.832ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.816us - ScannerInitTime: 239.553us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 695ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.768us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 40.533us - BlockInitTime: 150.709us - BlockLoadTime: 74.658ms - BlocksLoad: 267 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 55.799ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 165.994us - FirstReadTime: 17.236ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.147us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 49.346us - OutputIndexResultColumnTimer: 14.793us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 704.8us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 282.91us - CloseTime: 109.6us - GetBlockTime: 48.42us - OpenTime: 115.758us - PrepareTime: 185.974us - SinkTime: 89.613us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 586.208us - WaitBfTime: 946.776ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 457.970ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.93us - CompressTime: 0ns - ExecTime: 156.9us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.528us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 58.778us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 612ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.679us - BlocksProduced: 0 - CloseTime: 99.383us - ExecTime: 142.46ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 184.203us - ProcessConjunctTime: 20.826us - ProjectionTime: 4.868us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 339.40ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 141.709ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.235us, 9.656us, 5.263us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [111.508ms, 112.634ms, 114.897ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 142.125ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 155ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.288ms - ScannerCtxSchedTime: 339.36ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.921us - ScannerInitTime: 70.287us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 584ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.903us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 28.251us - BlockInitTime: 94.624us - BlockLoadTime: 141.672ms - BlocksLoad: 269 - CachedPagesNum: 206 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 89.777ms - FirstReadSeekCount: 532 - FirstReadSeekTime: 165.25us - FirstReadTime: 49.903ms - IOTimer: 0ns - InvertedIndexFilterTime: 778ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 56.122us - OutputIndexResultColumnTimer: 17.555us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 206 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 1.390ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 626.386us - CloseTime: 104.441us - GetBlockTime: 80.190us - OpenTime: 411.766us - PrepareTime: 235.806us - SinkTime: 93.960us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.271ms - WaitBfTime: 768.759ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.102ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.751us - CompressTime: 0ns - ExecTime: 186.264us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 50.401us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 80.39us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 393ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.512us - BlocksProduced: 0 - CloseTime: 89.594us - ExecTime: 115.139ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 488.261us - ProcessConjunctTime: 132.229us - ProjectionTime: 3.980us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 292.276ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.477ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.254us, 4.657us, 5.546us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [97.072ms, 97.558ms, 97.645ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 153.664ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 152ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.677ms - ScannerCtxSchedTime: 292.270ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.989us - ScannerInitTime: 221.404us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.33us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.408us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 27.748us - BlockInitTime: 101.340us - BlockLoadTime: 153.224ms - BlocksLoad: 274 - CachedPagesNum: 213 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 110.119ms - FirstReadSeekCount: 542 - FirstReadSeekTime: 126.847us - FirstReadTime: 41.630ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.48us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 53.924us - OutputIndexResultColumnTimer: 14.950us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 213 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 7.859ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.339ms - CloseTime: 139.873us - GetBlockTime: 254.807us - OpenTime: 187.541us - PrepareTime: 185.138us - SinkTime: 6.817ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.709ms - WaitBfTime: 946.972ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 455.761ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.593us - CompressTime: 0ns - ExecTime: 6.883ms - InputRows: 67.464K (67464) - LocalBytesSent: 1.74 MB - LocalSendTime: 196.995us - LocalSentRows: 67.464K (67464) - MemoryUsage: - PeakMemoryUsage: 3.06 MB - MergeBlockTime: 0ns - OpenTime: 61.536us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 67.464K (67464) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.693ms - SplitBlockHashComputeTime: 1.183ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=188. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 58, type = minmax), RuntimeFilter: (id = 59, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.494us - BlocksProduced: 19 - CloseTime: 125.684us - ExecTime: 157.116ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 248.546us - ProcessConjunctTime: 24.120us - ProjectionTime: 23.607ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 351.898ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.876ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 58, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 59, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.506us, 5.385us, 106.441ms, ] - PerScannerRowsRead: [0, 0, 67.46K, ] - PerScannerWaitTime: [116.759ms, 116.827ms, 118.311ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 66.801ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.223ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 866ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.273ms - ScannerCtxSchedTime: 351.894ms - ScannerFilterTime: 20.585us - ScannerGetBlockTime: 106.408ms - ScannerInitTime: 131.102us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 741ns - BlockConditionsFilteredBloomFilterTime: 213ns - BlockConditionsFilteredDictTime: 128ns - BlockConditionsFilteredTime: 6.408us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 173ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 37.910us - BlockInitTime: 143.877us - BlockLoadTime: 107.816ms - BlocksLoad: 201 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.618ms - FirstReadSeekCount: 375 - FirstReadSeekTime: 168.802us - FirstReadTime: 7.306ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.453us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.548ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 234.519us - OutputIndexResultColumnTimer: 19.676us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 887.168us - ShortPredEvalTime: 146.149us - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.773us Fragment 81: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 34.67ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.938ms - CloseTime: 15.374us - GetBlockTime: 32.842ms - OpenTime: 2.546us - PrepareTime: 102.377us - SinkTime: 1.43ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.319ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.418ms DATA_STREAM_SINK_OPERATOR (id=187,dst_id=187): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.276us - CompressTime: 0ns - ExecTime: 1.131ms - InputRows: 4.144K (4144) - LocalBytesSent: 368.58 KB - LocalSendTime: 146.410us - LocalSentRows: 4.144K (4144) - MemoryUsage: - PeakMemoryUsage: 536.00 KB - MergeBlockTime: 0ns - OpenTime: 76.500us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.144K (4144) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 553.338us - SplitBlockHashComputeTime: 77.674us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=186): - BlocksProduced: 2 - CloseTime: 857ns - DeserializeAndMergeTime: 0ns - ExecTime: 32.843ms - GetResultsTime: 874.821us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 24.313us - HashTableSize: 4.144K (4144) - InsertKeysToColumnTime: 460.102us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.153us - ProjectionTime: 31.934ms - RowsProduced: 4.144K (4144) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s887ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.262ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.179ms - CloseTime: 15.146us - GetBlockTime: 49.974us - OpenTime: 3.80us - PrepareTime: 58.241us - SinkTime: 3.100ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.238ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.596ms AGGREGATION_SINK_OPERATOR (id=186): - BuildTime: 0ns - CloseTime: 4.704us - DeserializeAndMergeTime: 175.446us - ExecTime: 3.122ms - ExprTime: 0ns - HashTableComputeTime: 2.839ms - HashTableEmplaceTime: 2.212ms - HashTableInputCount: 4.144K (4144) - InputRows: 4.144K (4144) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 1.95 MB - SerializeKeyArena: 1.76 MB - MergeTime: 3.91ms - OpenTime: 18.717us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=185): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 9.535us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.658us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 837.00 KB - MemoryUsage: - Blocks: 837.00 KB - PeakMemoryUsage: 864.00 KB - OpenTime: 15.302us - ProjectionTime: 0ns - RowsProduced: 4.144K (4144) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s837ms Fragment 82: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.424ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.702ms - CloseTime: 138.873us - GetBlockTime: 5.289ms - OpenTime: 269.158us - PrepareTime: 302.405us - SinkTime: 101.261us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.272ms - WaitBfTime: 1s56ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 650.150ms DATA_STREAM_SINK_OPERATOR (id=185,dst_id=185): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.114us - CompressTime: 0ns - ExecTime: 143.775us - InputRows: 4.144K (4144) - LocalBytesSent: 384.97 KB - LocalSendTime: 94.891us - LocalSentRows: 4.144K (4144) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.317us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.144K (4144) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=184): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.886ms - CloseTime: 75.132us - DeserializeAndMergeTime: 0ns - ExecTime: 3.681ms - ExprTime: 215.352us - GetResultsTime: 653.284us - HashTableComputeTime: 2.575ms - HashTableEmplaceTime: 1.941ms - HashTableInputCount: 5.193K (5193) - HashTableIterateTime: 19.642us - HashTableSize: 4.144K (4144) - InsertKeysToColumnTime: 359.393us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 1.95 MB - SerializeKeyArena: 1.76 MB - MergeTime: 0ns - OpenTime: 40.511us - ProjectionTime: 0ns - RowsProduced: 4.144K (4144) - SerializeDataTime: 218.355us - SerializeKeyTime: 0ns - SerializeResultTime: 658.372us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=183): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 5.577us - ExecTime: 1.686ms - InitProbeSideTime: 28.784us - JoinFilterTimer: 385ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 20.722us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 910ns - ProbeFindNextTime: 0ns - ProbeRows: 80 - ProbeTime: 1.311ms - ProbeWhenBuildSideOutputTime: 876.799us - ProbeWhenProbeSideOutputTime: 8.217us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 341.446us - ProjectionTime: 341.264us - RowsProduced: 5.193K (5193) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s286ms OLAP_SCAN_OPERATOR (id=182. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : RuntimeFilter: (id = 56, type = minmax), RuntimeFilter: (id = 57, type = in_or_bloomfilter), - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 12.213us - BlocksProduced: 1 - CloseTime: 40.960us - ExecTime: 131.617ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 353.30us - ProcessConjunctTime: 68.285us - ProjectionTime: 4.65us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 130.908ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 131.165ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 56, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 57, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [31.200us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [130.908ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.70us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 182.195us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 154ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 268.56us - ScannerCtxSchedTime: 130.905ms - ScannerFilterTime: 932ns - ScannerGetBlockTime: 26.519us - ScannerInitTime: 149.502us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 292ns - BlockConditionsFilteredBloomFilterTime: 1.578us - BlockConditionsFilteredDictTime: 5.82us - BlockConditionsFilteredTime: 28.351us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.62us - BlockInitSeekCount: 6 - BlockInitSeekTime: 13.107us - BlockInitTime: 61.642us - BlockLoadTime: 114.358us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.922us - FirstReadTime: 6.681us - IOTimer: 0ns - InvertedIndexFilterTime: 2.508us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.402us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 31.634us - OutputIndexResultColumnTimer: 177ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 40ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.202us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 27.967ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 27.810ms - CloseTime: 15.17us - GetBlockTime: 13.755ms - OpenTime: 8.524us - PrepareTime: 124.283us - SinkTime: 12.707ms - GetBlockCounter: 1.813K (1813) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 40 - NumBlockedTimes: 42 - NumScheduleTimes: 42 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.265ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s333ms HASH_JOIN_SINK_OPERATOR (id=183): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 147.777us - BuildRows: 29.506K (29506) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.167ms - BuildTableInsertTime: 629.688us - BuildTableTime: 661.207us - CloseTime: 0ns - ExecTime: 12.592ms - InputRows: 29.505K (29505) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 440.00 KB - HashTable: 371.26 KB - PeakMemoryUsage: 2.86 MB - OpenTime: 45.727us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.858us - RuntimeFilterComputeTime: 4.3ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=181): - BlocksProduced: 1.812K (1812) - BytesReceived: 0.00 - CloseTime: 11.557us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.520ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.54 MB - MemoryUsage: - Blocks: 793.59 KB - PeakMemoryUsage: 37.52 MB - OpenTime: 24.384us - ProjectionTime: 0ns - RowsProduced: 29.505K (29505) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s413ms Fragment 83: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 128.476ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 128.287ms - CloseTime: 50.33us - GetBlockTime: 124.340ms - OpenTime: 6.423us - PrepareTime: 119.874us - SinkTime: 3.77ms - GetBlockCounter: 457 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.769ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2s10ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 454 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.485us - CompressTime: 0ns - ExecTime: 3.9ms - InputRows: 7.494K (7494) - LocalBytesSent: 539.84 KB - LocalSendTime: 2.791ms - LocalSentRows: 7.494K (7494) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.494K (7494) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=180): - BlocksProduced: 454 - BuildOutputBlock: 0ns - CloseTime: 22.135us - ExecTime: 117.517ms - InitProbeSideTime: 69.140ms - JoinFilterTimer: 44.496us - MemoryUsage: - PeakMemoryUsage: 552.00 KB - ProbeKeyArena: 552.00 KB - OpenTime: 14.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.822us - ProbeFindNextTime: 0ns - ProbeRows: 2.079723M (2079723) - ProbeTime: 113.567ms - ProbeWhenBuildSideOutputTime: 4.633ms - ProbeWhenProbeSideOutputTime: 1.479ms - ProbeWhenProcessHashTableTime: 23.638us - ProbeWhenSearchHashTableTime: 31.280ms - ProjectionTime: 2.357ms - RowsProduced: 7.494K (7494) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 456 - BytesReceived: 0.00 - CloseTime: 13.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 6.322ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 146.62 MB - MemoryUsage: - Blocks: 19.70 MB - PeakMemoryUsage: 19.70 MB - OpenTime: 31.20us - ProjectionTime: 0ns - RowsProduced: 2.079723M (2079723) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s625ms PipelineXTask (index=2):(Active: 166.845ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 166.694ms - CloseTime: 40.39us - GetBlockTime: 162.714ms - OpenTime: 5.64us - PrepareTime: 94.741us - SinkTime: 3.18ms - GetBlockCounter: 455 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 32 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.385ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s544ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 451 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.972us - CompressTime: 0ns - ExecTime: 2.921ms - InputRows: 6.762K (6762) - LocalBytesSent: 485.61 KB - LocalSendTime: 2.726ms - LocalSentRows: 6.762K (6762) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.860us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6.762K (6762) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=180): - BlocksProduced: 451 - BuildOutputBlock: 0ns - CloseTime: 10.880us - ExecTime: 155.755ms - InitProbeSideTime: 55.268ms - JoinFilterTimer: 44.958us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 16.998us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 129.594us - ProbeFindNextTime: 0ns - ProbeRows: 2.079796M (2079796) - ProbeTime: 151.752ms - ProbeWhenBuildSideOutputTime: 4.464ms - ProbeWhenProbeSideOutputTime: 1.470ms - ProbeWhenProcessHashTableTime: 28.701us - ProbeWhenSearchHashTableTime: 42.813ms - ProjectionTime: 2.274ms - RowsProduced: 6.762K (6762) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 454 - BytesReceived: 0.00 - CloseTime: 18.729us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 6.383ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 147.16 MB - MemoryUsage: - Blocks: 20.16 MB - PeakMemoryUsage: 20.16 MB - OpenTime: 14.783us - ProjectionTime: 0ns - RowsProduced: 2.079796M (2079796) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s34ms PipelineXTask (index=4):(Active: 149.682ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 149.509ms - CloseTime: 42.929us - GetBlockTime: 134.173ms - OpenTime: 4.92us - PrepareTime: 114.939us - SinkTime: 14.419ms - GetBlockCounter: 457 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s596ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 456 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.842us - CompressTime: 0ns - ExecTime: 14.335ms - InputRows: 7.606K (7606) - LocalBytesSent: 548.79 KB - LocalSendTime: 14.95ms - LocalSentRows: 7.606K (7606) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 47.371us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.606K (7606) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=180): - BlocksProduced: 456 - BuildOutputBlock: 0ns - CloseTime: 14.822us - ExecTime: 127.845ms - InitProbeSideTime: 78.487ms - JoinFilterTimer: 46.583us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.268us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 71.551us - ProbeFindNextTime: 0ns - ProbeRows: 2.079268M (2079268) - ProbeTime: 124.133ms - ProbeWhenBuildSideOutputTime: 4.395ms - ProbeWhenProbeSideOutputTime: 1.472ms - ProbeWhenProcessHashTableTime: 27.985us - ProbeWhenSearchHashTableTime: 33.180ms - ProjectionTime: 2.103ms - RowsProduced: 7.606K (7606) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 456 - BytesReceived: 0.00 - CloseTime: 12.596us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.822ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 147.93 MB - MemoryUsage: - Blocks: 19.07 MB - PeakMemoryUsage: 19.07 MB - OpenTime: 29.240us - ProjectionTime: 0ns - RowsProduced: 2.079268M (2079268) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s997ms PipelineXTask (index=6):(Active: 128.120ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 127.984ms - CloseTime: 43.954us - GetBlockTime: 113.90ms - OpenTime: 2.988us - PrepareTime: 82.13us - SinkTime: 13.981ms - GetBlockCounter: 453 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.773ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s686ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 451 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.123us - CompressTime: 0ns - ExecTime: 13.877ms - InputRows: 7.643K (7643) - LocalBytesSent: 549.77 KB - LocalSendTime: 13.670ms - LocalSentRows: 7.643K (7643) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.266us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.643K (7643) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=180): - BlocksProduced: 451 - BuildOutputBlock: 0ns - CloseTime: 17.125us - ExecTime: 106.766ms - InitProbeSideTime: 55.655ms - JoinFilterTimer: 40.4us - MemoryUsage: - PeakMemoryUsage: 552.00 KB - ProbeKeyArena: 552.00 KB - OpenTime: 20.925us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 91.891us - ProbeFindNextTime: 0ns - ProbeRows: 2.079462M (2079462) - ProbeTime: 101.502ms - ProbeWhenBuildSideOutputTime: 4.347ms - ProbeWhenProbeSideOutputTime: 1.448ms - ProbeWhenProcessHashTableTime: 28.302us - ProbeWhenSearchHashTableTime: 33.776ms - ProjectionTime: 1.948ms - RowsProduced: 7.643K (7643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 452 - BytesReceived: 0.00 - CloseTime: 11.155us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.838ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 148.96 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 19.83 MB - OpenTime: 13.846us - ProjectionTime: 0ns - RowsProduced: 2.079462M (2079462) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s955ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.406ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.313ms - CloseTime: 21.689us - GetBlockTime: 61.407us - OpenTime: 2.680us - PrepareTime: 64.104us - SinkTime: 1.215ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.374ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 189.718ms HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.185us - BuildRows: 7.495K (7495) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 355.837us - BuildTableInsertTime: 502.264us - BuildTableTime: 507.578us - CloseTime: 0ns - ExecTime: 1.240ms - InputRows: 7.494K (7494) - MemoryUsage: - BuildBlocks: 473.97 KB - BuildKeyArena: 276.00 KB - HashTable: 100.60 KB - PeakMemoryUsage: 846.57 KB - OpenTime: 26.241us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.915us - RuntimeFilterComputeTime: 290.575us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 18.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.514us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 768.00 KB - PeakMemoryUsage: 768.00 KB - OpenTime: 17.910us - ProjectionTime: 0ns - RowsProduced: 7.494K (7494) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 719.476ms PipelineXTask (index=3):(Active: 1.188ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.117ms - CloseTime: 7.823us - GetBlockTime: 36.973us - OpenTime: 2.341us - PrepareTime: 55.285us - SinkTime: 1.51ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.169ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 189.26ms HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.543us - BuildRows: 6.763K (6763) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 248.788us - BuildTableInsertTime: 489.501us - BuildTableTime: 492.818us - CloseTime: 0ns - ExecTime: 1.65ms - InputRows: 6.762K (6762) - MemoryUsage: - BuildBlocks: 426.18 KB - BuildKeyArena: 252.00 KB - HashTable: 65.03 KB - PeakMemoryUsage: 739.20 KB - OpenTime: 14.587us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.400us - RuntimeFilterComputeTime: 253.153us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 6.455us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.439us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 608.00 KB - MemoryUsage: - Blocks: 608.00 KB - PeakMemoryUsage: 608.00 KB - OpenTime: 14.763us - ProjectionTime: 0ns - RowsProduced: 6.762K (6762) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 721.499ms PipelineXTask (index=5):(Active: 13.281ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.205ms - CloseTime: 16.204us - GetBlockTime: 39.759us - OpenTime: 2.738us - PrepareTime: 52.439us - SinkTime: 13.138ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.545ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.16ms HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.874us - BuildRows: 7.607K (7607) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 574.400us - BuildTableInsertTime: 12.341ms - BuildTableTime: 12.346ms - CloseTime: 0ns - ExecTime: 13.160ms - InputRows: 7.606K (7606) - MemoryUsage: - BuildBlocks: 481.94 KB - BuildKeyArena: 280.00 KB - HashTable: 101.15 KB - PeakMemoryUsage: 859.08 KB - OpenTime: 23.134us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.40us - RuntimeFilterComputeTime: 168.50us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 11.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 61.731us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 768.00 KB - PeakMemoryUsage: 768.00 KB - OpenTime: 11.990us - ProjectionTime: 0ns - RowsProduced: 7.606K (7606) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 721.842ms PipelineXTask (index=7):(Active: 1.396ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.283ms - CloseTime: 15.600us - GetBlockTime: 41.488us - OpenTime: 2.686us - PrepareTime: 87.959us - SinkTime: 1.216ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.372ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 318.286ms HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.654us - BuildRows: 7.644K (7644) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 362.311us - BuildTableInsertTime: 323.70us - BuildTableTime: 327.363us - CloseTime: 0ns - ExecTime: 1.248ms - InputRows: 7.643K (7643) - MemoryUsage: - BuildBlocks: 482.59 KB - BuildKeyArena: 284.00 KB - HashTable: 101.33 KB - PeakMemoryUsage: 863.92 KB - OpenTime: 33.332us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 182.498us - RuntimeFilterComputeTime: 292.943us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 12.719us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.71us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 768.00 KB - PeakMemoryUsage: 768.00 KB - OpenTime: 34.73us - ProjectionTime: 0ns - RowsProduced: 7.643K (7643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 720.499ms Fragment 84: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 406.19ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 405.648ms - CloseTime: 63.660us - GetBlockTime: 33.197ms - OpenTime: 87.58us - PrepareTime: 209.469us - SinkTime: 371.298ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 202.826ms - WaitBfTime: 776.198ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s508ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 454 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.958us - CompressTime: 0ns - ExecTime: 371.202ms - InputRows: 2.076163M (2076163) - LocalBytesSent: 91.08 MB - LocalSendTime: 3.831ms - LocalSentRows: 2.076163M (2076163) - MemoryUsage: - PeakMemoryUsage: 145.88 MB - MergeBlockTime: 0ns - OpenTime: 45.937us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.076163M (2076163) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 260.244ms - SplitBlockHashComputeTime: 92.589ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 664.277ms - WaitForLocalExchangeBuffer1: 128.429ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 11.726ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 54, type = minmax), RuntimeFilter: (id = 55, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.729us - BlocksProduced: 514 - CloseTime: 47.577us - ExecTime: 357.109ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.224us - ProcessConjunctTime: 26.508us - ProjectionTime: 0ns - RowsProduced: 2.076163M (2076163) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 117.419ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 323.825ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 24.078K (24078) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [205.576ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [117.419ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 137.315ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 915.598us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.748us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 107.341ms - ScannerCtxSchedTime: 117.401ms - ScannerFilterTime: 66.327ms - ScannerGetBlockTime: 138.992ms - ScannerInitTime: 39.528us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.128us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.521us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 20.606us - BlockInitTime: 112.488us - BlockLoadTime: 138.569ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 958.37us - FirstReadTime: 136.574ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.520us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 140.26us - OutputIndexResultColumnTimer: 48.665us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 206.625ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 206.250ms - CloseTime: 57.798us - GetBlockTime: 2.321ms - OpenTime: 57.297us - PrepareTime: 249.800us - SinkTime: 202.895ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 178.227ms - WaitBfTime: 775.851ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s732ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 455 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.847us - CompressTime: 0ns - ExecTime: 202.798ms - InputRows: 2.080192M (2080192) - LocalBytesSent: 91.26 MB - LocalSendTime: 3.390ms - LocalSentRows: 2.080192M (2080192) - MemoryUsage: - PeakMemoryUsage: 146.79 MB - MergeBlockTime: 0ns - OpenTime: 34.973us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.080192M (2080192) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 100.831ms - SplitBlockHashComputeTime: 87.455ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 664.277ms - WaitForLocalExchangeBuffer1: 128.429ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 11.726ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 54, type = minmax), RuntimeFilter: (id = 55, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.929us - BlocksProduced: 514 - CloseTime: 42.486us - ExecTime: 346.26ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 131.961us - ProcessConjunctTime: 10.114us - ProjectionTime: 0ns - RowsProduced: 2.080192M (2080192) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 118.418ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 343.669ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 24.078K (24078) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [178.785ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [118.418ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 145.802ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 13.10ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.601us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 101.559ms - ScannerCtxSchedTime: 118.402ms - ScannerFilterTime: 31.176ms - ScannerGetBlockTime: 147.365ms - ScannerInitTime: 32.281us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.162us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.399us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.906us - BlockInitTime: 129.341us - BlockLoadTime: 146.710ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 714.641us - FirstReadTime: 144.624ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.758us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 160.912us - OutputIndexResultColumnTimer: 56.188us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 268.569ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 268.258ms - CloseTime: 57.442us - GetBlockTime: 2.459ms - OpenTime: 90.784us - PrepareTime: 150.810us - SinkTime: 264.507ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 240.684ms - WaitBfTime: 776.327ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s33ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 455 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.497us - CompressTime: 0ns - ExecTime: 264.380ms - InputRows: 2.080998M (2080998) - LocalBytesSent: 91.29 MB - LocalSendTime: 4.93ms - LocalSentRows: 2.080998M (2080998) - MemoryUsage: - PeakMemoryUsage: 148.78 MB - MergeBlockTime: 0ns - OpenTime: 36.78us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.080998M (2080998) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 179.831ms - SplitBlockHashComputeTime: 66.441ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 652.791ms - WaitForLocalExchangeBuffer1: 128.429ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 11.726ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 54, type = minmax), RuntimeFilter: (id = 55, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.816us - BlocksProduced: 515 - CloseTime: 43.191us - ExecTime: 265.736ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 155.896us - ProcessConjunctTime: 17.724us - ProjectionTime: 0ns - RowsProduced: 2.080998M (2080998) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 124.227ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 263.234ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 24.078K (24078) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [125.605ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [124.227ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 92.817ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 752.331us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.34us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 115.651ms - ScannerCtxSchedTime: 124.208ms - ScannerFilterTime: 30.775ms - ScannerGetBlockTime: 94.545ms - ScannerInitTime: 51.801us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.197us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.266us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 26.331us - BlockInitTime: 123.532us - BlockLoadTime: 93.659ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 808.468us - FirstReadTime: 91.23ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.594us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 176.74us - OutputIndexResultColumnTimer: 70.183us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 332.581ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 332.282ms - CloseTime: 55.148us - GetBlockTime: 31.946ms - OpenTime: 96.319us - PrepareTime: 136.18us - SinkTime: 299.100ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 18 - NumScheduleTimes: 19 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 194.352ms - WaitBfTime: 776.404ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s371ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 456 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.186us - CompressTime: 0ns - ExecTime: 298.967ms - InputRows: 2.080896M (2080896) - LocalBytesSent: 91.29 MB - LocalSendTime: 3.759ms - LocalSentRows: 2.080896M (2080896) - MemoryUsage: - PeakMemoryUsage: 149.22 MB - MergeBlockTime: 0ns - OpenTime: 33.438us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.080896M (2080896) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 218.349ms - SplitBlockHashComputeTime: 64.565ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 664.277ms - WaitForLocalExchangeBuffer1: 128.429ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 11.726ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 54, type = minmax), RuntimeFilter: (id = 55, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.687us - BlocksProduced: 515 - CloseTime: 39.253us - ExecTime: 326.85ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 156.77us - ProcessConjunctTime: 11.501us - ProjectionTime: 0ns - RowsProduced: 2.080896M (2080896) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 150.172ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 294.97ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 24.078K (24078) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [174.145ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [150.172ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 155.852ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 482.858us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.974us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 96.144ms - ScannerCtxSchedTime: 150.159ms - ScannerFilterTime: 16.656ms - ScannerGetBlockTime: 157.250ms - ScannerInitTime: 67.601us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.12us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.607us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.326us - BlockInitTime: 101.397us - BlockLoadTime: 156.501ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 661.856us - FirstReadTime: 154.534ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.173us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 142.892us - OutputIndexResultColumnTimer: 56.720us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 85: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 16.196ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.773ms - CloseTime: 80.381us - GetBlockTime: 223.385us - OpenTime: 133.760us - PrepareTime: 202.578us - SinkTime: 15.350ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.265ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 300.866ms DATA_STREAM_SINK_OPERATOR (id=177,dst_id=177): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 8 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.715us - CompressTime: 0ns - ExecTime: 15.408ms - InputRows: 29.505K (29505) - LocalBytesSent: 1.82 MB - LocalSendTime: 103.291us - LocalSentRows: 29.505K (29505) - MemoryUsage: - PeakMemoryUsage: 2.84 MB - MergeBlockTime: 0ns - OpenTime: 40.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 29.505K (29505) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.612ms - SplitBlockHashComputeTime: 1.124ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=176. table name = QYWX_MOMENT_COMMENT_LIST): - RuntimeFilters: : - PushDownPredicates: [{EXTERNAL_USER_ID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21703] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 504ns - BlocksProduced: 10 - CloseTime: 54.758us - ExecTime: 412.285ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 198.160us - ProcessConjunctTime: 58.795us - ProjectionTime: 0ns - RowsProduced: 29.505K (29505) - RowsRead: 29.505K (29505) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 95.802ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 411.815ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [MOMENT_USER_ID, TYPE, EXTERNAL_USER_ID, COMMENT_TIME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=5, opposite=false - PerScannerRunningTime: [310.790ms, ] - PerScannerRowsRead: [29.50K, ] - PerScannerWaitTime: [95.802ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 308.935ms - MemoryUsage: - FreeBlocks: 1.69 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.303ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 858ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 85.805ms - ScannerCtxSchedTime: 95.797ms - ScannerFilterTime: 115.759us - ScannerGetBlockTime: 310.613ms - ScannerInitTime: 58.181us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.465us - BlockConditionsFilteredBloomFilterTime: 4.271us - BlockConditionsFilteredDictTime: 1.239us - BlockConditionsFilteredTime: 118.950us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.685us - BlockInitSeekCount: 18 - BlockInitSeekTime: 187.973us - BlockInitTime: 410.643us - BlockLoadTime: 314.138ms - BlocksLoad: 208 - CachedPagesNum: 353 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 179.148ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 1.12ms - FirstReadTime: 9.938ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.70us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 52.356ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 69.629ms - OutputIndexResultColumnTimer: 22.590us - RawRowsRead: 834.104K (834104) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 435.651K (435651) - RowsShortCircuitPredInput: 834.104K (834104) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 51.524ms - ShortPredEvalTime: 750.265us - TotalPagesNum: 353 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 108.781us Fragment 86: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 413.219us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 266.115us - CloseTime: 13.825us - GetBlockTime: 61.463us - OpenTime: 3.690us - PrepareTime: 123.0us - SinkTime: 173.335us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 389.832us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.313ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.255us - CompressTime: 0ns - ExecTime: 273.856us - InputRows: 164 - LocalBytesSent: 6.41 KB - LocalSendTime: 76.960us - LocalSentRows: 164 - MemoryUsage: - PeakMemoryUsage: 12.56 KB - MergeBlockTime: 0ns - OpenTime: 88.705us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 164 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.623us - SplitBlockHashComputeTime: 14.310us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 454ns - DeserializeAndMergeTime: 0ns - ExecTime: 66.619us - GetResultsTime: 28.117us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.618us - HashTableSize: 164 - InsertKeysToColumnTime: 10.600us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.426us - ProjectionTime: 24.851us - RowsProduced: 164 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s592ms PipelineXTask (index=2):(Active: 440.293us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 310.921us - CloseTime: 14.721us - GetBlockTime: 73.44us - OpenTime: 3.428us - PrepareTime: 98.348us - SinkTime: 203.625us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 416.988us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.40ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.481us - CompressTime: 0ns - ExecTime: 288.895us - InputRows: 187 - LocalBytesSent: 7.28 KB - LocalSendTime: 64.508us - LocalSentRows: 187 - MemoryUsage: - PeakMemoryUsage: 14.00 KB - MergeBlockTime: 0ns - OpenTime: 73.469us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 187 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.220us - SplitBlockHashComputeTime: 35.10us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 592ns - DeserializeAndMergeTime: 0ns - ExecTime: 80.946us - GetResultsTime: 35.279us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.34us - HashTableSize: 187 - InsertKeysToColumnTime: 15.605us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.435us - ProjectionTime: 28.36us - RowsProduced: 187 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s593ms PipelineXTask (index=4):(Active: 428.208us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 291.234us - CloseTime: 15.875us - GetBlockTime: 75.354us - OpenTime: 2.196us - PrepareTime: 113.162us - SinkTime: 180.696us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 404.481us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.49ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.928us - CompressTime: 0ns - ExecTime: 271.280us - InputRows: 216 - LocalBytesSent: 8.41 KB - LocalSendTime: 65.848us - LocalSentRows: 216 - MemoryUsage: - PeakMemoryUsage: 14.63 KB - MergeBlockTime: 0ns - OpenTime: 77.264us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 216 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 36.439us - SplitBlockHashComputeTime: 9.206us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 496ns - DeserializeAndMergeTime: 0ns - ExecTime: 79.899us - GetResultsTime: 35.944us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.460us - HashTableSize: 216 - InsertKeysToColumnTime: 18.902us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.470us - ProjectionTime: 31.497us - RowsProduced: 216 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s593ms PipelineXTask (index=6):(Active: 377.348us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 225.25us - CloseTime: 10.693us - GetBlockTime: 70.237us - OpenTime: 2.355us - PrepareTime: 132.240us - SinkTime: 131.600us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 357.780us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.24ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.151us - CompressTime: 0ns - ExecTime: 226.55us - InputRows: 202 - LocalBytesSent: 7.87 KB - LocalSendTime: 64.848us - LocalSentRows: 202 - MemoryUsage: - PeakMemoryUsage: 13.88 KB - MergeBlockTime: 0ns - OpenTime: 85.694us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 202 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.784us - SplitBlockHashComputeTime: 7.67us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 282ns - DeserializeAndMergeTime: 0ns - ExecTime: 74.801us - GetResultsTime: 38.826us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.762us - HashTableSize: 202 - InsertKeysToColumnTime: 23.431us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.611us - ProjectionTime: 25.486us - RowsProduced: 202 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s616ms PipelineXTask (index=8):(Active: 411.615us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 235.376us - CloseTime: 11.20us - GetBlockTime: 65.603us - OpenTime: 2.840us - PrepareTime: 155.345us - SinkTime: 150.351us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 392.191us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.191ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.0us - CompressTime: 0ns - ExecTime: 230.935us - InputRows: 186 - LocalBytesSent: 7.24 KB - LocalSendTime: 41.773us - LocalSentRows: 186 - MemoryUsage: - PeakMemoryUsage: 13.13 KB - MergeBlockTime: 0ns - OpenTime: 71.24us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 186 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.895us - SplitBlockHashComputeTime: 7.39us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 305ns - DeserializeAndMergeTime: 0ns - ExecTime: 73.759us - GetResultsTime: 35.455us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.989us - HashTableSize: 186 - InsertKeysToColumnTime: 20.587us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.481us - ProjectionTime: 23.941us - RowsProduced: 186 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s616ms PipelineXTask (index=10):(Active: 333.541us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 207.811us - CloseTime: 9.718us - GetBlockTime: 62.375us - OpenTime: 2.443us - PrepareTime: 108.0us - SinkTime: 127.351us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 316.71us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.455ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.738us - CompressTime: 0ns - ExecTime: 215.559us - InputRows: 201 - LocalBytesSent: 7.82 KB - LocalSendTime: 40.267us - LocalSentRows: 201 - MemoryUsage: - PeakMemoryUsage: 14.19 KB - MergeBlockTime: 0ns - OpenTime: 79.751us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 201 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.462us - SplitBlockHashComputeTime: 7.806us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 272ns - DeserializeAndMergeTime: 0ns - ExecTime: 67.527us - GetResultsTime: 30.925us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.933us - HashTableSize: 201 - InsertKeysToColumnTime: 17.813us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.594us - ProjectionTime: 27.165us - RowsProduced: 201 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s617ms PipelineXTask (index=12):(Active: 360.686us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 220.990us - CloseTime: 11.744us - GetBlockTime: 76.790us - OpenTime: 2.830us - PrepareTime: 118.368us - SinkTime: 125.181us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 341.390us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.77ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.910us - CompressTime: 0ns - ExecTime: 223.283us - InputRows: 192 - LocalBytesSent: 7.48 KB - LocalSendTime: 43.172us - LocalSentRows: 192 - MemoryUsage: - PeakMemoryUsage: 13.44 KB - MergeBlockTime: 0ns - OpenTime: 88.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 192 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.168us - SplitBlockHashComputeTime: 7.576us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 562ns - DeserializeAndMergeTime: 0ns - ExecTime: 81.644us - GetResultsTime: 39.501us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.564us - HashTableSize: 192 - InsertKeysToColumnTime: 16.187us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.127us - ProjectionTime: 30.950us - RowsProduced: 192 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s610ms PipelineXTask (index=14):(Active: 324.406us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 201.363us - CloseTime: 10.229us - GetBlockTime: 62.17us - OpenTime: 2.889us - PrepareTime: 104.941us - SinkTime: 122.999us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 308.84us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.274ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.193us - CompressTime: 0ns - ExecTime: 204.672us - InputRows: 188 - LocalBytesSent: 7.32 KB - LocalSendTime: 40.82us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 13.38 KB - MergeBlockTime: 0ns - OpenTime: 73.55us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 188 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.516us - SplitBlockHashComputeTime: 6.633us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 233ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.959us - GetResultsTime: 35.965us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.999us - HashTableSize: 188 - InsertKeysToColumnTime: 21.934us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.200us - ProjectionTime: 21.660us - RowsProduced: 188 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s610ms PipelineXTask (index=16):(Active: 330.352us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 215.809us - CloseTime: 11.101us - GetBlockTime: 80.971us - OpenTime: 2.683us - PrepareTime: 95.498us - SinkTime: 116.824us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 312.193us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.475ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.911us - CompressTime: 0ns - ExecTime: 191.474us - InputRows: 194 - LocalBytesSent: 7.54 KB - LocalSendTime: 42.938us - LocalSentRows: 194 - MemoryUsage: - PeakMemoryUsage: 13.88 KB - MergeBlockTime: 0ns - OpenTime: 65.352us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 194 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.417us - SplitBlockHashComputeTime: 7.189us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 339ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.836us - GetResultsTime: 37.4us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.951us - HashTableSize: 194 - InsertKeysToColumnTime: 21.846us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.366us - ProjectionTime: 38.530us - RowsProduced: 194 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s610ms PipelineXTask (index=18):(Active: 427.498us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 297.950us - CloseTime: 11.457us - GetBlockTime: 65.466us - OpenTime: 2.717us - PrepareTime: 110.441us - SinkTime: 214.5us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 410.192us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.65ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.290us - CompressTime: 0ns - ExecTime: 294.216us - InputRows: 192 - LocalBytesSent: 7.48 KB - LocalSendTime: 93.389us - LocalSentRows: 192 - MemoryUsage: - PeakMemoryUsage: 14.13 KB - MergeBlockTime: 0ns - OpenTime: 70.469us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 192 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 52.61us - SplitBlockHashComputeTime: 6.196us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 328ns - DeserializeAndMergeTime: 0ns - ExecTime: 74.234us - GetResultsTime: 33.72us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.626us - HashTableSize: 192 - InsertKeysToColumnTime: 19.23us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.877us - ProjectionTime: 26.953us - RowsProduced: 192 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s608ms PipelineXTask (index=20):(Active: 395.471us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 263.454us - CloseTime: 11.772us - GetBlockTime: 77.986us - OpenTime: 3.540us - PrepareTime: 111.143us - SinkTime: 160.641us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 376.166us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.405ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.407us - CompressTime: 0ns - ExecTime: 252.457us - InputRows: 188 - LocalBytesSent: 7.33 KB - LocalSendTime: 64.96us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 13.75 KB - MergeBlockTime: 0ns - OpenTime: 81.657us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 188 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.419us - SplitBlockHashComputeTime: 6.375us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 343ns - DeserializeAndMergeTime: 0ns - ExecTime: 81.997us - GetResultsTime: 41.20us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.842us - HashTableSize: 188 - InsertKeysToColumnTime: 21.360us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.932us - ProjectionTime: 29.249us - RowsProduced: 188 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s611ms PipelineXTask (index=22):(Active: 330.133us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 213.100us - CloseTime: 10.880us - GetBlockTime: 69.187us - OpenTime: 2.455us - PrepareTime: 97.646us - SinkTime: 126.999us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 311.901us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.590ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.699us - CompressTime: 0ns - ExecTime: 194.220us - InputRows: 205 - LocalBytesSent: 7.97 KB - LocalSendTime: 50.340us - LocalSentRows: 205 - MemoryUsage: - PeakMemoryUsage: 14.25 KB - MergeBlockTime: 0ns - OpenTime: 57.851us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 205 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.280us - SplitBlockHashComputeTime: 6.501us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: 1 - CloseTime: 291ns - DeserializeAndMergeTime: 0ns - ExecTime: 78.127us - GetResultsTime: 34.873us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.964us - HashTableSize: 205 - InsertKeysToColumnTime: 20.636us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.272us - ProjectionTime: 30.64us - RowsProduced: 205 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s611ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 871.989us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 747.933us - CloseTime: 8.331us - GetBlockTime: 103.744us - OpenTime: 2.830us - PrepareTime: 105.30us - SinkTime: 556.631us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 844.1us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.433ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 823ns - DeserializeAndMergeTime: 223.504us - ExecTime: 574.819us - ExprTime: 0ns - HashTableComputeTime: 257.941us - HashTableEmplaceTime: 168.509us - HashTableInputCount: 733 - InputRows: 733 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 530.405us - OpenTime: 22.963us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.200us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.504us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 60.00 KB - MemoryUsage: - Blocks: 10.25 KB - PeakMemoryUsage: 10.25 KB - OpenTime: 31.403us - ProjectionTime: 0ns - RowsProduced: 733 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s502ms PipelineXTask (index=3):(Active: 610.966us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 536.40us - CloseTime: 5.824us - GetBlockTime: 95.257us - OpenTime: 3.59us - PrepareTime: 61.315us - SinkTime: 389.403us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 596.56us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.198ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 782ns - DeserializeAndMergeTime: 151.295us - ExecTime: 408.342us - ExprTime: 0ns - HashTableComputeTime: 202.998us - HashTableEmplaceTime: 101.135us - HashTableInputCount: 807 - InputRows: 807 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 375.851us - OpenTime: 21.320us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.469us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 108.316us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 41.50 KB - PeakMemoryUsage: 41.50 KB - OpenTime: 16.276us - ProjectionTime: 0ns - RowsProduced: 807 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s499ms PipelineXTask (index=5):(Active: 676.929us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 613.76us - CloseTime: 3.705us - GetBlockTime: 92.599us - OpenTime: 3.55us - PrepareTime: 50.679us - SinkTime: 459.1us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 658.252us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.600ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 366ns - DeserializeAndMergeTime: 182.761us - ExecTime: 481.915us - ExprTime: 0ns - HashTableComputeTime: 238.14us - HashTableEmplaceTime: 148.356us - HashTableInputCount: 832 - InputRows: 832 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 444.607us - OpenTime: 25.484us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.762us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 98.202us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 26.88 KB - PeakMemoryUsage: 26.88 KB - OpenTime: 10.657us - ProjectionTime: 0ns - RowsProduced: 832 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s534ms PipelineXTask (index=7):(Active: 723.973us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 657.392us - CloseTime: 2.751us - GetBlockTime: 84.761us - OpenTime: 3.728us - PrepareTime: 54.669us - SinkTime: 511.982us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 707.994us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.758ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 882ns - DeserializeAndMergeTime: 224.762us - ExecTime: 529.191us - ExprTime: 0ns - HashTableComputeTime: 242.756us - HashTableEmplaceTime: 147.234us - HashTableInputCount: 958 - InputRows: 958 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 491.303us - OpenTime: 19.893us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.519us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.229us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 65.50 KB - MemoryUsage: - Blocks: 22.50 KB - PeakMemoryUsage: 22.50 KB - OpenTime: 20.37us - ProjectionTime: 0ns - RowsProduced: 958 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s540ms PipelineXTask (index=9):(Active: 550.202us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 469.122us - CloseTime: 4.552us - GetBlockTime: 66.603us - OpenTime: 3.380us - PrepareTime: 67.324us - SinkTime: 360.535us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 534.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.407ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 773ns - DeserializeAndMergeTime: 154.899us - ExecTime: 381.544us - ExprTime: 0ns - HashTableComputeTime: 174.733us - HashTableEmplaceTime: 103.569us - HashTableInputCount: 794 - InputRows: 794 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 351.840us - OpenTime: 22.103us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.457us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.618us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 21.50 KB - PeakMemoryUsage: 21.50 KB - OpenTime: 16.997us - ProjectionTime: 0ns - RowsProduced: 794 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s539ms PipelineXTask (index=11):(Active: 518.606us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 435.972us - CloseTime: 2.876us - GetBlockTime: 65.845us - OpenTime: 3.850us - PrepareTime: 69.994us - SinkTime: 323.372us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 503.178us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.245ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 781ns - DeserializeAndMergeTime: 134.997us - ExecTime: 345.875us - ExprTime: 0ns - HashTableComputeTime: 162.564us - HashTableEmplaceTime: 93.517us - HashTableInputCount: 811 - InputRows: 811 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 315.699us - OpenTime: 23.431us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 94.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 26.38 KB - PeakMemoryUsage: 26.38 KB - OpenTime: 32.523us - ProjectionTime: 0ns - RowsProduced: 811 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s533ms PipelineXTask (index=13):(Active: 538.250us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 451.50us - CloseTime: 8.243us - GetBlockTime: 63.804us - OpenTime: 2.840us - PrepareTime: 70.761us - SinkTime: 346.338us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 519.757us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.215ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.250us - DeserializeAndMergeTime: 134.563us - ExecTime: 370.460us - ExprTime: 0ns - HashTableComputeTime: 182.399us - HashTableEmplaceTime: 95.483us - HashTableInputCount: 817 - InputRows: 817 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 336.518us - OpenTime: 25.452us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.242us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.142us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 26.38 KB - PeakMemoryUsage: 26.38 KB - OpenTime: 29.433us - ProjectionTime: 0ns - RowsProduced: 817 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s531ms PipelineXTask (index=15):(Active: 573.10us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 413.934us - CloseTime: 6.248us - GetBlockTime: 51.874us - OpenTime: 2.905us - PrepareTime: 142.912us - SinkTime: 325.170us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 554.812us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.648ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 686ns - DeserializeAndMergeTime: 153.307us - ExecTime: 431.349us - ExprTime: 0ns - HashTableComputeTime: 150.328us - HashTableEmplaceTime: 88.954us - HashTableInputCount: 832 - InputRows: 832 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 317.71us - OpenTime: 107.666us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.97us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.50 KB - MemoryUsage: - Blocks: 26.88 KB - PeakMemoryUsage: 26.88 KB - OpenTime: 18.251us - ProjectionTime: 0ns - RowsProduced: 832 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s531ms PipelineXTask (index=17):(Active: 463.280us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 397.562us - CloseTime: 3.15us - GetBlockTime: 58.537us - OpenTime: 2.427us - PrepareTime: 55.151us - SinkTime: 303.408us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 449.793us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.40ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 608ns - DeserializeAndMergeTime: 125.594us - ExecTime: 319.46us - ExprTime: 0ns - HashTableComputeTime: 151.927us - HashTableEmplaceTime: 92.559us - HashTableInputCount: 776 - InputRows: 776 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 295.464us - OpenTime: 16.769us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.36us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.816us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 60.00 KB - MemoryUsage: - Blocks: 26.38 KB - PeakMemoryUsage: 26.38 KB - OpenTime: 13.705us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s531ms PipelineXTask (index=19):(Active: 645.888us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 549.115us - CloseTime: 10.701us - GetBlockTime: 80.159us - OpenTime: 4.777us - PrepareTime: 73.497us - SinkTime: 393.830us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 617.618us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.642ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.48us - DeserializeAndMergeTime: 169.446us - ExecTime: 416.676us - ExprTime: 0ns - HashTableComputeTime: 177.868us - HashTableEmplaceTime: 114.141us - HashTableInputCount: 816 - InputRows: 816 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 376.523us - OpenTime: 25.462us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 98.659us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 61.00 KB - MemoryUsage: - Blocks: 15.13 KB - PeakMemoryUsage: 15.13 KB - OpenTime: 18.748us - ProjectionTime: 0ns - RowsProduced: 816 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s510ms PipelineXTask (index=21):(Active: 444.653us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 374.481us - CloseTime: 3.148us - GetBlockTime: 63.809us - OpenTime: 2.892us - PrepareTime: 59.239us - SinkTime: 281.119us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 434.36us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.187ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 624ns - DeserializeAndMergeTime: 120.407us - ExecTime: 317.361us - ExprTime: 0ns - HashTableComputeTime: 141.681us - HashTableEmplaceTime: 77.651us - HashTableInputCount: 825 - InputRows: 825 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 273.806us - OpenTime: 36.947us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.158us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.909us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.50 KB - MemoryUsage: - Blocks: 43.00 KB - PeakMemoryUsage: 43.00 KB - OpenTime: 10.797us - ProjectionTime: 0ns - RowsProduced: 825 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s497ms PipelineXTask (index=23):(Active: 498.487us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 414.561us - CloseTime: 4.40us - GetBlockTime: 65.38us - OpenTime: 2.740us - PrepareTime: 71.681us - SinkTime: 310.622us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 482.957us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.509ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 959ns - DeserializeAndMergeTime: 121.121us - ExecTime: 343.243us - ExprTime: 0ns - HashTableComputeTime: 159.919us - HashTableEmplaceTime: 92.942us - HashTableInputCount: 809 - InputRows: 809 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 925.98 KB - SerializeKeyArena: 920.00 KB - MergeTime: 301.102us - OpenTime: 34.931us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 26.38 KB - PeakMemoryUsage: 26.38 KB - OpenTime: 21.678us - ProjectionTime: 0ns - RowsProduced: 809 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s531ms Fragment 87: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 579.558us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 446.195us - CloseTime: 13.449us - GetBlockTime: 157.582us - OpenTime: 6.692us - PrepareTime: 105.798us - SinkTime: 260.857us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 556.858us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.786ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.87us - CompressTime: 0ns - ExecTime: 349.664us - InputRows: 776 - LocalBytesSent: 36.47 KB - LocalSendTime: 76.565us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 61.50 KB - MergeBlockTime: 0ns - OpenTime: 77.449us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 90.938us - SplitBlockHashComputeTime: 20.963us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 202ns - DeserializeAndMergeTime: 0ns - ExecTime: 162.993us - GetResultsTime: 152.181us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.927us - HashTableSize: 776 - InsertKeysToColumnTime: 49.818us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.186us - ProjectionTime: 0ns - RowsProduced: 776 - SerializeDataTime: 87.809us - SerializeResultTime: 155.187us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s355ms PipelineXTask (index=4):(Active: 576.984us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 363.621us - CloseTime: 11.80us - GetBlockTime: 118.471us - OpenTime: 4.151us - PrepareTime: 190.582us - SinkTime: 218.560us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 555.362us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 858.124us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.570us - CompressTime: 0ns - ExecTime: 377.783us - InputRows: 841 - LocalBytesSent: 38.89 KB - LocalSendTime: 42.549us - LocalSentRows: 841 - MemoryUsage: - PeakMemoryUsage: 62.50 KB - MergeBlockTime: 0ns - OpenTime: 150.171us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 841 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.549us - SplitBlockHashComputeTime: 20.953us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 409ns - DeserializeAndMergeTime: 0ns - ExecTime: 126.710us - GetResultsTime: 113.874us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.790us - HashTableSize: 841 - InsertKeysToColumnTime: 37.862us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.531us - ProjectionTime: 0ns - RowsProduced: 841 - SerializeDataTime: 63.755us - SerializeResultTime: 116.466us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s328ms PipelineXTask (index=8):(Active: 598.130us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 470.984us - CloseTime: 14.487us - GetBlockTime: 166.287us - OpenTime: 2.933us - PrepareTime: 104.976us - SinkTime: 286.549us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 577.656us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.520ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.177us - CompressTime: 0ns - ExecTime: 366.498us - InputRows: 809 - LocalBytesSent: 37.57 KB - LocalSendTime: 75.205us - LocalSentRows: 809 - MemoryUsage: - PeakMemoryUsage: 63.50 KB - MergeBlockTime: 0ns - OpenTime: 68.318us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 809 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 92.556us - SplitBlockHashComputeTime: 30.926us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 508ns - DeserializeAndMergeTime: 0ns - ExecTime: 172.870us - GetResultsTime: 158.925us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.33us - HashTableSize: 809 - InsertKeysToColumnTime: 30.525us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.360us - ProjectionTime: 0ns - RowsProduced: 809 - SerializeDataTime: 97.504us - SerializeResultTime: 163.462us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s319ms PipelineXTask (index=12):(Active: 696.705us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 556.869us - CloseTime: 15.725us - GetBlockTime: 222.961us - OpenTime: 2.83us - PrepareTime: 116.108us - SinkTime: 248.125us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 620.571us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.753ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.519us - CompressTime: 0ns - ExecTime: 349.907us - InputRows: 837 - LocalBytesSent: 39.04 KB - LocalSendTime: 77.283us - LocalSentRows: 837 - MemoryUsage: - PeakMemoryUsage: 64.00 KB - MergeBlockTime: 0ns - OpenTime: 89.71us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 837 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.849us - SplitBlockHashComputeTime: 22.674us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 443ns - DeserializeAndMergeTime: 0ns - ExecTime: 228.814us - GetResultsTime: 215.544us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 11.31us - HashTableSize: 837 - InsertKeysToColumnTime: 53.481us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.757us - ProjectionTime: 0ns - RowsProduced: 837 - SerializeDataTime: 139.556us - SerializeResultTime: 219.729us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s307ms PipelineXTask (index=16):(Active: 599.639us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 464.264us - CloseTime: 12.637us - GetBlockTime: 144.501us - OpenTime: 3.702us - PrepareTime: 112.582us - SinkTime: 297.743us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 579.961us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.125ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.120us - CompressTime: 0ns - ExecTime: 387.436us - InputRows: 801 - LocalBytesSent: 37.32 KB - LocalSendTime: 101.245us - LocalSentRows: 801 - MemoryUsage: - PeakMemoryUsage: 63.00 KB - MergeBlockTime: 0ns - OpenTime: 80.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 801 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 105.876us - SplitBlockHashComputeTime: 20.678us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 495ns - DeserializeAndMergeTime: 0ns - ExecTime: 149.136us - GetResultsTime: 137.411us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.24us - HashTableSize: 801 - InsertKeysToColumnTime: 30.36us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.375us - ProjectionTime: 0ns - RowsProduced: 801 - SerializeDataTime: 89.719us - SerializeResultTime: 141.354us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s484ms PipelineXTask (index=20):(Active: 671.563us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 519.419us - CloseTime: 16.599us - GetBlockTime: 165.708us - OpenTime: 4.17us - PrepareTime: 124.868us - SinkTime: 289.390us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 645.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.145ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.625us - CompressTime: 0ns - ExecTime: 379.672us - InputRows: 807 - LocalBytesSent: 37.92 KB - LocalSendTime: 86.421us - LocalSentRows: 807 - MemoryUsage: - PeakMemoryUsage: 64.00 KB - MergeBlockTime: 0ns - OpenTime: 77.550us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 807 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 107.506us - SplitBlockHashComputeTime: 20.103us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 786ns - DeserializeAndMergeTime: 0ns - ExecTime: 172.420us - GetResultsTime: 159.503us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.947us - HashTableSize: 807 - InsertKeysToColumnTime: 42.901us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.151us - ProjectionTime: 0ns - RowsProduced: 807 - SerializeDataTime: 93.886us - SerializeResultTime: 162.927us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s312ms PipelineXTask (index=24):(Active: 566.939us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 402.48us - CloseTime: 15.177us - GetBlockTime: 149.933us - OpenTime: 2.630us - PrepareTime: 141.730us - SinkTime: 230.817us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 544.751us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.805ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.55us - CompressTime: 0ns - ExecTime: 358.113us - InputRows: 770 - LocalBytesSent: 36.02 KB - LocalSendTime: 82.227us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 62.00 KB - MergeBlockTime: 0ns - OpenTime: 114.743us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 63.253us - SplitBlockHashComputeTime: 19.904us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 527ns - DeserializeAndMergeTime: 0ns - ExecTime: 155.921us - GetResultsTime: 144.363us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.484us - HashTableSize: 770 - InsertKeysToColumnTime: 34.906us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.540us - ProjectionTime: 0ns - RowsProduced: 770 - SerializeDataTime: 78.117us - SerializeResultTime: 147.518us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s329ms PipelineXTask (index=28):(Active: 599.529us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 442.881us - CloseTime: 16.742us - GetBlockTime: 200.330us - OpenTime: 3.655us - PrepareTime: 129.411us - SinkTime: 217.704us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 573.417us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.397ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.859us - CompressTime: 0ns - ExecTime: 307.945us - InputRows: 861 - LocalBytesSent: 39.71 KB - LocalSendTime: 68.352us - LocalSentRows: 861 - MemoryUsage: - PeakMemoryUsage: 64.00 KB - MergeBlockTime: 0ns - OpenTime: 77.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 861 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 58.927us - SplitBlockHashComputeTime: 35.590us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 748ns - DeserializeAndMergeTime: 0ns - ExecTime: 206.962us - GetResultsTime: 193.570us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 10.762us - HashTableSize: 861 - InsertKeysToColumnTime: 47.549us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.310us - ProjectionTime: 0ns - RowsProduced: 861 - SerializeDataTime: 121.142us - SerializeResultTime: 196.837us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s327ms PipelineXTask (index=32):(Active: 549.298us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 419.804us - CloseTime: 13.424us - GetBlockTime: 138.174us - OpenTime: 2.10us - PrepareTime: 109.194us - SinkTime: 259.217us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 529.21us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.786ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.735us - CompressTime: 0ns - ExecTime: 351.828us - InputRows: 831 - LocalBytesSent: 38.82 KB - LocalSendTime: 72.115us - LocalSentRows: 831 - MemoryUsage: - PeakMemoryUsage: 64.00 KB - MergeBlockTime: 0ns - OpenTime: 81.476us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 831 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 94.234us - SplitBlockHashComputeTime: 20.664us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 381ns - DeserializeAndMergeTime: 0ns - ExecTime: 145.910us - GetResultsTime: 131.996us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.613us - HashTableSize: 831 - InsertKeysToColumnTime: 39.847us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.292us - ProjectionTime: 0ns - RowsProduced: 831 - SerializeDataTime: 77.874us - SerializeResultTime: 135.542us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s332ms PipelineXTask (index=36):(Active: 625.524us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 509.915us - CloseTime: 14.122us - GetBlockTime: 185.292us - OpenTime: 3.148us - PrepareTime: 93.362us - SinkTime: 228.163us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 537.185us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.436ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.227us - CompressTime: 0ns - ExecTime: 309.722us - InputRows: 825 - LocalBytesSent: 38.46 KB - LocalSendTime: 89.178us - LocalSentRows: 825 - MemoryUsage: - PeakMemoryUsage: 62.00 KB - MergeBlockTime: 0ns - OpenTime: 70.60us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 825 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 62.558us - SplitBlockHashComputeTime: 21.907us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 400ns - DeserializeAndMergeTime: 0ns - ExecTime: 189.547us - GetResultsTime: 178.123us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 14.734us - HashTableSize: 825 - InsertKeysToColumnTime: 37.207us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.480us - ProjectionTime: 0ns - RowsProduced: 825 - SerializeDataTime: 109.84us - SerializeResultTime: 182.130us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s505ms PipelineXTask (index=40):(Active: 577.935us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 410.460us - CloseTime: 9.994us - GetBlockTime: 161.38us - OpenTime: 2.302us - PrepareTime: 148.747us - SinkTime: 230.139us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 559.911us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.556ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.625us - CompressTime: 0ns - ExecTime: 358.915us - InputRows: 845 - LocalBytesSent: 39.15 KB - LocalSendTime: 49.33us - LocalSentRows: 845 - MemoryUsage: - PeakMemoryUsage: 62.00 KB - MergeBlockTime: 0ns - OpenTime: 120.943us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 845 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 94.816us - SplitBlockHashComputeTime: 21.96us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 181ns - DeserializeAndMergeTime: 0ns - ExecTime: 166.365us - GetResultsTime: 156.612us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.652us - HashTableSize: 845 - InsertKeysToColumnTime: 59.66us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.101us - ProjectionTime: 0ns - RowsProduced: 845 - SerializeDataTime: 83.680us - SerializeResultTime: 158.729us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s488ms PipelineXTask (index=44):(Active: 602.183us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 448.743us - CloseTime: 15.293us - GetBlockTime: 158.777us - OpenTime: 2.88us - PrepareTime: 129.93us - SinkTime: 265.241us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 577.886us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 878.919us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.436us - CompressTime: 0ns - ExecTime: 366.531us - InputRows: 807 - LocalBytesSent: 37.59 KB - LocalSendTime: 72.473us - LocalSentRows: 807 - MemoryUsage: - PeakMemoryUsage: 64.00 KB - MergeBlockTime: 0ns - OpenTime: 99.406us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 807 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 88.339us - SplitBlockHashComputeTime: 22.4us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: 1 - CloseTime: 295ns - DeserializeAndMergeTime: 0ns - ExecTime: 168.272us - GetResultsTime: 153.440us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.587us - HashTableSize: 807 - InsertKeysToColumnTime: 54.626us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.818us - ProjectionTime: 0ns - RowsProduced: 807 - SerializeDataTime: 82.701us - SerializeResultTime: 156.584us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s610ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.937ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.777ms - CloseTime: 19.94us - GetBlockTime: 2.168ms - OpenTime: 5.272us - PrepareTime: 129.241us - SinkTime: 562.522us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.906ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 428.304ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 554.736us - CloseTime: 2.518us - DeserializeAndMergeTime: 0ns - ExecTime: 586.344us - ExprTime: 6.248us - HashTableComputeTime: 431.738us - HashTableEmplaceTime: 287.584us - HashTableInputCount: 3.562K (3562) - InputRows: 3.562K (3562) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 22.663us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 13.252us - ExecTime: 1.312ms - InitProbeSideTime: 310.17us - JoinFilterTimer: 239ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 30.313us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.5us - ProbeFindNextTime: 0ns - ProbeRows: 12.816K (12816) - ProbeTime: 1.36ms - ProbeWhenBuildSideOutputTime: 106.819us - ProbeWhenProbeSideOutputTime: 22.356us - ProbeWhenProcessHashTableTime: 208.655us - ProbeWhenSearchHashTableTime: 318.142us - ProjectionTime: 217.604us - RowsProduced: 3.562K (3562) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s178ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 726ns - DeserializeAndMergeTime: 0ns - ExecTime: 897.772us - GetResultsTime: 868.155us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 111.155us - HashTableSize: 12.816K (12816) - InsertKeysToColumnTime: 417.243us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.140us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s767ms PipelineXTask (index=5):(Active: 2.757ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.618ms - CloseTime: 15.296us - GetBlockTime: 1.900ms - OpenTime: 14.545us - PrepareTime: 103.226us - SinkTime: 649.835us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.729ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.359ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 641.104us - CloseTime: 1.563us - DeserializeAndMergeTime: 0ns - ExecTime: 674.675us - ExprTime: 6.274us - HashTableComputeTime: 517.624us - HashTableEmplaceTime: 327.939us - HashTableInputCount: 4.375K (4375) - InputRows: 4.375K (4375) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 24.984us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 10.981us - ExecTime: 1.267ms - InitProbeSideTime: 300.94us - JoinFilterTimer: 278ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 27.10us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.297us - ProbeFindNextTime: 0ns - ProbeRows: 12.634K (12634) - ProbeTime: 986.749us - ProbeWhenBuildSideOutputTime: 94.763us - ProbeWhenProbeSideOutputTime: 17.741us - ProbeWhenProcessHashTableTime: 212.653us - ProbeWhenSearchHashTableTime: 297.846us - ProjectionTime: 230.907us - RowsProduced: 4.375K (4375) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s481ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 556ns - DeserializeAndMergeTime: 0ns - ExecTime: 672.936us - GetResultsTime: 637.333us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 74.776us - HashTableSize: 12.634K (12634) - InsertKeysToColumnTime: 353.571us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.189us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s830ms PipelineXTask (index=9):(Active: 2.703ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.588ms - CloseTime: 19.833us - GetBlockTime: 1.970ms - OpenTime: 6.440us - PrepareTime: 84.206us - SinkTime: 582.834us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.675ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.50ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 571.600us - CloseTime: 1.294us - DeserializeAndMergeTime: 0ns - ExecTime: 613.476us - ExprTime: 6.525us - HashTableComputeTime: 470.118us - HashTableEmplaceTime: 325.888us - HashTableInputCount: 3.753K (3753) - InputRows: 3.753K (3753) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 32.131us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.189us - ExecTime: 1.305ms - InitProbeSideTime: 294.904us - JoinFilterTimer: 534ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.589us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.82us - ProbeFindNextTime: 0ns - ProbeRows: 12.699K (12699) - ProbeTime: 1.15ms - ProbeWhenBuildSideOutputTime: 98.661us - ProbeWhenProbeSideOutputTime: 21.142us - ProbeWhenProcessHashTableTime: 208.626us - ProbeWhenSearchHashTableTime: 320.940us - ProjectionTime: 231.929us - RowsProduced: 3.753K (3753) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s346ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 842ns - DeserializeAndMergeTime: 0ns - ExecTime: 694.743us - GetResultsTime: 665.696us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 83.817us - HashTableSize: 12.699K (12699) - InsertKeysToColumnTime: 346.180us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.750us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s819ms PipelineXTask (index=13):(Active: 2.823ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.684ms - CloseTime: 17.118us - GetBlockTime: 2.24ms - OpenTime: 6.975us - PrepareTime: 107.625us - SinkTime: 623.956us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.795ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 543.599ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 613.397us - CloseTime: 735ns - DeserializeAndMergeTime: 0ns - ExecTime: 641.288us - ExprTime: 5.121us - HashTableComputeTime: 488.791us - HashTableEmplaceTime: 317.852us - HashTableInputCount: 3.946K (3946) - InputRows: 3.946K (3946) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 18.828us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 13.515us - ExecTime: 1.345ms - InitProbeSideTime: 321.617us - JoinFilterTimer: 423ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.554us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.231us - ProbeFindNextTime: 0ns - ProbeRows: 12.761K (12761) - ProbeTime: 1.18ms - ProbeWhenBuildSideOutputTime: 95.100us - ProbeWhenProbeSideOutputTime: 23.330us - ProbeWhenProcessHashTableTime: 226.407us - ProbeWhenSearchHashTableTime: 273.202us - ProjectionTime: 267.123us - RowsProduced: 3.946K (3946) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s64ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 591ns - DeserializeAndMergeTime: 0ns - ExecTime: 708.689us - GetResultsTime: 676.349us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 84.588us - HashTableSize: 12.761K (12761) - InsertKeysToColumnTime: 355.573us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.185us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s709ms PipelineXTask (index=17):(Active: 4.280ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.115ms - CloseTime: 34.896us - GetBlockTime: 3.152ms - OpenTime: 6.662us - PrepareTime: 117.658us - SinkTime: 894.346us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.232ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 311.927ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 879.334us - CloseTime: 1.517us - DeserializeAndMergeTime: 0ns - ExecTime: 915.533us - ExprTime: 7.358us - HashTableComputeTime: 693.741us - HashTableEmplaceTime: 493.466us - HashTableInputCount: 4.243K (4243) - InputRows: 4.243K (4243) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 23.673us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 16.506us - ExecTime: 1.982ms - InitProbeSideTime: 501.110us - JoinFilterTimer: 838ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 14.446us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.765us - ProbeFindNextTime: 0ns - ProbeRows: 12.661K (12661) - ProbeTime: 1.567ms - ProbeWhenBuildSideOutputTime: 157.438us - ProbeWhenProbeSideOutputTime: 20.689us - ProbeWhenProcessHashTableTime: 375.602us - ProbeWhenSearchHashTableTime: 405.922us - ProjectionTime: 358.960us - RowsProduced: 4.243K (4243) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s404ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 13.169us - DeserializeAndMergeTime: 0ns - ExecTime: 1.211ms - GetResultsTime: 1.137ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 120.285us - HashTableSize: 12.661K (12661) - InsertKeysToColumnTime: 582.226us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 23.177us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s766ms PipelineXTask (index=21):(Active: 2.579ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.431ms - CloseTime: 19.158us - GetBlockTime: 1.767ms - OpenTime: 5.637us - PrepareTime: 117.317us - SinkTime: 628.209us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.529ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.35ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 609.382us - CloseTime: 1.258us - DeserializeAndMergeTime: 0ns - ExecTime: 688.278us - ExprTime: 6.181us - HashTableComputeTime: 499.6us - HashTableEmplaceTime: 342.805us - HashTableInputCount: 3.889K (3889) - InputRows: 3.889K (3889) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 59.887us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 14.105us - ExecTime: 1.138ms - InitProbeSideTime: 298.116us - JoinFilterTimer: 202ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.562us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.538us - ProbeFindNextTime: 0ns - ProbeRows: 12.574K (12574) - ProbeTime: 829.856us - ProbeWhenBuildSideOutputTime: 74.880us - ProbeWhenProbeSideOutputTime: 26.906us - ProbeWhenProcessHashTableTime: 188.426us - ProbeWhenSearchHashTableTime: 181.549us - ProjectionTime: 268.159us - RowsProduced: 3.889K (3889) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s489ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 751ns - DeserializeAndMergeTime: 0ns - ExecTime: 660.188us - GetResultsTime: 624.80us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 72.222us - HashTableSize: 12.574K (12574) - InsertKeysToColumnTime: 324.38us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.625us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s819ms PipelineXTask (index=25):(Active: 3.44ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.881ms - CloseTime: 15.763us - GetBlockTime: 2.248ms - OpenTime: 7.434us - PrepareTime: 133.187us - SinkTime: 592.113us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.18ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 529.242ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 580.641us - CloseTime: 1.42us - DeserializeAndMergeTime: 0ns - ExecTime: 609.636us - ExprTime: 5.979us - HashTableComputeTime: 468.557us - HashTableEmplaceTime: 308.157us - HashTableInputCount: 3.732K (3732) - InputRows: 3.732K (3732) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 19.655us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 10.697us - ExecTime: 1.401ms - InitProbeSideTime: 323.216us - JoinFilterTimer: 587ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.555us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.444us - ProbeFindNextTime: 0ns - ProbeRows: 12.788K (12788) - ProbeTime: 1.92ms - ProbeWhenBuildSideOutputTime: 107.136us - ProbeWhenProbeSideOutputTime: 18.900us - ProbeWhenProcessHashTableTime: 259.748us - ProbeWhenSearchHashTableTime: 301.868us - ProjectionTime: 265.313us - RowsProduced: 3.732K (3732) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s99ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 822ns - DeserializeAndMergeTime: 0ns - ExecTime: 890.159us - GetResultsTime: 829.142us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 113.756us - HashTableSize: 12.788K (12788) - InsertKeysToColumnTime: 418.768us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 28.530us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s719ms PipelineXTask (index=29):(Active: 3.103ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.977ms - CloseTime: 10.592us - GetBlockTime: 2.182ms - OpenTime: 4.917us - PrepareTime: 92.202us - SinkTime: 667.106us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.998ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.861ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 644.689us - CloseTime: 1.91us - DeserializeAndMergeTime: 0ns - ExecTime: 691.587us - ExprTime: 6.395us - HashTableComputeTime: 523.761us - HashTableEmplaceTime: 354.25us - HashTableInputCount: 4.609K (4609) - InputRows: 4.609K (4609) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 26.443us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 6.727us - ExecTime: 1.399ms - InitProbeSideTime: 320.855us - JoinFilterTimer: 447ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 14.198us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.144us - ProbeFindNextTime: 0ns - ProbeRows: 12.577K (12577) - ProbeTime: 1.70ms - ProbeWhenBuildSideOutputTime: 93.637us - ProbeWhenProbeSideOutputTime: 12.466us - ProbeWhenProcessHashTableTime: 269.307us - ProbeWhenSearchHashTableTime: 293.565us - ProjectionTime: 288.502us - RowsProduced: 4.609K (4609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s482ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 571ns - DeserializeAndMergeTime: 0ns - ExecTime: 797.372us - GetResultsTime: 761.984us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 94.335us - HashTableSize: 12.577K (12577) - InsertKeysToColumnTime: 354.265us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.923us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s830ms PipelineXTask (index=33):(Active: 13.950ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.825ms - CloseTime: 22.579us - GetBlockTime: 13.137ms - OpenTime: 3.798us - PrepareTime: 94.525us - SinkTime: 657.338us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.895ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.820ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 646.382us - CloseTime: 2.716us - DeserializeAndMergeTime: 0ns - ExecTime: 676.994us - ExprTime: 6.673us - HashTableComputeTime: 499.206us - HashTableEmplaceTime: 351.832us - HashTableInputCount: 3.876K (3876) - InputRows: 3.876K (3876) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 19.450us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.650us - ExecTime: 1.369ms - InitProbeSideTime: 334.672us - JoinFilterTimer: 229ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.394us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.496us - ProbeFindNextTime: 0ns - ProbeRows: 12.843K (12843) - ProbeTime: 1.73ms - ProbeWhenBuildSideOutputTime: 111.866us - ProbeWhenProbeSideOutputTime: 24.879us - ProbeWhenProcessHashTableTime: 216.616us - ProbeWhenSearchHashTableTime: 300.119us - ProjectionTime: 244.511us - RowsProduced: 3.876K (3876) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s347ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 798ns - DeserializeAndMergeTime: 0ns - ExecTime: 11.798ms - GetResultsTime: 11.759ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 81.967us - HashTableSize: 12.843K (12843) - InsertKeysToColumnTime: 374.955us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.241us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s819ms PipelineXTask (index=37):(Active: 2.814ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.652ms - CloseTime: 15.428us - GetBlockTime: 1.933ms - OpenTime: 7.45us - PrepareTime: 117.448us - SinkTime: 663.714us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.786ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 573.593ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 653.172us - CloseTime: 1.328us - DeserializeAndMergeTime: 0ns - ExecTime: 691.265us - ExprTime: 5.92us - HashTableComputeTime: 521.434us - HashTableEmplaceTime: 368.27us - HashTableInputCount: 3.72K (3720) - InputRows: 3.72K (3720) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 28.442us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 10.374us - ExecTime: 1.238ms - InitProbeSideTime: 305.508us - JoinFilterTimer: 257ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 14.854us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.306us - ProbeFindNextTime: 0ns - ProbeRows: 12.728K (12728) - ProbeTime: 961.569us - ProbeWhenBuildSideOutputTime: 116.859us - ProbeWhenProbeSideOutputTime: 26.323us - ProbeWhenProcessHashTableTime: 183.161us - ProbeWhenSearchHashTableTime: 257.394us - ProjectionTime: 237.512us - RowsProduced: 3.72K (3720) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s208ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 794ns - DeserializeAndMergeTime: 0ns - ExecTime: 717.995us - GetResultsTime: 680.786us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 72.801us - HashTableSize: 12.728K (12728) - InsertKeysToColumnTime: 359.491us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.318us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s724ms PipelineXTask (index=41):(Active: 3.911ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.807ms - CloseTime: 17.579us - GetBlockTime: 2.855ms - OpenTime: 3.858us - PrepareTime: 77.243us - SinkTime: 908.12us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 268.198ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 893.242us - CloseTime: 1.257us - DeserializeAndMergeTime: 0ns - ExecTime: 924.771us - ExprTime: 7.898us - HashTableComputeTime: 720.739us - HashTableEmplaceTime: 521.184us - HashTableInputCount: 4.966K (4966) - InputRows: 4.966K (4966) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 19.379us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 12.895us - ExecTime: 1.924ms - InitProbeSideTime: 393.132us - JoinFilterTimer: 1.104us - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 12.295us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.168us - ProbeFindNextTime: 0ns - ProbeRows: 12.775K (12775) - ProbeTime: 1.513ms - ProbeWhenBuildSideOutputTime: 160.475us - ProbeWhenProbeSideOutputTime: 18.623us - ProbeWhenProcessHashTableTime: 363.134us - ProbeWhenSearchHashTableTime: 448.288us - ProjectionTime: 366.143us - RowsProduced: 4.966K (4966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s448ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 850ns - DeserializeAndMergeTime: 0ns - ExecTime: 937.798us - GetResultsTime: 898.452us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 101.919us - HashTableSize: 12.775K (12775) - InsertKeysToColumnTime: 516.913us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.558us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s770ms PipelineXTask (index=45):(Active: 37.843ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 37.718ms - CloseTime: 23.797us - GetBlockTime: 37.44ms - OpenTime: 9.709us - PrepareTime: 84.778us - SinkTime: 630.78us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.810ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 284.332ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 616.849us - CloseTime: 968ns - DeserializeAndMergeTime: 0ns - ExecTime: 656.157us - ExprTime: 6.547us - HashTableComputeTime: 508.225us - HashTableEmplaceTime: 346.706us - HashTableInputCount: 3.587K (3587) - InputRows: 3.587K (3587) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 28.72us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 17.440us - ExecTime: 36.346ms - InitProbeSideTime: 306.938us - JoinFilterTimer: 504ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.764us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.561us - ProbeFindNextTime: 0ns - ProbeRows: 12.563K (12563) - ProbeTime: 953.773us - ProbeWhenBuildSideOutputTime: 96.402us - ProbeWhenProbeSideOutputTime: 24.451us - ProbeWhenProcessHashTableTime: 191.762us - ProbeWhenSearchHashTableTime: 263.936us - ProjectionTime: 35.340ms - RowsProduced: 3.587K (3587) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s605ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 4 - CloseTime: 1.231us - DeserializeAndMergeTime: 0ns - ExecTime: 729.635us - GetResultsTime: 697.750us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 68.937us - HashTableSize: 12.563K (12563) - InsertKeysToColumnTime: 382.474us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.850us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s683ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 777.601us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 671.438us - CloseTime: 19.472us - GetBlockTime: 144.0us - OpenTime: 5.325us - PrepareTime: 75.830us - SinkTime: 485.685us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 748.463us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.802ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.353us - BuildRows: 3.563K (3563) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 257.9us - BuildTableInsertTime: 136.270us - BuildTableTime: 139.832us - CloseTime: 0ns - ExecTime: 505.298us - InputRows: 3.562K (3562) - MemoryUsage: - BuildBlocks: 271.30 KB - BuildKeyArena: 84.00 KB - HashTable: 33.40 KB - PeakMemoryUsage: 384.69 KB - OpenTime: 21.810us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.205us - RuntimeFilterComputeTime: 31.28us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 17.405us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 189.330us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 417.74 KB - MemoryUsage: - Blocks: 267.71 KB - PeakMemoryUsage: 267.71 KB - OpenTime: 31.857us - ProjectionTime: 0ns - RowsProduced: 3.562K (3562) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s228ms PipelineXTask (index=6):(Active: 826.662us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 745.332us - CloseTime: 8.308us - GetBlockTime: 116.522us - OpenTime: 3.164us - PrepareTime: 65.521us - SinkTime: 575.981us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 809.3us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.330ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.422us - BuildRows: 4.376K (4376) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 332.499us - BuildTableInsertTime: 152.488us - BuildTableTime: 155.158us - CloseTime: 0ns - ExecTime: 598.93us - InputRows: 4.375K (4375) - MemoryUsage: - BuildBlocks: 333.23 KB - BuildKeyArena: 100.00 KB - HashTable: 53.37 KB - PeakMemoryUsage: 482.60 KB - OpenTime: 24.701us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.379us - RuntimeFilterComputeTime: 29.412us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 138.565us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 468.18 KB - MemoryUsage: - Blocks: 429.55 KB - PeakMemoryUsage: 429.55 KB - OpenTime: 21.24us - ProjectionTime: 0ns - RowsProduced: 4.375K (4375) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s223ms PipelineXTask (index=10):(Active: 602.626us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 539.46us - CloseTime: 5.388us - GetBlockTime: 105.943us - OpenTime: 1.588us - PrepareTime: 52.399us - SinkTime: 401.516us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 589.181us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.147ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.894us - BuildRows: 3.754K (3754) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 223.320us - BuildTableInsertTime: 109.82us - BuildTableTime: 110.254us - CloseTime: 0ns - ExecTime: 421.553us - InputRows: 3.753K (3753) - MemoryUsage: - BuildBlocks: 285.84 KB - BuildKeyArena: 88.00 KB - HashTable: 50.33 KB - PeakMemoryUsage: 420.17 KB - OpenTime: 21.909us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.474us - RuntimeFilterComputeTime: 24.534us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.776us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 360.65 KB - MemoryUsage: - Blocks: 249.43 KB - PeakMemoryUsage: 249.43 KB - OpenTime: 12.186us - ProjectionTime: 0ns - RowsProduced: 3.753K (3753) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s223ms PipelineXTask (index=14):(Active: 797.940us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 706.291us - CloseTime: 12.317us - GetBlockTime: 114.326us - OpenTime: 11.652us - PrepareTime: 59.789us - SinkTime: 458.657us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 694.530us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.59ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.987us - BuildRows: 3.947K (3947) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 214.170us - BuildTableInsertTime: 160.887us - BuildTableTime: 163.747us - CloseTime: 0ns - ExecTime: 477.534us - InputRows: 3.946K (3946) - MemoryUsage: - BuildBlocks: 300.54 KB - BuildKeyArena: 92.00 KB - HashTable: 51.28 KB - PeakMemoryUsage: 439.80 KB - OpenTime: 20.608us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.104us - RuntimeFilterComputeTime: 26.638us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.242us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.431us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 452.43 KB - MemoryUsage: - Blocks: 433.65 KB - PeakMemoryUsage: 433.65 KB - OpenTime: 19.709us - ProjectionTime: 0ns - RowsProduced: 3.946K (3946) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s172ms PipelineXTask (index=18):(Active: 1.125ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.26ms - CloseTime: 18.917us - GetBlockTime: 127.508us - OpenTime: 3.924us - PrepareTime: 72.187us - SinkTime: 776.659us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.17ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.100ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.577us - BuildRows: 4.244K (4244) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 470.622us - BuildTableInsertTime: 212.251us - BuildTableTime: 215.812us - CloseTime: 0ns - ExecTime: 805.545us - InputRows: 4.243K (4243) - MemoryUsage: - BuildBlocks: 323.18 KB - BuildKeyArena: 96.00 KB - HashTable: 52.73 KB - PeakMemoryUsage: 467.90 KB - OpenTime: 23.734us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.478us - RuntimeFilterComputeTime: 36.755us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 16.556us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 149.387us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 486.68 KB - MemoryUsage: - Blocks: 288.34 KB - PeakMemoryUsage: 288.34 KB - OpenTime: 20.266us - ProjectionTime: 0ns - RowsProduced: 4.243K (4243) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s260ms PipelineXTask (index=22):(Active: 806.878us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 736.378us - CloseTime: 7.692us - GetBlockTime: 143.173us - OpenTime: 2.692us - PrepareTime: 54.657us - SinkTime: 549.534us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 788.573us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.103ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.427us - BuildRows: 3.89K (3890) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 300.693us - BuildTableInsertTime: 152.764us - BuildTableTime: 155.535us - CloseTime: 0ns - ExecTime: 565.886us - InputRows: 3.889K (3889) - MemoryUsage: - BuildBlocks: 296.23 KB - BuildKeyArena: 88.00 KB - HashTable: 51.00 KB - PeakMemoryUsage: 431.22 KB - OpenTime: 18.68us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.843us - RuntimeFilterComputeTime: 31.910us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 162.941us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 384.05 KB - MemoryUsage: - Blocks: 242.62 KB - PeakMemoryUsage: 242.62 KB - OpenTime: 18.885us - ProjectionTime: 0ns - RowsProduced: 3.889K (3889) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s212ms PipelineXTask (index=26):(Active: 851.575us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 764.470us - CloseTime: 4.404us - GetBlockTime: 106.943us - OpenTime: 3.998us - PrepareTime: 72.959us - SinkTime: 597.926us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 828.129us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.830ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.199us - BuildRows: 3.733K (3733) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 360.304us - BuildTableInsertTime: 161.797us - BuildTableTime: 163.678us - CloseTime: 0ns - ExecTime: 619.919us - InputRows: 3.732K (3732) - MemoryUsage: - BuildBlocks: 284.26 KB - BuildKeyArena: 88.00 KB - HashTable: 50.23 KB - PeakMemoryUsage: 418.48 KB - OpenTime: 24.567us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.483us - RuntimeFilterComputeTime: 26.126us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.550us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.588us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 418.27 KB - MemoryUsage: - Blocks: 360.55 KB - PeakMemoryUsage: 360.55 KB - OpenTime: 29.290us - ProjectionTime: 0ns - RowsProduced: 3.732K (3732) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s235ms PipelineXTask (index=30):(Active: 765.678us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 688.28us - CloseTime: 3.598us - GetBlockTime: 116.546us - OpenTime: 2.458us - PrepareTime: 67.392us - SinkTime: 537.852us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 755.34us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.420ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.66us - BuildRows: 4.61K (4610) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 306.529us - BuildTableInsertTime: 169.927us - BuildTableTime: 171.64us - CloseTime: 0ns - ExecTime: 557.573us - InputRows: 4.609K (4609) - MemoryUsage: - BuildBlocks: 351.07 KB - BuildKeyArena: 104.00 KB - HashTable: 54.51 KB - PeakMemoryUsage: 505.58 KB - OpenTime: 21.579us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.135us - RuntimeFilterComputeTime: 27.52us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.774us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.41us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 536.55 KB - MemoryUsage: - Blocks: 470.84 KB - PeakMemoryUsage: 470.84 KB - OpenTime: 13.498us - ProjectionTime: 0ns - RowsProduced: 4.609K (4609) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s223ms PipelineXTask (index=34):(Active: 677.977us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 580.597us - CloseTime: 3.301us - GetBlockTime: 92.844us - OpenTime: 1.670us - PrepareTime: 87.831us - SinkTime: 458.263us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 667.311us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.170ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.824us - BuildRows: 3.877K (3877) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 233.583us - BuildTableInsertTime: 148.784us - BuildTableTime: 149.952us - CloseTime: 0ns - ExecTime: 478.401us - InputRows: 3.876K (3876) - MemoryUsage: - BuildBlocks: 295.23 KB - BuildKeyArena: 88.00 KB - HashTable: 50.93 KB - PeakMemoryUsage: 430.16 KB - OpenTime: 22.677us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.120us - RuntimeFilterComputeTime: 25.876us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.749us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.265us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 412.24 KB - MemoryUsage: - Blocks: 361.52 KB - PeakMemoryUsage: 361.52 KB - OpenTime: 12.249us - ProjectionTime: 0ns - RowsProduced: 3.876K (3876) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s222ms PipelineXTask (index=38):(Active: 760.601us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 687.639us - CloseTime: 8.592us - GetBlockTime: 114.956us - OpenTime: 6.86us - PrepareTime: 53.184us - SinkTime: 530.889us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 743.108us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.817ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.415us - BuildRows: 3.721K (3721) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 295.120us - BuildTableInsertTime: 136.966us - BuildTableTime: 139.250us - CloseTime: 0ns - ExecTime: 546.845us - InputRows: 3.72K (3720) - MemoryUsage: - BuildBlocks: 283.32 KB - BuildKeyArena: 84.00 KB - HashTable: 50.17 KB - PeakMemoryUsage: 413.48 KB - OpenTime: 18.308us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.440us - RuntimeFilterComputeTime: 33.416us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.117us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 124.64us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 370.05 KB - MemoryUsage: - Blocks: 298.52 KB - PeakMemoryUsage: 298.52 KB - OpenTime: 15.213us - ProjectionTime: 0ns - RowsProduced: 3.72K (3720) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s208ms PipelineXTask (index=42):(Active: 1.30ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 948.424us - CloseTime: 15.356us - GetBlockTime: 111.923us - OpenTime: 2.424us - PrepareTime: 59.414us - SinkTime: 801.84us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.6ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.327ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.998us - BuildRows: 4.967K (4967) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 386.890us - BuildTableInsertTime: 174.332us - BuildTableTime: 177.916us - CloseTime: 0ns - ExecTime: 818.22us - InputRows: 4.966K (4966) - MemoryUsage: - BuildBlocks: 378.25 KB - BuildKeyArena: 112.00 KB - HashTable: 56.26 KB - PeakMemoryUsage: 542.50 KB - OpenTime: 19.404us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 158.212us - RuntimeFilterComputeTime: 31.986us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.222us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.692us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 579.30 KB - MemoryUsage: - Blocks: 573.90 KB - PeakMemoryUsage: 573.90 KB - OpenTime: 21.271us - ProjectionTime: 0ns - RowsProduced: 4.966K (4966) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s202ms PipelineXTask (index=46):(Active: 748.965us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 654.763us - CloseTime: 4.423us - GetBlockTime: 97.148us - OpenTime: 2.713us - PrepareTime: 80.725us - SinkTime: 517.888us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 733.165us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.467ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.854us - BuildRows: 3.588K (3588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 291.499us - BuildTableInsertTime: 159.374us - BuildTableTime: 160.442us - CloseTime: 0ns - ExecTime: 531.787us - InputRows: 3.587K (3587) - MemoryUsage: - BuildBlocks: 273.20 KB - BuildKeyArena: 84.00 KB - HashTable: 49.52 KB - PeakMemoryUsage: 402.71 KB - OpenTime: 15.612us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.308us - RuntimeFilterComputeTime: 28.909us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.780us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.125us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 416.90 KB - MemoryUsage: - Blocks: 251.40 KB - PeakMemoryUsage: 251.40 KB - OpenTime: 22.744us - ProjectionTime: 0ns - RowsProduced: 3.587K (3587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s213ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 3.953ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.883ms - CloseTime: 14.256us - GetBlockTime: 80.446us - OpenTime: 3.135us - PrepareTime: 46.926us - SinkTime: 3.752ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.926ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 228.817ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.593us - DeserializeAndMergeTime: 103.700us - ExecTime: 3.764ms - ExprTime: 0ns - HashTableComputeTime: 3.506ms - HashTableEmplaceTime: 2.999ms - HashTableInputCount: 12.816K (12816) - InputRows: 12.816K (12816) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.735ms - OpenTime: 14.956us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.762us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.29 KB - OpenTime: 15.100us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s536ms PipelineXTask (index=7):(Active: 4.708ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.586ms - CloseTime: 22.662us - GetBlockTime: 89.702us - OpenTime: 2.502us - PrepareTime: 91.4us - SinkTime: 4.454ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.677ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 518.692ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.608us - DeserializeAndMergeTime: 121.60us - ExecTime: 4.474ms - ExprTime: 0ns - HashTableComputeTime: 4.189ms - HashTableEmplaceTime: 3.524ms - HashTableInputCount: 12.634K (12634) - InputRows: 12.634K (12634) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.437ms - OpenTime: 19.322us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 16.640us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.227us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.29 KB - OpenTime: 54.299us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s308ms PipelineXTask (index=11):(Active: 5.496ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.424ms - CloseTime: 5.969us - GetBlockTime: 144.808us - OpenTime: 2.89us - PrepareTime: 59.634us - SinkTime: 5.235ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.481ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 523.373ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 1.949us - DeserializeAndMergeTime: 166.524us - ExecTime: 5.270ms - ExprTime: 0ns - HashTableComputeTime: 4.978ms - HashTableEmplaceTime: 4.323ms - HashTableInputCount: 12.699K (12699) - InputRows: 12.699K (12699) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.216ms - OpenTime: 36.136us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 3.467us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.264us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.29 KB - OpenTime: 11.387us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s302ms PipelineXTask (index=15):(Active: 5.402ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.305ms - CloseTime: 25.792us - GetBlockTime: 100.671us - OpenTime: 2.941us - PrepareTime: 63.568us - SinkTime: 5.149ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 418.207ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.250us - DeserializeAndMergeTime: 167.939us - ExecTime: 5.164ms - ExprTime: 0ns - HashTableComputeTime: 4.917ms - HashTableEmplaceTime: 4.324ms - HashTableInputCount: 12.761K (12761) - InputRows: 12.761K (12761) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.132ms - OpenTime: 14.988us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 19.876us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.50 KB - OpenTime: 16.325us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s291ms PipelineXTask (index=19):(Active: 3.666ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.578ms - CloseTime: 10.856us - GetBlockTime: 67.53us - OpenTime: 4.886us - PrepareTime: 42.260us - SinkTime: 3.434ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.619ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.364ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.621us - DeserializeAndMergeTime: 104.95us - ExecTime: 3.448ms - ExprTime: 0ns - HashTableComputeTime: 3.220ms - HashTableEmplaceTime: 2.722ms - HashTableInputCount: 12.661K (12661) - InputRows: 12.661K (12661) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.423ms - OpenTime: 10.907us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.687us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.697us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.29 KB - OpenTime: 19.363us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s532ms PipelineXTask (index=23):(Active: 3.795ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.681ms - CloseTime: 15.441us - GetBlockTime: 88.317us - OpenTime: 5.345us - PrepareTime: 88.242us - SinkTime: 3.491ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.717ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 524.613ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.765us - DeserializeAndMergeTime: 125.850us - ExecTime: 3.544ms - ExprTime: 0ns - HashTableComputeTime: 3.165ms - HashTableEmplaceTime: 2.652ms - HashTableInputCount: 12.574K (12574) - InputRows: 12.574K (12574) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.477ms - OpenTime: 52.139us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.130us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.113us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.29 KB - OpenTime: 14.281us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s291ms PipelineXTask (index=27):(Active: 5.366ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.288ms - CloseTime: 27.183us - GetBlockTime: 122.715us - OpenTime: 3.335us - PrepareTime: 43.245us - SinkTime: 5.126ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 423.553ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.641us - DeserializeAndMergeTime: 130.222us - ExecTime: 5.140ms - ExprTime: 0ns - HashTableComputeTime: 4.905ms - HashTableEmplaceTime: 4.281ms - HashTableInputCount: 12.788K (12788) - InputRows: 12.788K (12788) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.109ms - OpenTime: 12.640us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 15.593us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.282us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.50 KB - OpenTime: 10.110us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s291ms PipelineXTask (index=31):(Active: 15.952ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 15.865ms - CloseTime: 13.618us - GetBlockTime: 93.975us - OpenTime: 2.32us - PrepareTime: 66.139us - SinkTime: 15.730ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 511.63ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.42us - DeserializeAndMergeTime: 99.346us - ExecTime: 15.743ms - ExprTime: 0ns - HashTableComputeTime: 15.552ms - HashTableEmplaceTime: 15.85ms - HashTableInputCount: 12.577K (12577) - InputRows: 12.577K (12577) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 15.717ms - OpenTime: 13.780us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.117us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 128.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.29 KB - OpenTime: 33.560us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s304ms PipelineXTask (index=35):(Active: 3.526ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.427ms - CloseTime: 9.771us - GetBlockTime: 96.504us - OpenTime: 1.866us - PrepareTime: 82.636us - SinkTime: 3.296ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.484ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 527.23ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 6.3us - DeserializeAndMergeTime: 95.513us - ExecTime: 3.335ms - ExprTime: 0ns - HashTableComputeTime: 3.160ms - HashTableEmplaceTime: 2.748ms - HashTableInputCount: 12.843K (12843) - InputRows: 12.843K (12843) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.286ms - OpenTime: 35.370us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 3.313us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.464us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.29 KB - OpenTime: 24.343us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s301ms PipelineXTask (index=39):(Active: 5.46ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.976ms - CloseTime: 22.27us - GetBlockTime: 164.185us - OpenTime: 2.864us - PrepareTime: 40.150us - SinkTime: 4.760ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.6ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 428.809ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 6.580us - DeserializeAndMergeTime: 132.812us - ExecTime: 4.776ms - ExprTime: 0ns - HashTableComputeTime: 4.545ms - HashTableEmplaceTime: 4.52ms - HashTableInputCount: 12.728K (12728) - InputRows: 12.728K (12728) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.746ms - OpenTime: 12.331us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.35us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 182.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 840.00 KB - PeakMemoryUsage: 841.50 KB - OpenTime: 10.175us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s291ms PipelineXTask (index=43):(Active: 3.703ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.620ms - CloseTime: 16.35us - GetBlockTime: 90.784us - OpenTime: 4.75us - PrepareTime: 57.390us - SinkTime: 3.478ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.674ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.171ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 4.377us - DeserializeAndMergeTime: 103.157us - ExecTime: 3.496ms - ExprTime: 0ns - HashTableComputeTime: 3.249ms - HashTableEmplaceTime: 2.768ms - HashTableInputCount: 12.775K (12775) - InputRows: 12.775K (12775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.465ms - OpenTime: 16.449us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.51us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.308us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.29 KB - OpenTime: 24.118us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s546ms PipelineXTask (index=47):(Active: 3.935ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.853ms - CloseTime: 17.202us - GetBlockTime: 86.928us - OpenTime: 2.815us - PrepareTime: 56.284us - SinkTime: 3.716ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.906ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 323.553ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.980us - DeserializeAndMergeTime: 100.918us - ExecTime: 3.743ms - ExprTime: 0ns - HashTableComputeTime: 3.553ms - HashTableEmplaceTime: 3.182ms - HashTableInputCount: 12.563K (12563) - InputRows: 12.563K (12563) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.699ms - OpenTime: 28.915us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.462us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.29 KB - OpenTime: 13.598us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s356ms Fragment 88: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 53.740ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.472ms - CloseTime: 623.583us - GetBlockTime: 47.908ms - OpenTime: 251.584us - PrepareTime: 380.382us - SinkTime: 4.221ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.116ms - WaitBfTime: 1s54ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 562.851ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.78us - CompressTime: 0ns - ExecTime: 4.308ms - InputRows: 30.907K (30907) - LocalBytesSent: 1.27 MB - LocalSendTime: 81.414us - LocalSentRows: 30.907K (30907) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 79.150us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.907K (30907) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.229ms - SplitBlockHashComputeTime: 537.407us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 45.679ms - CloseTime: 421.588us - DeserializeAndMergeTime: 0ns - ExecTime: 48.45ms - ExprTime: 35.803us - GetResultsTime: 1.839ms - HashTableComputeTime: 45.398ms - HashTableEmplaceTime: 43.738ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 190.45us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 729.175us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 35.431us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 530.74us - SerializeKeyTime: 0ns - SerializeResultTime: 1.866ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.745us - BlocksProduced: 19 - CloseTime: 183.754us - ExecTime: 147.208ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 347.945us - ProcessConjunctTime: 59.873us - ProjectionTime: 3.370ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 524.925ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.998ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.302us, 5.816us, 7.363us, 7.458ms, ] - PerScannerRowsRead: [0, 0, 0, 68.65K, ] - PerScannerWaitTime: [130.315ms, 130.394ms, 131.810ms, 132.403ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.127ms - MemoryUsage: - FreeBlocks: 2.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 47.346ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 887ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 59.46ms - ScannerCtxSchedTime: 524.917ms - ScannerFilterTime: 12.800us - ScannerGetBlockTime: 7.436ms - ScannerInitTime: 144.170us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.77us - BlockConditionsFilteredBloomFilterTime: 167ns - BlockConditionsFilteredDictTime: 112ns - BlockConditionsFilteredTime: 8.317us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 172ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 46.837us - BlockInitTime: 177.487us - BlockLoadTime: 54.30ms - BlocksLoad: 262 - CachedPagesNum: 220 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 41.939ms - FirstReadSeekCount: 453 - FirstReadSeekTime: 163.937us - FirstReadTime: 7.142ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.731us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.162ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 487.828us - OutputIndexResultColumnTimer: 15.859us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.645ms - ShortPredEvalTime: 555.773us - TotalPagesNum: 220 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.589us PipelineXTask (index=1):(Active: 72.166ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 70.913ms - CloseTime: 661.521us - GetBlockTime: 62.119ms - OpenTime: 301.460us - PrepareTime: 279.221us - SinkTime: 8.340ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.235ms - WaitBfTime: 762.718ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 341.956ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.553us - CompressTime: 0ns - ExecTime: 8.428ms - InputRows: 30.552K (30552) - LocalBytesSent: 1.25 MB - LocalSendTime: 121.539us - LocalSentRows: 30.552K (30552) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 78.586us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.552K (30552) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.180ms - SplitBlockHashComputeTime: 548.274us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 59.198ms - CloseTime: 471.803us - DeserializeAndMergeTime: 0ns - ExecTime: 62.201ms - ExprTime: 31.834us - GetResultsTime: 2.418ms - HashTableComputeTime: 14.965ms - HashTableEmplaceTime: 12.547ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 292.347us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 845.807us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 27.874us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 724.472us - SerializeKeyTime: 0ns - SerializeResultTime: 2.439ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.376us - BlocksProduced: 19 - CloseTime: 169.918us - ExecTime: 126.611ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 372.549us - ProcessConjunctTime: 70.7us - ProjectionTime: 3.513ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 421.920ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 122.148ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [9.375us, 5.957us, 9.311us, 21.948ms, ] - PerScannerRowsRead: [0, 0, 0, 67.72K, ] - PerScannerWaitTime: [104.711ms, 105.355ms, 105.824ms, 106.028ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 21.570ms - MemoryUsage: - FreeBlocks: 2.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 88.357ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.604us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.131ms - ScannerCtxSchedTime: 421.914ms - ScannerFilterTime: 17.59us - ScannerGetBlockTime: 21.920ms - ScannerInitTime: 180.751us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 830ns - BlockConditionsFilteredBloomFilterTime: 437ns - BlockConditionsFilteredDictTime: 225ns - BlockConditionsFilteredTime: 7.731us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 281ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 36.677us - BlockInitTime: 146.942us - BlockLoadTime: 109.609ms - BlocksLoad: 282 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.789ms - FirstReadSeekCount: 493 - FirstReadSeekTime: 161.174us - FirstReadTime: 7.743ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.220us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.268ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 522.249us - OutputIndexResultColumnTimer: 19.35us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.740ms - ShortPredEvalTime: 304.516us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.231us PipelineXTask (index=2):(Active: 71.32ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.880ms - CloseTime: 613.664us - GetBlockTime: 23.766ms - OpenTime: 217.316us - PrepareTime: 309.775us - SinkTime: 45.783ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.580ms - WaitBfTime: 1s17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 500.194ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.847us - CompressTime: 0ns - ExecTime: 45.875ms - InputRows: 30.201K (30201) - LocalBytesSent: 1.24 MB - LocalSendTime: 88.586us - LocalSentRows: 30.201K (30201) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 82.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.201K (30201) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 31.44ms - SplitBlockHashComputeTime: 14.219ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 21.782ms - CloseTime: 424.804us - DeserializeAndMergeTime: 0ns - ExecTime: 23.881ms - ExprTime: 34.479us - GetResultsTime: 1.581ms - HashTableComputeTime: 21.475ms - HashTableEmplaceTime: 19.765ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 177.183us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 695.674us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 25.693us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 489.397us - SerializeKeyTime: 0ns - SerializeResultTime: 1.601ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.790us - BlocksProduced: 19 - CloseTime: 169.129us - ExecTime: 136.140ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 291.931us - ProcessConjunctTime: 50.661us - ProjectionTime: 3.140ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 465.350ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.218ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.113us, 6.598us, 9.166us, 40.716ms, ] - PerScannerRowsRead: [0, 0, 0, 66.76K, ] - PerScannerWaitTime: [115.404ms, 116.235ms, 116.782ms, 116.928ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 40.381ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 295.442ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.242us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 74.368ms - ScannerCtxSchedTime: 465.344ms - ScannerFilterTime: 13.72us - ScannerGetBlockTime: 40.693ms - ScannerInitTime: 137.52us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 988ns - BlockConditionsFilteredBloomFilterTime: 340ns - BlockConditionsFilteredDictTime: 102ns - BlockConditionsFilteredTime: 8.500us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 181ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 47.692us - BlockInitTime: 174.485us - BlockLoadTime: 328.434ms - BlocksLoad: 288 - CachedPagesNum: 241 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 225.946ms - FirstReadSeekCount: 502 - FirstReadSeekTime: 207.545us - FirstReadTime: 84.442ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.764us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.454ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 869.974us - OutputIndexResultColumnTimer: 24.221us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.860ms - ShortPredEvalTime: 641.539us - TotalPagesNum: 241 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 28.86us PipelineXTask (index=3):(Active: 40.350ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.283ms - CloseTime: 587.95us - GetBlockTime: 35.515ms - OpenTime: 202.652us - PrepareTime: 268.138us - SinkTime: 3.422ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.704ms - WaitBfTime: 1s54ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 613.573ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.735us - CompressTime: 0ns - ExecTime: 3.512ms - InputRows: 30.3K (30300) - LocalBytesSent: 1.24 MB - LocalSendTime: 92.840us - LocalSentRows: 30.3K (30300) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 76.679us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.3K (30300) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.354ms - SplitBlockHashComputeTime: 518.841us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 33.443ms - CloseTime: 395.791us - DeserializeAndMergeTime: 0ns - ExecTime: 35.576ms - ExprTime: 33.925us - GetResultsTime: 1.634ms - HashTableComputeTime: 33.151ms - HashTableEmplaceTime: 31.415ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 184.51us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 666.858us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 24.796us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 551.789us - SerializeKeyTime: 0ns - SerializeResultTime: 1.656ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.2us - BlocksProduced: 19 - CloseTime: 168.437us - ExecTime: 149.372ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 280.999us - ProcessConjunctTime: 32.171us - ProjectionTime: 3.424ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 538.679ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 145.154ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [4.538us, 6.435us, 4.827us, 94.536ms, ] - PerScannerRowsRead: [0, 0, 0, 68.07K, ] - PerScannerWaitTime: [132.771ms, 133.367ms, 135.552ms, 136.987ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.920ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.115ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 974ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.568ms - ScannerCtxSchedTime: 538.672ms - ScannerFilterTime: 14.35us - ScannerGetBlockTime: 94.511ms - ScannerInitTime: 129.105us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.5us - BlockConditionsFilteredBloomFilterTime: 331ns - BlockConditionsFilteredDictTime: 231ns - BlockConditionsFilteredTime: 12.582us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 340ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 42.223ms - BlockInitTime: 42.365ms - BlockLoadTime: 150.768ms - BlocksLoad: 259 - CachedPagesNum: 219 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 93.533ms - FirstReadSeekCount: 429 - FirstReadSeekTime: 156.976us - FirstReadTime: 8.531ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.27us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.925ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 651.142us - OutputIndexResultColumnTimer: 22.552us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.313ms - ShortPredEvalTime: 656.623us - TotalPagesNum: 219 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 32.519us PipelineXTask (index=4):(Active: 873.883us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 327.578us - CloseTime: 116.106us - GetBlockTime: 105.261us - OpenTime: 146.111us - PrepareTime: 273.920us - SinkTime: 50.40us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 745.754us - WaitBfTime: 1s54ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 648.443ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.937us - CompressTime: 0ns - ExecTime: 134.788us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.560us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.391us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 311ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 872ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.503us - ExprTime: 0ns - GetResultsTime: 7.763us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 134ns - HashTableSize: 0 - InsertKeysToColumnTime: 484ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.90us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 874ns - SerializeKeyTime: 0ns - SerializeResultTime: 10.796us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.8us - BlocksProduced: 0 - CloseTime: 103.900us - ExecTime: 150.454ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 225.491us - ProcessConjunctTime: 31.54us - ProjectionTime: 4.327us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 419.739ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 150.29ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.269us, 5.130us, 5.238us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [138.461ms, 138.619ms, 142.659ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 44.556ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 97ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.768ms - ScannerCtxSchedTime: 419.734ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.633us - ScannerInitTime: 79.910us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 572ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.363us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 42.347us - BlockInitTime: 129.534us - BlockLoadTime: 44.83ms - BlocksLoad: 240 - CachedPagesNum: 183 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 34.421ms - FirstReadSeekCount: 474 - FirstReadSeekTime: 159.335us - FirstReadTime: 8.108ms - IOTimer: 0ns - InvertedIndexFilterTime: 818ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 49.973us - OutputIndexResultColumnTimer: 13.522us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 183 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 18.533ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.956ms - CloseTime: 164.708us - GetBlockTime: 119.998us - OpenTime: 121.261us - PrepareTime: 281.457us - SinkTime: 17.680ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 851.51us - WaitBfTime: 1s17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 725.650ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.741us - CompressTime: 0ns - ExecTime: 17.766ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.606ms - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 69.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 433ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.491us - DeserializeAndMergeTime: 0ns - ExecTime: 50.620us - ExprTime: 0ns - GetResultsTime: 11.308us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 109ns - HashTableSize: 0 - InsertKeysToColumnTime: 720ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.202us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.773us - SerializeKeyTime: 0ns - SerializeResultTime: 15.626us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.129us - BlocksProduced: 0 - CloseTime: 139.121us - ExecTime: 145.288ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 188.292us - ProcessConjunctTime: 24.72us - ProjectionTime: 8.50us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 355.143ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 144.852ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.414us, 6.105us, 7.519us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [118.319ms, 118.379ms, 118.444ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 339.39ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 217ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.195ms - ScannerCtxSchedTime: 355.138ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.579us - ScannerInitTime: 67.473us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 787ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.103us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 36.848us - BlockInitTime: 158.68us - BlockLoadTime: 333.540ms - BlocksLoad: 264 - CachedPagesNum: 203 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 232.668ms - FirstReadSeekCount: 522 - FirstReadSeekTime: 224.385us - FirstReadTime: 38.661ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.393us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 101.310us - OutputIndexResultColumnTimer: 27.75us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 203 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.249ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 475.63us - CloseTime: 150.874us - GetBlockTime: 101.889us - OpenTime: 268.993us - PrepareTime: 346.193us - SinkTime: 76.285us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.88ms - WaitBfTime: 954.159ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 450.999ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.369us - CompressTime: 0ns - ExecTime: 196.651us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.851us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 90.487us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 490ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.274us - DeserializeAndMergeTime: 0ns - ExecTime: 57.383us - ExprTime: 0ns - GetResultsTime: 10.796us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 144ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.452us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 37.521us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.220us - SerializeKeyTime: 0ns - SerializeResultTime: 15.432us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.203us - BlocksProduced: 0 - CloseTime: 115.819us - ExecTime: 128.665ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 341.928us - ProcessConjunctTime: 69.754us - ProjectionTime: 4.268us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 337.607ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 128.121ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.914us, 6.750us, 6.108us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [111.616ms, 112.700ms, 113.290ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 110.364ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 192ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.923ms - ScannerCtxSchedTime: 337.601ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.644us - ScannerInitTime: 148.587us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 615ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.811us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 27.288us - BlockInitTime: 110.340us - BlockLoadTime: 109.820ms - BlocksLoad: 255 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 99.497ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 152.362us - FirstReadTime: 8.498ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.387us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 81.225us - OutputIndexResultColumnTimer: 19.145us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 829.752us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 298.197us - CloseTime: 84.835us - GetBlockTime: 76.294us - OpenTime: 135.217us - PrepareTime: 302.409us - SinkTime: 63.818us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 734.561us - WaitBfTime: 954.419ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 449.208ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.116us - CompressTime: 0ns - ExecTime: 148.841us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.685us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 378ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 582ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.303us - ExprTime: 0ns - GetResultsTime: 4.966us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 161ns - HashTableSize: 0 - InsertKeysToColumnTime: 516ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.668us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 505ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.316us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.740us - BlocksProduced: 0 - CloseTime: 73.94us - ExecTime: 130.756ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 200.900us - ProcessConjunctTime: 24.15us - ProjectionTime: 4.134us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 347.674ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 130.411ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.126us, 5.110us, 5.368us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [114.084ms, 115.145ms, 118.445ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 95.98ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 198ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.308ms - ScannerCtxSchedTime: 347.667ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.487us - ScannerInitTime: 74.621us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 623ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.464us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 32.135us - BlockInitTime: 127.933us - BlockLoadTime: 94.608ms - BlocksLoad: 259 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 84.211ms - FirstReadSeekCount: 512 - FirstReadSeekTime: 209.916us - FirstReadTime: 8.548ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.307us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 67.218us - OutputIndexResultColumnTimer: 15.898us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 198 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 782.165us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 263.48us - CloseTime: 114.377us - GetBlockTime: 55.34us - OpenTime: 122.760us - PrepareTime: 263.23us - SinkTime: 50.253us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 658.172us - WaitBfTime: 954.550ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 443.780ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.658us - CompressTime: 0ns - ExecTime: 149.905us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.142us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.371us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 284ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 598ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.937us - ExprTime: 0ns - GetResultsTime: 5.10us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 30ns - HashTableSize: 0 - InsertKeysToColumnTime: 424ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.559us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 898ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.370us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.440us - BlocksProduced: 0 - CloseTime: 94.69us - ExecTime: 136.918ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 206.224us - ProcessConjunctTime: 31.102us - ProjectionTime: 3.763us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 361.529ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 136.570ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [3.721us, 5.320us, 4.729us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [119.571ms, 120.832ms, 121.125ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 117.693ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 169ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.857ms - ScannerCtxSchedTime: 361.525ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.328us - ScannerInitTime: 68.533us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 889ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.291us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 44.992us - BlockInitTime: 156.815us - BlockLoadTime: 117.189ms - BlocksLoad: 267 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 87.589ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 183.253us - FirstReadTime: 27.739ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.338us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 59.721us - OutputIndexResultColumnTimer: 17.225us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 960.85us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 374.411us - CloseTime: 124.77us - GetBlockTime: 120.400us - OpenTime: 133.760us - PrepareTime: 319.781us - SinkTime: 91.965us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 826.742us - WaitBfTime: 954.679ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 512.740ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.762us - CompressTime: 0ns - ExecTime: 201.370us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.764us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 94.865us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 316ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.299us - DeserializeAndMergeTime: 0ns - ExecTime: 61.312us - ExprTime: 0ns - GetResultsTime: 11.815us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 133ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.47us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 40.566us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.247us - SerializeKeyTime: 0ns - SerializeResultTime: 16.25us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.556us - BlocksProduced: 0 - CloseTime: 104.281us - ExecTime: 141.483ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 229.731us - ProcessConjunctTime: 37.187us - ProjectionTime: 5.514us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 376.156ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 141.45ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.611us, 8.757us, 6.019us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [123.429ms, 125.005ms, 127.721ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.886ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 149ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.55ms - ScannerCtxSchedTime: 376.151ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.520us - ScannerInitTime: 68.555us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.13us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.731us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 32.802us - BlockInitTime: 110.180us - BlockLoadTime: 53.421ms - BlocksLoad: 269 - CachedPagesNum: 206 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 42.59ms - FirstReadSeekCount: 532 - FirstReadSeekTime: 160.513us - FirstReadTime: 9.294ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.9us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 87.185us - OutputIndexResultColumnTimer: 20.274us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 206 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 37.219ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 18.516ms - CloseTime: 104.989us - GetBlockTime: 75.601us - OpenTime: 18.337ms - PrepareTime: 250.966us - SinkTime: 71.922us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.60ms - WaitBfTime: 950.812ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 595.251ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.824us - CompressTime: 0ns - ExecTime: 138.761us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.806us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 55.457us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 394ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.180us - DeserializeAndMergeTime: 0ns - ExecTime: 37.512us - ExprTime: 0ns - GetResultsTime: 7.2us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 143ns - HashTableSize: 0 - InsertKeysToColumnTime: 527ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.508us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 850ns - SerializeKeyTime: 0ns - SerializeResultTime: 9.402us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 7.60us - BlocksProduced: 0 - CloseTime: 88.938us - ExecTime: 166.463ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 18.408ms - ProcessConjunctTime: 82.267us - ProjectionTime: 13.263us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 386.379ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.889ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.693us, 7.347us, 5.124us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [128.216ms, 128.532ms, 129.630ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 78.464ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 203ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.573ms - ScannerCtxSchedTime: 386.375ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.328us - ScannerInitTime: 18.205ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 679ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.487us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 26.996us - BlockInitTime: 103.990us - BlockLoadTime: 78.0ms - BlocksLoad: 274 - CachedPagesNum: 213 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 66.871ms - FirstReadSeekCount: 542 - FirstReadSeekTime: 160.376us - FirstReadTime: 9.281ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.108us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 65.501us - OutputIndexResultColumnTimer: 16.926us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 213 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 67.856ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 66.780ms - CloseTime: 632.679us - GetBlockTime: 62.584ms - OpenTime: 152.257us - PrepareTime: 281.495us - SinkTime: 3.942ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.212ms - WaitBfTime: 1s18ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 567.557ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.390us - CompressTime: 0ns - ExecTime: 4.20ms - InputRows: 30.459K (30459) - LocalBytesSent: 1.25 MB - LocalSendTime: 87.482us - LocalSentRows: 30.459K (30459) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 65.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.459K (30459) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.937ms - SplitBlockHashComputeTime: 509.278us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 60.428ms - CloseTime: 450.555us - DeserializeAndMergeTime: 0ns - ExecTime: 62.705ms - ExprTime: 38.308us - GetResultsTime: 1.743ms - HashTableComputeTime: 60.132ms - HashTableEmplaceTime: 58.550ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 204.714us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 671.707us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 19.574us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 542.191us - SerializeKeyTime: 0ns - SerializeResultTime: 1.760ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 52, type = minmax), RuntimeFilter: (id = 53, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.223us - BlocksProduced: 19 - CloseTime: 154.956us - ExecTime: 139.372ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 214.160us - ProcessConjunctTime: 19.568us - ProjectionTime: 3.569ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 357.983ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 135.95ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 52, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 53, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.672us, 10.280us, 26.759ms, ] - PerScannerRowsRead: [0, 0, 67.46K, ] - PerScannerWaitTime: [118.533ms, 119.655ms, 119.794ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 26.352ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 240.741ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.262us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.866ms - ScannerCtxSchedTime: 357.978ms - ScannerFilterTime: 15.503us - ScannerGetBlockTime: 26.715ms - ScannerInitTime: 101.48us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 778ns - BlockConditionsFilteredBloomFilterTime: 169ns - BlockConditionsFilteredDictTime: 124ns - BlockConditionsFilteredTime: 6.829us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 164ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 44.80us - BlockInitTime: 149.441us - BlockLoadTime: 259.798ms - BlocksLoad: 201 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 192.221ms - FirstReadSeekCount: 375 - FirstReadSeekTime: 155.74us - FirstReadTime: 6.506ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.521us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.359ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 205.279us - OutputIndexResultColumnTimer: 14.11us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 812.722us - ShortPredEvalTime: 117.131us - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.976us Fragment 89: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.439ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.279ms - CloseTime: 25.118us - GetBlockTime: 1.868ms - OpenTime: 5.544us - PrepareTime: 122.230us - SinkTime: 1.312ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.401ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.640ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.413us - CompressTime: 0ns - ExecTime: 1.395ms - InputRows: 3.665K (3665) - LocalBytesSent: 279.15 KB - LocalSendTime: 108.889us - LocalSentRows: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 458.06 KB - MergeBlockTime: 0ns - OpenTime: 72.998us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.665K (3665) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 835.0us - SplitBlockHashComputeTime: 115.303us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 8.221us - ExecTime: 1.776ms - InitProbeSideTime: 343.719us - JoinFilterTimer: 1.449us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.58us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.63us - ProbeFindNextTime: 0ns - ProbeRows: 3.665K (3665) - ProbeTime: 1.572ms - ProbeWhenBuildSideOutputTime: 97.789us - ProbeWhenProbeSideOutputTime: 124.418us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 814.265us - ProjectionTime: 143.269us - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 84.719us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 550.11 KB - OpenTime: 746ns - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s14ms PipelineXTask (index=3):(Active: 2.844ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.590ms - CloseTime: 28.599us - GetBlockTime: 1.444ms - OpenTime: 10.950us - PrepareTime: 206.198us - SinkTime: 1.36ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.798ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.875ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.442us - CompressTime: 0ns - ExecTime: 1.193ms - InputRows: 3.497K (3497) - LocalBytesSent: 266.36 KB - LocalSendTime: 119.830us - LocalSentRows: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 338.50 KB - MergeBlockTime: 0ns - OpenTime: 145.483us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.497K (3497) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 616.925us - SplitBlockHashComputeTime: 80.543us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.397us - ExecTime: 1.398ms - InitProbeSideTime: 263.617us - JoinFilterTimer: 1.174us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 31.857us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.8us - ProbeFindNextTime: 0ns - ProbeRows: 3.497K (3497) - ProbeTime: 1.219ms - ProbeWhenBuildSideOutputTime: 91.967us - ProbeWhenProbeSideOutputTime: 107.240us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 607.379us - ProjectionTime: 98.438us - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 53.703us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 210.00 KB - OpenTime: 792ns - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s71ms PipelineXTask (index=6):(Active: 2.741ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.588ms - CloseTime: 28.636us - GetBlockTime: 1.436ms - OpenTime: 7.654us - PrepareTime: 110.980us - SinkTime: 1.72ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.702ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 159.466ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.494us - CompressTime: 0ns - ExecTime: 1.144ms - InputRows: 3.529K (3529) - LocalBytesSent: 268.78 KB - LocalSendTime: 128.943us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 418.25 KB - MergeBlockTime: 0ns - OpenTime: 63.566us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 636.261us - SplitBlockHashComputeTime: 105.17us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.58us - ExecTime: 1.369ms - InitProbeSideTime: 286.426us - JoinFilterTimer: 1.221us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 12.324us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.540us - ProbeFindNextTime: 0ns - ProbeRows: 3.529K (3529) - ProbeTime: 1.209ms - ProbeWhenBuildSideOutputTime: 66.947us - ProbeWhenProbeSideOutputTime: 109.238us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 575.704us - ProjectionTime: 101.571us - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 61.319us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - OpenTime: 2.742us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s147ms PipelineXTask (index=9):(Active: 3.651ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.465ms - CloseTime: 35.550us - GetBlockTime: 1.840ms - OpenTime: 9.574us - PrepareTime: 135.472us - SinkTime: 1.431ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.575ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 114.949ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.458us - CompressTime: 0ns - ExecTime: 1.526ms - InputRows: 3.657K (3657) - LocalBytesSent: 278.53 KB - LocalSendTime: 130.19us - LocalSentRows: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 421.00 KB - MergeBlockTime: 0ns - OpenTime: 88.50us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.657K (3657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 930.41us - SplitBlockHashComputeTime: 106.20us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 19.376us - ExecTime: 1.764ms - InitProbeSideTime: 328.391us - JoinFilterTimer: 1.130us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 18.10us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.10us - ProbeFindNextTime: 0ns - ProbeRows: 3.657K (3657) - ProbeTime: 1.532ms - ProbeWhenBuildSideOutputTime: 93.695us - ProbeWhenProbeSideOutputTime: 138.462us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 727.767us - ProjectionTime: 143.497us - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 51.653us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 105.00 KB - OpenTime: 717ns - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s137ms PipelineXTask (index=12):(Active: 2.458ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.266ms - CloseTime: 16.214us - GetBlockTime: 1.278ms - OpenTime: 6.923us - PrepareTime: 156.77us - SinkTime: 928.933us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.427ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 205.478ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.455us - CompressTime: 0ns - ExecTime: 1.36ms - InputRows: 3.573K (3573) - LocalBytesSent: 272.13 KB - LocalSendTime: 94.421us - LocalSentRows: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 405.00 KB - MergeBlockTime: 0ns - OpenTime: 102.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.573K (3573) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 561.830us - SplitBlockHashComputeTime: 86.21us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 6.827us - ExecTime: 1.245ms - InitProbeSideTime: 267.672us - JoinFilterTimer: 698ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 15.873us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.629us - ProbeFindNextTime: 0ns - ProbeRows: 3.573K (3573) - ProbeTime: 1.102ms - ProbeWhenBuildSideOutputTime: 56.661us - ProbeWhenProbeSideOutputTime: 120.590us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 496.125us - ProjectionTime: 86.442us - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 37.151us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 385.00 KB - OpenTime: 3.223us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s48ms PipelineXTask (index=15):(Active: 2.350ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.187ms - CloseTime: 21.772us - GetBlockTime: 1.212ms - OpenTime: 3.938us - PrepareTime: 132.997us - SinkTime: 919.241us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.321ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 131.593ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.244us - CompressTime: 0ns - ExecTime: 1.5ms - InputRows: 3.523K (3523) - LocalBytesSent: 268.31 KB - LocalSendTime: 125.90us - LocalSentRows: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 341.56 KB - MergeBlockTime: 0ns - OpenTime: 78.12us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.523K (3523) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 509.450us - SplitBlockHashComputeTime: 74.806us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 7.663us - ExecTime: 1.165ms - InitProbeSideTime: 258.195us - JoinFilterTimer: 1.1us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 18.488us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.118us - ProbeFindNextTime: 0ns - ProbeRows: 3.523K (3523) - ProbeTime: 1.38ms - ProbeWhenBuildSideOutputTime: 55.49us - ProbeWhenProbeSideOutputTime: 107.740us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 464.15us - ProjectionTime: 70.300us - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 42.238us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 428.00 KB - OpenTime: 1.42us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s49ms PipelineXTask (index=18):(Active: 2.470ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.336ms - CloseTime: 19.644us - GetBlockTime: 1.394ms - OpenTime: 2.961us - PrepareTime: 107.204us - SinkTime: 884.137us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.943ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.681us - CompressTime: 0ns - ExecTime: 957.973us - InputRows: 3.484K (3484) - LocalBytesSent: 265.39 KB - LocalSendTime: 86.182us - LocalSentRows: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 338.94 KB - MergeBlockTime: 0ns - OpenTime: 66.661us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.484K (3484) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 501.416us - SplitBlockHashComputeTime: 93.854us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 6.646us - ExecTime: 1.332ms - InitProbeSideTime: 290.788us - JoinFilterTimer: 1.143us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 11.370us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.162us - ProbeFindNextTime: 0ns - ProbeRows: 3.484K (3484) - ProbeTime: 1.193ms - ProbeWhenBuildSideOutputTime: 58.625us - ProbeWhenProbeSideOutputTime: 125.202us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 562.395us - ProjectionTime: 88.101us - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 59.905us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - OpenTime: 586ns - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s40ms PipelineXTask (index=21):(Active: 2.299ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.159ms - CloseTime: 15.697us - GetBlockTime: 1.292ms - OpenTime: 3.984us - PrepareTime: 115.282us - SinkTime: 812.89us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.209ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.165ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.684us - CompressTime: 0ns - ExecTime: 885.774us - InputRows: 3.473K (3473) - LocalBytesSent: 264.52 KB - LocalSendTime: 89.426us - LocalSentRows: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 335.88 KB - MergeBlockTime: 0ns - OpenTime: 67.475us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.473K (3473) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 471.169us - SplitBlockHashComputeTime: 77.260us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 4.855us - ExecTime: 1.246ms - InitProbeSideTime: 332.267us - JoinFilterTimer: 1.538us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 14.300us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.98us - ProbeFindNextTime: 0ns - ProbeRows: 3.473K (3473) - ProbeTime: 1.117ms - ProbeWhenBuildSideOutputTime: 61.286us - ProbeWhenProbeSideOutputTime: 119.755us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 483.74us - ProjectionTime: 80.322us - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 44.600us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - OpenTime: 593ns - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s38ms PipelineXTask (index=24):(Active: 4.261ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.92ms - CloseTime: 23.136us - GetBlockTime: 2.251ms - OpenTime: 4.430us - PrepareTime: 136.17us - SinkTime: 1.671ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.219ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.278ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.346us - CompressTime: 0ns - ExecTime: 1.740ms - InputRows: 3.516K (3516) - LocalBytesSent: 267.79 KB - LocalSendTime: 95.492us - LocalSentRows: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 353.94 KB - MergeBlockTime: 0ns - OpenTime: 67.408us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.516K (3516) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.107ms - SplitBlockHashComputeTime: 135.335us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 12.652us - ExecTime: 2.125ms - InitProbeSideTime: 377.860us - JoinFilterTimer: 1.332us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 24.645us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.851us - ProbeFindNextTime: 0ns - ProbeRows: 3.516K (3516) - ProbeTime: 1.855ms - ProbeWhenBuildSideOutputTime: 117.369us - ProbeWhenProbeSideOutputTime: 177.790us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 880.39us - ProjectionTime: 172.693us - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 89.687us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 148.00 KB - OpenTime: 666ns - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s83ms PipelineXTask (index=27):(Active: 7.324ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 7.115ms - CloseTime: 27.54us - GetBlockTime: 4.308ms - OpenTime: 6.790us - PrepareTime: 168.504us - SinkTime: 2.673ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.280ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.994ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.892us - CompressTime: 0ns - ExecTime: 2.753ms - InputRows: 9.221K (9221) - LocalBytesSent: 702.37 KB - LocalSendTime: 106.184us - LocalSentRows: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 1.04 MB - MergeBlockTime: 0ns - OpenTime: 73.765us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.221K (9221) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.883ms - SplitBlockHashComputeTime: 261.627us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.445us - ExecTime: 4.183ms - InitProbeSideTime: 900.555us - JoinFilterTimer: 2.54us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 15.502us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.641us - ProbeFindNextTime: 0ns - ProbeRows: 9.221K (9221) - ProbeTime: 3.834ms - ProbeWhenBuildSideOutputTime: 199.291us - ProbeWhenProbeSideOutputTime: 283.584us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.128ms - ProjectionTime: 250.379us - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 94.669us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 390.00 KB - OpenTime: 810ns - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s84ms PipelineXTask (index=30):(Active: 4.510ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.356ms - CloseTime: 29.45us - GetBlockTime: 2.445ms - OpenTime: 3.700us - PrepareTime: 116.551us - SinkTime: 1.753ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.514ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.296us - CompressTime: 0ns - ExecTime: 1.822ms - InputRows: 3.591K (3591) - LocalBytesSent: 273.51 KB - LocalSendTime: 105.47us - LocalSentRows: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 420.94 KB - MergeBlockTime: 0ns - OpenTime: 60.326us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.591K (3591) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.188ms - SplitBlockHashComputeTime: 130.991us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.796us - ExecTime: 2.315ms - InitProbeSideTime: 460.881us - JoinFilterTimer: 1.537us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 20.281us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.898us - ProbeFindNextTime: 0ns - ProbeRows: 3.591K (3591) - ProbeTime: 1.991ms - ProbeWhenBuildSideOutputTime: 134.688us - ProbeWhenProbeSideOutputTime: 193.730us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 892.389us - ProjectionTime: 223.513us - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 85.487us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 105.00 KB - OpenTime: 598ns - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s84ms PipelineXTask (index=33):(Active: 3.551ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.372ms - CloseTime: 26.200us - GetBlockTime: 1.816ms - OpenTime: 3.945us - PrepareTime: 143.205us - SinkTime: 1.432ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.508ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.518ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.971us - CompressTime: 0ns - ExecTime: 1.506ms - InputRows: 3.529K (3529) - LocalBytesSent: 268.81 KB - LocalSendTime: 134.265us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 404.94 KB - MergeBlockTime: 0ns - OpenTime: 66.627us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 954.795us - SplitBlockHashComputeTime: 88.156us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.18us - ExecTime: 1.719ms - InitProbeSideTime: 382.812us - JoinFilterTimer: 860ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 15.244us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.899us - ProbeFindNextTime: 0ns - ProbeRows: 3.529K (3529) - ProbeTime: 1.515ms - ProbeWhenBuildSideOutputTime: 79.249us - ProbeWhenProbeSideOutputTime: 131.548us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 707.353us - ProjectionTime: 132.582us - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 93.444us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 175.00 KB - OpenTime: 24.261us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s65ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.78ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.978ms - CloseTime: 14.536us - GetBlockTime: 2.763ms - OpenTime: 3.787us - PrepareTime: 59.9us - SinkTime: 118.552us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.275ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 112.232us - InputRows: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.173us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.591ms - CloseTime: 3.491us - ExecTime: 2.617ms - HashTableComputeTime: 2.95ms - HashTableEmplaceTime: 1.708ms - HashTableInputCount: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.657us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 164.767us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 272.00 KB - PeakMemoryUsage: 272.00 KB - OpenTime: 19.859us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s27ms PipelineXTask (index=4):(Active: 2.949ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.839ms - CloseTime: 23.659us - GetBlockTime: 2.601ms - OpenTime: 2.73us - PrepareTime: 78.115us - SinkTime: 167.286us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.910ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.130ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 152.745us - InputRows: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.93us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.422ms - CloseTime: 11.739us - ExecTime: 2.452ms - HashTableComputeTime: 1.966ms - HashTableEmplaceTime: 1.542ms - HashTableInputCount: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.916us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 173.116us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 280.00 KB - PeakMemoryUsage: 280.00 KB - OpenTime: 28.425us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s29ms PipelineXTask (index=7):(Active: 2.552ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.381ms - CloseTime: 15.360us - GetBlockTime: 2.189ms - OpenTime: 2.570us - PrepareTime: 145.6us - SinkTime: 126.824us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.521ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.756ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 122.815us - InputRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.642us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.41ms - CloseTime: 1.120us - ExecTime: 2.59ms - HashTableComputeTime: 1.652ms - HashTableEmplaceTime: 1.289ms - HashTableInputCount: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.550us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.725us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 145.599us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 253.00 KB - PeakMemoryUsage: 253.00 KB - OpenTime: 17.977us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s29ms PipelineXTask (index=10):(Active: 2.611ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.552ms - CloseTime: 13.31us - GetBlockTime: 2.363ms - OpenTime: 2.894us - PrepareTime: 38.887us - SinkTime: 128.451us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.108ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 121.1us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 978ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.208ms - CloseTime: 216ns - ExecTime: 2.224ms - HashTableComputeTime: 1.694ms - HashTableEmplaceTime: 1.297ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.816us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 146.563us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 218.00 KB - PeakMemoryUsage: 218.00 KB - OpenTime: 9.654us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s24ms PipelineXTask (index=13):(Active: 36.388ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.292ms - CloseTime: 21.44us - GetBlockTime: 36.61ms - OpenTime: 2.603us - PrepareTime: 68.433us - SinkTime: 158.466us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.798ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.759ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 160.27us - InputRows: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.664us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.283ms - CloseTime: 4.109us - ExecTime: 2.309ms - HashTableComputeTime: 1.813ms - HashTableEmplaceTime: 1.400ms - HashTableInputCount: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.504us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.836us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.767ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 350.00 KB - PeakMemoryUsage: 350.00 KB - OpenTime: 17.556us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s16ms PipelineXTask (index=16):(Active: 2.399ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.278ms - CloseTime: 25.657us - GetBlockTime: 2.112ms - OpenTime: 1.656us - PrepareTime: 90.502us - SinkTime: 119.201us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.366ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.438ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 118.181us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.160us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 1.957ms - CloseTime: 14.905us - ExecTime: 1.991ms - HashTableComputeTime: 1.507ms - HashTableEmplaceTime: 1.163ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.949us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.34us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 451.00 KB - MemoryUsage: - Blocks: 346.00 KB - PeakMemoryUsage: 346.00 KB - OpenTime: 13.752us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s16ms PipelineXTask (index=19):(Active: 2.291ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.185ms - CloseTime: 8.489us - GetBlockTime: 2.82ms - OpenTime: 1.447us - PrepareTime: 91.567us - SinkTime: 61.754us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.275ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.531ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 58.694us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 987ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 1.933ms - CloseTime: 575ns - ExecTime: 1.949ms - HashTableComputeTime: 1.477ms - HashTableEmplaceTime: 1.85ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.241us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.610us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 154.419us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 358.00 KB - PeakMemoryUsage: 358.00 KB - OpenTime: 23.348us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s17ms PipelineXTask (index=22):(Active: 30.494ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.410ms - CloseTime: 17.166us - GetBlockTime: 30.295ms - OpenTime: 1.635us - PrepareTime: 53.523us - SinkTime: 75.741us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.766ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.695ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 71.394us - InputRows: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.187us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 30.189ms - CloseTime: 259ns - ExecTime: 30.205ms - HashTableComputeTime: 29.700ms - HashTableEmplaceTime: 29.317ms - HashTableInputCount: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.771us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.188us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.827us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 358.00 KB - PeakMemoryUsage: 358.00 KB - OpenTime: 12.637us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s16ms PipelineXTask (index=25):(Active: 2.489ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.413ms - CloseTime: 20.409us - GetBlockTime: 2.281ms - OpenTime: 2.630us - PrepareTime: 47.318us - SinkTime: 81.540us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.456ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.400ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 76.913us - InputRows: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.26us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.162ms - CloseTime: 9.553us - ExecTime: 2.186ms - HashTableComputeTime: 1.774ms - HashTableEmplaceTime: 1.393ms - HashTableInputCount: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.695us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 117.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 280.00 KB - PeakMemoryUsage: 280.00 KB - OpenTime: 17.492us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s23ms PipelineXTask (index=28):(Active: 2.370ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.294ms - CloseTime: 11.493us - GetBlockTime: 2.149ms - OpenTime: 4.507us - PrepareTime: 54.716us - SinkTime: 79.244us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.347ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.299ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 75.420us - InputRows: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 986ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.27ms - CloseTime: 2.192us - ExecTime: 2.48ms - HashTableComputeTime: 1.624ms - HashTableEmplaceTime: 1.244ms - HashTableInputCount: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.328us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.689us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 117.893us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 253.00 KB - PeakMemoryUsage: 253.00 KB - OpenTime: 19.194us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s28ms PipelineXTask (index=31):(Active: 2.738ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.619ms - CloseTime: 18.66us - GetBlockTime: 2.436ms - OpenTime: 4.393us - PrepareTime: 89.770us - SinkTime: 116.230us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.705ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.769ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 110.428us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.77us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.286ms - CloseTime: 13.451us - ExecTime: 2.319ms - HashTableComputeTime: 1.802ms - HashTableEmplaceTime: 1.391ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.196us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.169us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 148.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 210.00 KB - PeakMemoryUsage: 210.00 KB - OpenTime: 23.541us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s39ms PipelineXTask (index=34):(Active: 2.456ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.304ms - CloseTime: 21.439us - GetBlockTime: 2.190ms - OpenTime: 2.211us - PrepareTime: 123.40us - SinkTime: 54.192us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.422ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.607ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 49.730us - InputRows: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 925ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.73ms - CloseTime: 13.908us - ExecTime: 2.107ms - HashTableComputeTime: 1.596ms - HashTableEmplaceTime: 1.209ms - HashTableInputCount: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.929us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 114.220us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 218.00 KB - PeakMemoryUsage: 218.00 KB - OpenTime: 16.681us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s23ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 11.831ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.759ms - CloseTime: 14.306us - GetBlockTime: 2.702ms - OpenTime: 2.957us - PrepareTime: 48.527us - SinkTime: 8.721ms - GetBlockCounter: 493 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 388.984ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 71.790us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.340ms - BuildTableInsertTime: 3.912ms - BuildTableTime: 4.23ms - CloseTime: 0ns - ExecTime: 8.687ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 8.517us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=149): - BlocksProduced: 492 - BytesReceived: 0.00 - CloseTime: 9.770us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.662ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.81 MB - MemoryUsage: - Blocks: 5.08 MB - PeakMemoryUsage: 9.35 MB - OpenTime: 17.231us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s957ms PipelineXTask (index=5):(Active: 140.723us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.436us - CloseTime: 14.356us - GetBlockTime: 0ns - OpenTime: 3.78us - PrepareTime: 74.3us - SinkTime: 22.699us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.198us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 157.261ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.429us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.292us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s350ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.607us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.774us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.281us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 124.15us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.147us - CloseTime: 14.873us - GetBlockTime: 0ns - OpenTime: 5.64us - PrepareTime: 52.574us - SinkTime: 25.0us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.817us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 229.752ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.67us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.462us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s336ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.519us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.988us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.693us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 105.225us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 44.6us - CloseTime: 12.460us - GetBlockTime: 0ns - OpenTime: 3.598us - PrepareTime: 42.17us - SinkTime: 26.581us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.169us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.143ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.603us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.565us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.534us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.904us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.656us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 77.65us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.235us - CloseTime: 8.772us - GetBlockTime: 0ns - OpenTime: 1.611us - PrepareTime: 46.390us - SinkTime: 7.958us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.753us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.242ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.202us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.439us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.80us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.5us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 84.149us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.508us - CloseTime: 4.696us - GetBlockTime: 0ns - OpenTime: 11.625us - PrepareTime: 41.323us - SinkTime: 4.586us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.128us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.284ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.396us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.106us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.715us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.508us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.67us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 66.595us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.835us - CloseTime: 3.896us - GetBlockTime: 0ns - OpenTime: 1.831us - PrepareTime: 43.972us - SinkTime: 4.580us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 59.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.322ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.402us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.56us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.696us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.895us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.519us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 153.657us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.56us - CloseTime: 4.165us - GetBlockTime: 0ns - OpenTime: 1.274us - PrepareTime: 130.796us - SinkTime: 5.56us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 145.264us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.356ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 87.918us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 83.108us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.714us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.562us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.227us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 112.155us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.186us - CloseTime: 14.112us - GetBlockTime: 0ns - OpenTime: 2.412us - PrepareTime: 39.998us - SinkTime: 30.881us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.277us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.97ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.259us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.966us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s347ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.958us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.842us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.210us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 112.205us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 42.140us - CloseTime: 19.720us - GetBlockTime: 0ns - OpenTime: 1.851us - PrepareTime: 44.239us - SinkTime: 28.150us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.897us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.541ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.470us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.892us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s344ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.934us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.423us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.774us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 81.932us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.441us - CloseTime: 14.763us - GetBlockTime: 0ns - OpenTime: 3.9us - PrepareTime: 38.418us - SinkTime: 5.722us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 229.777ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.239us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s336ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.192us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.788us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 67.42us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 15.994us - CloseTime: 4.634us - GetBlockTime: 0ns - OpenTime: 2.20us - PrepareTime: 41.74us - SinkTime: 5.436us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 58.567us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.234ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963175 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.726us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.515us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s346ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.251us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.546us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 90: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 84.240ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 83.927ms - CloseTime: 38.674us - GetBlockTime: 76.327ms - OpenTime: 6.853us - PrepareTime: 256.867us - SinkTime: 6.121ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.461ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 637.711ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.945us - CompressTime: 0ns - ExecTime: 6.70ms - InputRows: 3.591K (3591) - LocalBytesSent: 255.97 KB - LocalSendTime: 59.675us - LocalSentRows: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 87.720us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.591K (3591) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.158ms - SplitBlockHashComputeTime: 1.318ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 4.133ms - CloseTime: 2.901us - ExecTime: 4.448ms - HashTableComputeTime: 3.19ms - HashTableEmplaceTime: 2.403ms - HashTableInputCount: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.874us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 13.684us - ExecTime: 56.911ms - InitProbeSideTime: 22.128ms - JoinFilterTimer: 42.464us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 23.726us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 94.491us - ProbeFindNextTime: 0ns - ProbeRows: 3.296777M (3296777) - ProbeTime: 51.778ms - ProbeWhenBuildSideOutputTime: 2.241ms - ProbeWhenProbeSideOutputTime: 363.8us - ProbeWhenProcessHashTableTime: 7.893us - ProbeWhenSearchHashTableTime: 22.419ms - ProjectionTime: 3.236ms - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s337ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 8.133us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.708ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.12 MB - MemoryUsage: - Blocks: 19.41 MB - PeakMemoryUsage: 19.41 MB - OpenTime: 23.905us - ProjectionTime: 0ns - RowsProduced: 3.296777M (3296777) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 996.45ms PipelineXTask (index=2):(Active: 117.731ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 117.489ms - CloseTime: 65.80us - GetBlockTime: 84.727ms - OpenTime: 4.918us - PrepareTime: 162.691us - SinkTime: 8.957ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.498ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 604.890ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.776us - CompressTime: 0ns - ExecTime: 8.885ms - InputRows: 9.221K (9221) - LocalBytesSent: 657.32 KB - LocalSendTime: 118.540us - LocalSentRows: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 0ns - OpenTime: 72.142us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.221K (9221) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.287ms - SplitBlockHashComputeTime: 1.787ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 16.213ms - CloseTime: 10.311us - ExecTime: 16.558ms - HashTableComputeTime: 14.220ms - HashTableEmplaceTime: 12.429ms - HashTableInputCount: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.987us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 8.170us - ExecTime: 57.13ms - InitProbeSideTime: 22.750ms - JoinFilterTimer: 46.665us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 11.957us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.516us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 50.945ms - ProbeWhenBuildSideOutputTime: 3.43ms - ProbeWhenProbeSideOutputTime: 400.495us - ProbeWhenProcessHashTableTime: 282.820us - ProbeWhenSearchHashTableTime: 19.139ms - ProjectionTime: 4.27ms - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s317ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 10.36us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 9.818ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.06 MB - MemoryUsage: - Blocks: 19.56 MB - PeakMemoryUsage: 19.56 MB - OpenTime: 13.258us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s12ms PipelineXTask (index=4):(Active: 111.779ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 111.588ms - CloseTime: 25.917us - GetBlockTime: 104.301ms - OpenTime: 4.678us - PrepareTime: 151.69us - SinkTime: 5.781ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.118ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 589.971ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.781us - CompressTime: 0ns - ExecTime: 5.728ms - InputRows: 3.523K (3523) - LocalBytesSent: 251.10 KB - LocalSendTime: 62.602us - LocalSentRows: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 74.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.523K (3523) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.769ms - SplitBlockHashComputeTime: 1.333ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.582ms - CloseTime: 2.407us - ExecTime: 3.872ms - HashTableComputeTime: 2.566ms - HashTableEmplaceTime: 1.891ms - HashTableInputCount: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.873us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 719 - BuildOutputBlock: 0ns - CloseTime: 5.589us - ExecTime: 75.0ms - InitProbeSideTime: 19.854ms - JoinFilterTimer: 47.428us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 13.702us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 94.999us - ProbeFindNextTime: 0ns - ProbeRows: 3.295435M (3295435) - ProbeTime: 67.224ms - ProbeWhenBuildSideOutputTime: 2.381ms - ProbeWhenProbeSideOutputTime: 345.171us - ProbeWhenProcessHashTableTime: 6.997us - ProbeWhenSearchHashTableTime: 39.840ms - ProjectionTime: 5.887ms - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s337ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 4.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.261ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.05 MB - MemoryUsage: - Blocks: 19.57 MB - PeakMemoryUsage: 19.57 MB - OpenTime: 16.256us - ProjectionTime: 0ns - RowsProduced: 3.295435M (3295435) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 993.859ms PipelineXTask (index=6):(Active: 148.268ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 147.987ms - CloseTime: 36.58us - GetBlockTime: 139.663ms - OpenTime: 6.643us - PrepareTime: 230.689us - SinkTime: 6.442ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.173ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 458.972ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.246us - CompressTime: 0ns - ExecTime: 6.400ms - InputRows: 3.657K (3657) - LocalBytesSent: 260.66 KB - LocalSendTime: 73.795us - LocalSentRows: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 105.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.657K (3657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.18ms - SplitBlockHashComputeTime: 1.612ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 4.674ms - CloseTime: 5.305us - ExecTime: 5.58ms - HashTableComputeTime: 3.435ms - HashTableEmplaceTime: 2.676ms - HashTableInputCount: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.886us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 738 - BuildOutputBlock: 0ns - CloseTime: 11.279us - ExecTime: 72.17ms - InitProbeSideTime: 21.648ms - JoinFilterTimer: 43.770us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 12.996us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 106.690us - ProbeFindNextTime: 0ns - ProbeRows: 3.296125M (3296125) - ProbeTime: 65.695ms - ProbeWhenBuildSideOutputTime: 2.725ms - ProbeWhenProbeSideOutputTime: 404.940us - ProbeWhenProcessHashTableTime: 7.456us - ProbeWhenSearchHashTableTime: 35.504ms - ProjectionTime: 4.203ms - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s235ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 5.128us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 61.244ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.16 MB - MemoryUsage: - Blocks: 18.95 MB - PeakMemoryUsage: 18.95 MB - OpenTime: 18.73us - ProjectionTime: 0ns - RowsProduced: 3.296125M (3296125) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s187ms PipelineXTask (index=8):(Active: 106.626ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 106.419ms - CloseTime: 34.143us - GetBlockTime: 85.286ms - OpenTime: 4.840us - PrepareTime: 161.879us - SinkTime: 19.304ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.544ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 508.863ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.400us - CompressTime: 0ns - ExecTime: 19.185ms - InputRows: 3.665K (3665) - LocalBytesSent: 261.25 KB - LocalSendTime: 89.769us - LocalSentRows: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 75.556us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.665K (3665) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.960ms - SplitBlockHashComputeTime: 1.619ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 4.402ms - CloseTime: 2.703us - ExecTime: 4.773ms - HashTableComputeTime: 3.300ms - HashTableEmplaceTime: 2.574ms - HashTableInputCount: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.691us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 730 - BuildOutputBlock: 0ns - CloseTime: 7.993us - ExecTime: 60.774ms - InitProbeSideTime: 22.520ms - JoinFilterTimer: 52.874us - MemoryUsage: - PeakMemoryUsage: 69.11 KB - ProbeKeyArena: 69.11 KB - OpenTime: 9.720us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 97.637us - ProbeFindNextTime: 0ns - ProbeRows: 3.295157M (3295157) - ProbeTime: 54.523ms - ProbeWhenBuildSideOutputTime: 2.889ms - ProbeWhenProbeSideOutputTime: 463.462us - ProbeWhenProcessHashTableTime: 10.927us - ProbeWhenSearchHashTableTime: 22.908ms - ProjectionTime: 4.53ms - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s236ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 6.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.374ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.64 MB - MemoryUsage: - Blocks: 19.38 MB - PeakMemoryUsage: 19.38 MB - OpenTime: 14.74us - ProjectionTime: 0ns - RowsProduced: 3.295157M (3295157) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s174ms PipelineXTask (index=10):(Active: 91.965ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 91.692ms - CloseTime: 45.758us - GetBlockTime: 83.686ms - OpenTime: 5.464us - PrepareTime: 213.902us - SinkTime: 6.348ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.310ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 556.739ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.849us - CompressTime: 0ns - ExecTime: 6.301ms - InputRows: 3.497K (3497) - LocalBytesSent: 249.27 KB - LocalSendTime: 112.620us - LocalSentRows: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 412.00 KB - MergeBlockTime: 0ns - OpenTime: 92.704us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.497K (3497) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.36ms - SplitBlockHashComputeTime: 1.507ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.650ms - CloseTime: 7.258us - ExecTime: 4.16ms - HashTableComputeTime: 2.568ms - HashTableEmplaceTime: 1.896ms - HashTableInputCount: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.339us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 723 - BuildOutputBlock: 0ns - CloseTime: 9.523us - ExecTime: 73.145ms - InitProbeSideTime: 20.274ms - JoinFilterTimer: 42.149us - MemoryUsage: - PeakMemoryUsage: 69.08 KB - ProbeKeyArena: 69.08 KB - OpenTime: 10.77us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 87.521us - ProbeFindNextTime: 0ns - ProbeRows: 3.295289M (3295289) - ProbeTime: 67.609ms - ProbeWhenBuildSideOutputTime: 2.718ms - ProbeWhenProbeSideOutputTime: 407.49us - ProbeWhenProcessHashTableTime: 12.204us - ProbeWhenSearchHashTableTime: 38.968ms - ProjectionTime: 3.634ms - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s236ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 9.746us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.351ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.23 MB - MemoryUsage: - Blocks: 19.36 MB - PeakMemoryUsage: 19.36 MB - OpenTime: 27.19us - ProjectionTime: 0ns - RowsProduced: 3.295289M (3295289) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s141ms PipelineXTask (index=12):(Active: 102.283ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 101.977ms - CloseTime: 32.510us - GetBlockTime: 93.895ms - OpenTime: 12.560us - PrepareTime: 251.792us - SinkTime: 6.336ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.917ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 536.631ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.562us - CompressTime: 0ns - ExecTime: 6.254ms - InputRows: 3.473K (3473) - LocalBytesSent: 247.56 KB - LocalSendTime: 61.717us - LocalSentRows: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 73.698us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.473K (3473) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.128ms - SplitBlockHashComputeTime: 1.568ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.680ms - CloseTime: 9.540us - ExecTime: 4.84ms - HashTableComputeTime: 2.532ms - HashTableEmplaceTime: 1.870ms - HashTableInputCount: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.108us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 727 - BuildOutputBlock: 0ns - CloseTime: 5.407us - ExecTime: 83.248ms - InitProbeSideTime: 30.467ms - JoinFilterTimer: 46.764us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 29.145us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.453us - ProbeFindNextTime: 0ns - ProbeRows: 3.295927M (3295927) - ProbeTime: 69.494ms - ProbeWhenBuildSideOutputTime: 2.610ms - ProbeWhenProbeSideOutputTime: 403.843us - ProbeWhenProcessHashTableTime: 7.697us - ProbeWhenSearchHashTableTime: 30.746ms - ProjectionTime: 11.725ms - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s186ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 3.832us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.227ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.83 MB - MemoryUsage: - Blocks: 19.45 MB - PeakMemoryUsage: 19.45 MB - OpenTime: 16.308us - ProjectionTime: 0ns - RowsProduced: 3.295927M (3295927) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s220ms PipelineXTask (index=14):(Active: 89.214ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 89.20ms - CloseTime: 31.309us - GetBlockTime: 80.436ms - OpenTime: 4.468us - PrepareTime: 151.35us - SinkTime: 6.634ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.905ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 560.46ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.219us - CompressTime: 0ns - ExecTime: 6.536ms - InputRows: 3.529K (3529) - LocalBytesSent: 251.54 KB - LocalSendTime: 77.217us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 62.887us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.307ms - SplitBlockHashComputeTime: 1.565ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.842ms - CloseTime: 3.244us - ExecTime: 4.245ms - HashTableComputeTime: 2.686ms - HashTableEmplaceTime: 1.986ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.928us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 729 - BuildOutputBlock: 0ns - CloseTime: 6.888us - ExecTime: 69.127ms - InitProbeSideTime: 21.41ms - JoinFilterTimer: 45.967us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 24.935us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.384us - ProbeFindNextTime: 0ns - ProbeRows: 3.29507M (3295070) - ProbeTime: 62.969ms - ProbeWhenBuildSideOutputTime: 2.753ms - ProbeWhenProbeSideOutputTime: 424.540us - ProbeWhenProcessHashTableTime: 11.365us - ProbeWhenSearchHashTableTime: 33.123ms - ProjectionTime: 4.74ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s270ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 4.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.689ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.48 MB - MemoryUsage: - Blocks: 18.92 MB - PeakMemoryUsage: 18.92 MB - OpenTime: 15.505us - ProjectionTime: 0ns - RowsProduced: 3.29507M (3295070) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s107ms PipelineXTask (index=16):(Active: 102.439ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 102.148ms - CloseTime: 32.336us - GetBlockTime: 78.25ms - OpenTime: 4.685us - PrepareTime: 243.323us - SinkTime: 22.209ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.135ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 604.972ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.560us - CompressTime: 0ns - ExecTime: 22.135ms - InputRows: 3.484K (3484) - LocalBytesSent: 248.36 KB - LocalSendTime: 99.78us - LocalSentRows: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 408.00 KB - MergeBlockTime: 0ns - OpenTime: 90.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.484K (3484) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 18.894ms - SplitBlockHashComputeTime: 1.554ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.560ms - CloseTime: 1.712us - ExecTime: 3.887ms - HashTableComputeTime: 2.539ms - HashTableEmplaceTime: 1.867ms - HashTableInputCount: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.690us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 724 - BuildOutputBlock: 0ns - CloseTime: 6.59us - ExecTime: 67.513ms - InitProbeSideTime: 20.917ms - JoinFilterTimer: 47.881us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 10.723us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.918us - ProbeFindNextTime: 0ns - ProbeRows: 3.294982M (3294982) - ProbeTime: 61.639ms - ProbeWhenBuildSideOutputTime: 2.790ms - ProbeWhenProbeSideOutputTime: 413.514us - ProbeWhenProcessHashTableTime: 9.482us - ProbeWhenSearchHashTableTime: 31.868ms - ProjectionTime: 3.885ms - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s236ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 10.480us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.266ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.04 MB - MemoryUsage: - Blocks: 19.07 MB - PeakMemoryUsage: 19.07 MB - OpenTime: 16.8us - ProjectionTime: 0ns - RowsProduced: 3.294982M (3294982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s101ms PipelineXTask (index=18):(Active: 124.673ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 124.391ms - CloseTime: 31.127us - GetBlockTime: 116.990ms - OpenTime: 7.717us - PrepareTime: 228.365us - SinkTime: 5.856ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.277ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 695.782ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.823us - CompressTime: 0ns - ExecTime: 5.779ms - InputRows: 3.573K (3573) - LocalBytesSent: 254.68 KB - LocalSendTime: 72.94us - LocalSentRows: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 56.347us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.573K (3573) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.980ms - SplitBlockHashComputeTime: 1.397ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.343ms - CloseTime: 3.775us - ExecTime: 3.670ms - HashTableComputeTime: 2.314ms - HashTableEmplaceTime: 1.736ms - HashTableInputCount: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.720us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 5.211us - ExecTime: 107.247ms - InitProbeSideTime: 19.494ms - JoinFilterTimer: 49.126us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 17.664us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 100.466us - ProbeFindNextTime: 0ns - ProbeRows: 3.296253M (3296253) - ProbeTime: 101.834ms - ProbeWhenBuildSideOutputTime: 2.401ms - ProbeWhenProbeSideOutputTime: 355.233us - ProbeWhenProcessHashTableTime: 7.435us - ProbeWhenSearchHashTableTime: 74.912ms - ProjectionTime: 3.542ms - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s22ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 5.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.958ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.64 MB - MemoryUsage: - Blocks: 19.03 MB - PeakMemoryUsage: 19.03 MB - OpenTime: 16.790us - ProjectionTime: 0ns - RowsProduced: 3.296253M (3296253) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s188ms PipelineXTask (index=20):(Active: 154.800ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 154.527ms - CloseTime: 56.156us - GetBlockTime: 145.927ms - OpenTime: 14.191us - PrepareTime: 192.557us - SinkTime: 6.901ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 528.42ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.202us - CompressTime: 0ns - ExecTime: 6.833ms - InputRows: 3.529K (3529) - LocalBytesSent: 251.57 KB - LocalSendTime: 112.19us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 77.424us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.673ms - SplitBlockHashComputeTime: 1.521ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.806ms - CloseTime: 4.258us - ExecTime: 4.158ms - HashTableComputeTime: 2.651ms - HashTableEmplaceTime: 1.989ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.672us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 9.584us - ExecTime: 86.889ms - InitProbeSideTime: 20.250ms - JoinFilterTimer: 40.444us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 16.652us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 93.468us - ProbeFindNextTime: 0ns - ProbeRows: 3.295578M (3295578) - ProbeTime: 67.441ms - ProbeWhenBuildSideOutputTime: 2.646ms - ProbeWhenProbeSideOutputTime: 392.340us - ProbeWhenProcessHashTableTime: 9.32us - ProbeWhenSearchHashTableTime: 38.713ms - ProjectionTime: 9.979ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s392ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 13.31us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.678ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.15 MB - MemoryUsage: - Blocks: 19.52 MB - PeakMemoryUsage: 19.52 MB - OpenTime: 53.913us - ProjectionTime: 0ns - RowsProduced: 3.295578M (3295578) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 988.593ms PipelineXTask (index=22):(Active: 84.198ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 84.1ms - CloseTime: 40.767us - GetBlockTime: 75.755ms - OpenTime: 9.363us - PrepareTime: 140.289us - SinkTime: 6.463ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.974ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 622.783ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.945us - CompressTime: 0ns - ExecTime: 6.377ms - InputRows: 3.516K (3516) - LocalBytesSent: 250.62 KB - LocalSendTime: 74.809us - LocalSentRows: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 58.364us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.516K (3516) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.193ms - SplitBlockHashComputeTime: 1.583ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 3.643ms - CloseTime: 2.866us - ExecTime: 3.986ms - HashTableComputeTime: 2.496ms - HashTableEmplaceTime: 1.772ms - HashTableInputCount: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.447us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 738 - BuildOutputBlock: 0ns - CloseTime: 9.716us - ExecTime: 65.302ms - InitProbeSideTime: 19.848ms - JoinFilterTimer: 44.120us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 15.884us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 93.627us - ProbeFindNextTime: 0ns - ProbeRows: 3.295378M (3295378) - ProbeTime: 59.644ms - ProbeWhenBuildSideOutputTime: 2.555ms - ProbeWhenProbeSideOutputTime: 369.85us - ProbeWhenProcessHashTableTime: 7.496us - ProbeWhenSearchHashTableTime: 31.724ms - ProjectionTime: 3.725ms - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s237ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 9.810us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.179ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.74 MB - MemoryUsage: - Blocks: 18.98 MB - PeakMemoryUsage: 18.98 MB - OpenTime: 14.895us - ProjectionTime: 0ns - RowsProduced: 3.295378M (3295378) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s106ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 690.448us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 598.732us - CloseTime: 15.250us - GetBlockTime: 142.747us - OpenTime: 2.833us - PrepareTime: 68.559us - SinkTime: 413.120us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 662.87us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.797ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.847us - BuildRows: 3.592K (3592) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 273.956us - BuildTableInsertTime: 52.997us - BuildTableTime: 56.861us - CloseTime: 0ns - ExecTime: 438.719us - InputRows: 3.591K (3591) - MemoryUsage: - BuildBlocks: 241.94 KB - BuildKeyArena: 56.13 KB - HashTable: 49.54 KB - PeakMemoryUsage: 347.60 KB - OpenTime: 27.652us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.529us - RuntimeFilterComputeTime: 29.11us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 163.530us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 12.293us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s185ms PipelineXTask (index=3):(Active: 1.539ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.439ms - CloseTime: 10.958us - GetBlockTime: 141.456us - OpenTime: 3.984us - PrepareTime: 81.406us - SinkTime: 1.224ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.488ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.149us - BuildRows: 9.222K (9222) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 916.209us - BuildTableInsertTime: 144.723us - BuildTableTime: 148.664us - CloseTime: 0ns - ExecTime: 1.240ms - InputRows: 9.221K (9221) - MemoryUsage: - BuildBlocks: 621.30 KB - BuildKeyArena: 144.09 KB - HashTable: 109.03 KB - PeakMemoryUsage: 874.42 KB - OpenTime: 18.812us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.996us - RuntimeFilterComputeTime: 100.450us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.848us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 152.346us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 864.00 KB - MemoryUsage: - Blocks: 280.00 KB - PeakMemoryUsage: 280.00 KB - OpenTime: 10.525us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s262ms PipelineXTask (index=5):(Active: 648.962us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 585.252us - CloseTime: 5.246us - GetBlockTime: 149.516us - OpenTime: 2.827us - PrepareTime: 50.271us - SinkTime: 400.197us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 634.475us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.359ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.481us - BuildRows: 3.524K (3524) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 268.796us - BuildTableInsertTime: 71.187us - BuildTableTime: 72.261us - CloseTime: 0ns - ExecTime: 414.365us - InputRows: 3.523K (3523) - MemoryUsage: - BuildBlocks: 237.34 KB - BuildKeyArena: 55.06 KB - HashTable: 33.21 KB - PeakMemoryUsage: 325.60 KB - OpenTime: 16.75us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.183us - RuntimeFilterComputeTime: 26.518us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.866us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 161.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 12.66us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s185ms PipelineXTask (index=7):(Active: 578.687us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 509.49us - CloseTime: 11.857us - GetBlockTime: 119.799us - OpenTime: 2.36us - PrepareTime: 51.291us - SinkTime: 351.461us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 558.487us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.519ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.216us - BuildRows: 3.658K (3658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 210.926us - BuildTableInsertTime: 50.310us - BuildTableTime: 53.544us - CloseTime: 0ns - ExecTime: 369.205us - InputRows: 3.657K (3657) - MemoryUsage: - BuildBlocks: 246.38 KB - BuildKeyArena: 57.16 KB - HashTable: 49.87 KB - PeakMemoryUsage: 353.39 KB - OpenTime: 20.301us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.33us - RuntimeFilterComputeTime: 29.260us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.758us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 136.26us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 11.416us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s197ms PipelineXTask (index=9):(Active: 524.2us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 464.685us - CloseTime: 4.945us - GetBlockTime: 126.939us - OpenTime: 1.788us - PrepareTime: 48.560us - SinkTime: 305.201us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 510.225us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.28ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.180us - BuildRows: 3.666K (3666) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 202.624us - BuildTableInsertTime: 48.337us - BuildTableTime: 49.415us - CloseTime: 0ns - ExecTime: 323.163us - InputRows: 3.665K (3665) - MemoryUsage: - BuildBlocks: 246.93 KB - BuildKeyArena: 57.28 KB - HashTable: 49.90 KB - PeakMemoryUsage: 354.11 KB - OpenTime: 19.728us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.96us - RuntimeFilterComputeTime: 24.873us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.377us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 136.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 9.529us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s197ms PipelineXTask (index=11):(Active: 506.77us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 446.427us - CloseTime: 2.405us - GetBlockTime: 98.317us - OpenTime: 2.176us - PrepareTime: 50.979us - SinkTime: 320.516us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 496.604us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.488ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.159us - BuildRows: 3.498K (3498) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 204.540us - BuildTableInsertTime: 63.707us - BuildTableTime: 64.700us - CloseTime: 0ns - ExecTime: 338.562us - InputRows: 3.497K (3497) - MemoryUsage: - BuildBlocks: 235.61 KB - BuildKeyArena: 54.66 KB - HashTable: 33.08 KB - PeakMemoryUsage: 323.34 KB - OpenTime: 20.703us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 924ns - RuntimeFilterComputeTime: 23.972us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.716us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 382.00 KB - MemoryUsage: - Blocks: 316.00 KB - PeakMemoryUsage: 316.00 KB - OpenTime: 12.652us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s197ms PipelineXTask (index=13):(Active: 530.319us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 469.973us - CloseTime: 2.578us - GetBlockTime: 122.872us - OpenTime: 2.3us - PrepareTime: 50.870us - SinkTime: 318.822us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 520.14us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.919ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.722us - BuildRows: 3.474K (3474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 216.901us - BuildTableInsertTime: 50.490us - BuildTableTime: 51.468us - CloseTime: 0ns - ExecTime: 332.939us - InputRows: 3.473K (3473) - MemoryUsage: - BuildBlocks: 233.99 KB - BuildKeyArena: 54.28 KB - HashTable: 32.97 KB - PeakMemoryUsage: 321.23 KB - OpenTime: 16.18us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 981ns - RuntimeFilterComputeTime: 23.953us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.47us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 115.863us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 382.00 KB - MemoryUsage: - Blocks: 316.00 KB - PeakMemoryUsage: 316.00 KB - OpenTime: 14.526us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s196ms PipelineXTask (index=15):(Active: 578.810us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 519.517us - CloseTime: 4.215us - GetBlockTime: 127.452us - OpenTime: 2.809us - PrepareTime: 47.331us - SinkTime: 349.852us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 566.100us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.778ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.258us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 226.623us - BuildTableInsertTime: 64.797us - BuildTableTime: 65.937us - CloseTime: 0ns - ExecTime: 360.480us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.76 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.15 KB - OpenTime: 12.792us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.814us - RuntimeFilterComputeTime: 26.559us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.560us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 141.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 15.674us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s185ms PipelineXTask (index=17):(Active: 549.541us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 475.688us - CloseTime: 6.607us - GetBlockTime: 110.429us - OpenTime: 2.282us - PrepareTime: 60.808us - SinkTime: 333.696us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 534.857us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.372ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.353us - BuildRows: 3.485K (3485) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 222.580us - BuildTableInsertTime: 45.944us - BuildTableTime: 47.304us - CloseTime: 0ns - ExecTime: 352.737us - InputRows: 3.484K (3484) - MemoryUsage: - BuildBlocks: 234.75 KB - BuildKeyArena: 54.45 KB - HashTable: 33.02 KB - PeakMemoryUsage: 322.22 KB - OpenTime: 20.829us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.84us - RuntimeFilterComputeTime: 37.826us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.832us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.436us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 10.147us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s196ms PipelineXTask (index=19):(Active: 602.339us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 535.830us - CloseTime: 4.508us - GetBlockTime: 158.800us - OpenTime: 3.505us - PrepareTime: 53.410us - SinkTime: 344.918us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 588.765us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.573ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.346us - BuildRows: 3.574K (3574) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 236.37us - BuildTableInsertTime: 53.82us - BuildTableTime: 53.852us - CloseTime: 0ns - ExecTime: 362.668us - InputRows: 3.573K (3573) - MemoryUsage: - BuildBlocks: 240.72 KB - BuildKeyArena: 55.84 KB - HashTable: 33.46 KB - PeakMemoryUsage: 330.01 KB - OpenTime: 19.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.276us - RuntimeFilterComputeTime: 25.689us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.941us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.316us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 15.388us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s186ms PipelineXTask (index=21):(Active: 845.497us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 735.544us - CloseTime: 15.722us - GetBlockTime: 117.421us - OpenTime: 5.476us - PrepareTime: 85.100us - SinkTime: 560.683us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 817.21us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 249.607ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.172us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 230.222us - BuildTableInsertTime: 64.781us - BuildTableTime: 69.880us - CloseTime: 0ns - ExecTime: 600.429us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.78 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.17 KB - OpenTime: 41.778us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 173.790us - RuntimeFilterComputeTime: 29.292us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.630us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.311us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 363.00 KB - PeakMemoryUsage: 363.00 KB - OpenTime: 14.360us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s190ms PipelineXTask (index=23):(Active: 607.189us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 531.981us - CloseTime: 11.955us - GetBlockTime: 125.690us - OpenTime: 2.345us - PrepareTime: 57.725us - SinkTime: 371.267us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 588.703us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 182.584ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.276us - BuildRows: 3.517K (3517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 224.319us - BuildTableInsertTime: 54.336us - BuildTableTime: 57.586us - CloseTime: 0ns - ExecTime: 391.613us - InputRows: 3.516K (3516) - MemoryUsage: - BuildBlocks: 236.88 KB - BuildKeyArena: 54.95 KB - HashTable: 33.18 KB - PeakMemoryUsage: 325.01 KB - OpenTime: 23.605us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.38us - RuntimeFilterComputeTime: 30.18us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.792us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 144.237us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 297.00 KB - PeakMemoryUsage: 297.00 KB - OpenTime: 14.176us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s198ms Fragment 91: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 608.983ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 608.446ms - CloseTime: 73.272us - GetBlockTime: 5.132ms - OpenTime: 182.671us - PrepareTime: 268.428us - SinkTime: 599.648ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 11 - NumYieldTimes: 5 - PendingFinishTimes: 0 - TaskCpuTime: 199.702ms - WaitBfTime: 789.338ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 412.325ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.78us - CompressTime: 0ns - ExecTime: 599.384ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 41.19 MB - LocalSendTime: 49.909ms - LocalSentRows: 4.799089M (4799089) - MemoryUsage: - PeakMemoryUsage: 61.02 MB - MergeBlockTime: 0ns - OpenTime: 111.662us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 331.782ms - SplitBlockHashComputeTime: 57.252ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 78.413ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.201us - BlocksProduced: 1.183K (1183) - CloseTime: 61.870us - ExecTime: 105.846ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 272.281us - ProcessConjunctTime: 39.776us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 260.194ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.804ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [71.469ms, 15.679ms, 50.508ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [85.553ms, 88.676ms, 85.964ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 135.613ms - MemoryUsage: - FreeBlocks: 25.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 450.865us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52.945us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.834ms - ScannerCtxSchedTime: 260.185ms - ScannerFilterTime: 272.38us - ScannerGetBlockTime: 137.53ms - ScannerInitTime: 105.650us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.321us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.996us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 25.738us - BlockInitTime: 204.864us - BlockLoadTime: 135.672ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 227.871us - FirstReadTime: 133.271ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.639us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 129.374us - OutputIndexResultColumnTimer: 82.405us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 589 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 275.847ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 275.347ms - CloseTime: 121.920us - GetBlockTime: 16.894ms - OpenTime: 196.489us - PrepareTime: 173.383us - SinkTime: 255.692ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 161.598ms - WaitBfTime: 1s33ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 819.244ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.144K (1144) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.776us - CompressTime: 0ns - ExecTime: 255.477ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 41.19 MB - LocalSendTime: 96.774ms - LocalSentRows: 4.79901M (4799010) - MemoryUsage: - PeakMemoryUsage: 61.82 MB - MergeBlockTime: 0ns - OpenTime: 68.926us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 71.47ms - SplitBlockHashComputeTime: 56.279ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.569us - BlocksProduced: 1.182K (1182) - CloseTime: 102.131us - ExecTime: 164.72ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 257.10us - ProcessConjunctTime: 33.851us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 420.833ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.128ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [22.897ms, 17.370ms, 4.777ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [137.384ms, 143.049ms, 140.399ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.766ms - MemoryUsage: - FreeBlocks: 23.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 682.509us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58.155us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 57.316ms - ScannerCtxSchedTime: 420.824ms - ScannerFilterTime: 3.44ms - ScannerGetBlockTime: 41.527ms - ScannerInitTime: 125.16us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.762us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.372us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 30.723us - BlockInitTime: 224.191us - BlockLoadTime: 39.842ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 245.888us - FirstReadTime: 36.919ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.427us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 152.140us - OutputIndexResultColumnTimer: 101.60us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 590 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 229.762ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 229.337ms - CloseTime: 68.20us - GetBlockTime: 2.957ms - OpenTime: 140.155us - PrepareTime: 206.870us - SinkTime: 224.528ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 106.626ms - WaitBfTime: 969.116ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 769.588ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.111us - CompressTime: 0ns - ExecTime: 224.421ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 29.80 MB - LocalSendTime: 47.822ms - LocalSentRows: 3.472164M (3472164) - MemoryUsage: - PeakMemoryUsage: 43.17 MB - MergeBlockTime: 0ns - OpenTime: 86.743us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 58.562ms - SplitBlockHashComputeTime: 97.643ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.358us - BlocksProduced: 856 - CloseTime: 52.964us - ExecTime: 149.545ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 201.372us - ProcessConjunctTime: 23.155us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 265.146ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 146.522ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [15.727ms, 25.653ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [132.125ms, 133.021ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 37.744ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 295.954us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.943us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.355ms - ScannerCtxSchedTime: 265.138ms - ScannerFilterTime: 2.124ms - ScannerGetBlockTime: 38.997ms - ScannerInitTime: 91.93us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.852us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.12us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 40.834us - BlockInitTime: 196.694us - BlockLoadTime: 37.887ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 149.825us - FirstReadTime: 36.149ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.504us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 113.365us - OutputIndexResultColumnTimer: 58.722us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 185.198ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 184.825ms - CloseTime: 85.292us - GetBlockTime: 3.142ms - OpenTime: 93.662us - PrepareTime: 186.685us - SinkTime: 179.882ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 102.10ms - WaitBfTime: 969.269ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 964.427ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.24us - CompressTime: 0ns - ExecTime: 179.753ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 29.80 MB - LocalSendTime: 20.717ms - LocalSentRows: 3.472126M (3472126) - MemoryUsage: - PeakMemoryUsage: 43.60 MB - MergeBlockTime: 0ns - OpenTime: 65.899us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 89.159ms - SplitBlockHashComputeTime: 49.867ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.597us - BlocksProduced: 856 - CloseTime: 70.847us - ExecTime: 152.53ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 172.768us - ProcessConjunctTime: 7.993us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 276.889ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.878ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [31.739ms, 13.160ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [131.690ms, 145.198ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 40.81ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 399.106us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.8us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 46.126ms - ScannerCtxSchedTime: 276.883ms - ScannerFilterTime: 2.947ms - ScannerGetBlockTime: 41.576ms - ScannerInitTime: 53.605us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.874us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.33us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 36.445us - BlockInitTime: 208.320us - BlockLoadTime: 40.178ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 195.592us - FirstReadTime: 37.947ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.649us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 109.899us - OutputIndexResultColumnTimer: 83.736us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 146.860ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 146.536ms - CloseTime: 53.548us - GetBlockTime: 2.157ms - OpenTime: 85.213us - PrepareTime: 176.270us - SinkTime: 130.139ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 73.196ms - WaitBfTime: 1s33ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s77ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 543 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.440us - CompressTime: 0ns - ExecTime: 130.69ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 19.40 MB - LocalSendTime: 1.797ms - LocalSentRows: 2.259795M (2259795) - MemoryUsage: - PeakMemoryUsage: 27.94 MB - MergeBlockTime: 0ns - OpenTime: 63.584us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 50.906ms - SplitBlockHashComputeTime: 62.478ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.328us - BlocksProduced: 557 - CloseTime: 38.484us - ExecTime: 211.358ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 139.269us - ProcessConjunctTime: 11.127us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.796ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.184ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [62.072ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [142.796ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 57.627ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 234.18us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.907us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.252ms - ScannerCtxSchedTime: 142.792ms - ScannerFilterTime: 3.611ms - ScannerGetBlockTime: 58.277ms - ScannerInitTime: 50.41us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 745ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.693us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.890us - BlockInitTime: 58.30us - BlockLoadTime: 57.652ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 115.633us - FirstReadTime: 56.543ms - IOTimer: 0ns - InvertedIndexFilterTime: 939ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 64.798us - OutputIndexResultColumnTimer: 32.885us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 104.497ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 104.177ms - CloseTime: 33.622us - GetBlockTime: 2.42ms - OpenTime: 77.24us - PrepareTime: 199.716us - SinkTime: 100.568ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.622ms - WaitBfTime: 1s32ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s124ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 542 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.86us - CompressTime: 0ns - ExecTime: 100.513ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 19.40 MB - LocalSendTime: 2.40ms - LocalSentRows: 2.259785M (2259785) - MemoryUsage: - PeakMemoryUsage: 27.40 MB - MergeBlockTime: 0ns - OpenTime: 85.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 44.649ms - SplitBlockHashComputeTime: 36.972ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.871us - BlocksProduced: 557 - CloseTime: 19.675us - ExecTime: 164.712ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 139.859us - ProcessConjunctTime: 10.543us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.263ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 162.670ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [16.189ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [142.263ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.378ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 214.258us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.904us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.537ms - ScannerCtxSchedTime: 142.260ms - ScannerFilterTime: 125.597us - ScannerGetBlockTime: 15.932ms - ScannerInitTime: 44.657us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 722ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.177us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 14.388us - BlockInitTime: 63.523us - BlockLoadTime: 15.394ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 91.570us - FirstReadTime: 14.393ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.45us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 48.81us - OutputIndexResultColumnTimer: 34.181us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 97.333ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 97.36ms - CloseTime: 60.287us - GetBlockTime: 923.412us - OpenTime: 58.130us - PrepareTime: 170.474us - SinkTime: 95.515ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.618ms - WaitBfTime: 1s32ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 337.955ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.273us - CompressTime: 0ns - ExecTime: 95.544ms - InputRows: 876.719K (876719) - LocalBytesSent: 7.52 MB - LocalSendTime: 56.449ms - LocalSentRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 10.47 MB - MergeBlockTime: 0ns - OpenTime: 66.784us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.719K (876719) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.369ms - SplitBlockHashComputeTime: 19.911ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.535us - BlocksProduced: 216 - CloseTime: 42.443us - ExecTime: 156.495ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 121.485us - ProcessConjunctTime: 9.853us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.538ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 155.458ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [9.146ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [142.538ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.772ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 210.354us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.441us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.883ms - ScannerCtxSchedTime: 142.536ms - ScannerFilterTime: 50.335us - ScannerGetBlockTime: 9.45ms - ScannerInitTime: 31.214us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 339ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.510us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 8.700us - BlockInitTime: 34.519us - BlockLoadTime: 8.882ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 49.197us - FirstReadTime: 8.322ms - IOTimer: 0ns - InvertedIndexFilterTime: 420ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 27.461us - OutputIndexResultColumnTimer: 15.66us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 64.373ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 63.895ms - CloseTime: 58.624us - GetBlockTime: 1.271ms - OpenTime: 234.188us - PrepareTime: 174.560us - SinkTime: 49.379ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.554ms - WaitBfTime: 1s156ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 623.698ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.676us - CompressTime: 0ns - ExecTime: 49.394ms - InputRows: 876.727K (876727) - LocalBytesSent: 7.53 MB - LocalSendTime: 797.511us - LocalSentRows: 876.727K (876727) - MemoryUsage: - PeakMemoryUsage: 10.83 MB - MergeBlockTime: 0ns - OpenTime: 60.941us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.727K (876727) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.315ms - SplitBlockHashComputeTime: 14.44ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.324us - BlocksProduced: 216 - CloseTime: 38.524us - ExecTime: 111.296ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 295.652us - ProcessConjunctTime: 59.611us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 96.769ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 109.757ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [9.526ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [96.769ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.176ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 184.446us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.943us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.949ms - ScannerCtxSchedTime: 96.767ms - ScannerFilterTime: 45.178us - ScannerGetBlockTime: 9.415ms - ScannerInitTime: 130.847us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 353ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.404us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 6.448us - BlockInitTime: 34.267us - BlockLoadTime: 9.232ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 35.719us - FirstReadTime: 8.824ms - IOTimer: 0ns - InvertedIndexFilterTime: 426ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 24.181us - OutputIndexResultColumnTimer: 16.539us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 194.336ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 193.879ms - CloseTime: 56.314us - GetBlockTime: 18.684ms - OpenTime: 127.639us - PrepareTime: 263.198us - SinkTime: 173.278ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 107.944ms - WaitBfTime: 1s155ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s34ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 805 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.285us - CompressTime: 0ns - ExecTime: 173.221ms - InputRows: 3.389614M (3389614) - LocalBytesSent: 29.09 MB - LocalSendTime: 3.61ms - LocalSentRows: 3.389614M (3389614) - MemoryUsage: - PeakMemoryUsage: 46.65 MB - MergeBlockTime: 0ns - OpenTime: 149.338us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.389614M (3389614) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 104.565ms - SplitBlockHashComputeTime: 44.748ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.913us - BlocksProduced: 836 - CloseTime: 42.497us - ExecTime: 117.535ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 182.434us - ProcessConjunctTime: 20.910us - ProjectionTime: 0ns - RowsProduced: 3.389614M (3389614) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.482ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.549ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [17.415ms, 14.126ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [99.837ms, 105.644ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 28.842ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 604.136us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38.450us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.129ms - ScannerCtxSchedTime: 205.474ms - ScannerFilterTime: 1.412ms - ScannerGetBlockTime: 29.834ms - ScannerInitTime: 63.934us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.925us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.800us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 25.168us - BlockInitTime: 184.671us - BlockLoadTime: 28.993ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 135.862us - FirstReadTime: 27.257ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.580us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 74.230us - OutputIndexResultColumnTimer: 74.583us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 86.574ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 86.202ms - CloseTime: 78.980us - GetBlockTime: 2.733ms - OpenTime: 106.244us - PrepareTime: 175.456us - SinkTime: 81.818ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.277ms - WaitBfTime: 1s156ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s151ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 808 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.894us - CompressTime: 0ns - ExecTime: 81.710ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 29.09 MB - LocalSendTime: 2.343ms - LocalSentRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 47.09 MB - MergeBlockTime: 0ns - OpenTime: 60.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.432ms - SplitBlockHashComputeTime: 30.204ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.610us - BlocksProduced: 836 - CloseTime: 61.765us - ExecTime: 120.857ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 167.486us - ProcessConjunctTime: 15.139us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 207.220ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.70ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [22.047ms, 13.182ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [101.817ms, 105.402ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 28.764ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 355.854us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.345us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.800ms - ScannerCtxSchedTime: 207.212ms - ScannerFilterTime: 5.151ms - ScannerGetBlockTime: 29.764ms - ScannerInitTime: 58.758us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 6.483us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.948us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 18.631us - BlockInitTime: 132.956us - BlockLoadTime: 28.779ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 158.840us - FirstReadTime: 27.164ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.668us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 85.775us - OutputIndexResultColumnTimer: 57.456us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 308.434ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 307.985ms - CloseTime: 115.854us - GetBlockTime: 6.63ms - OpenTime: 83.21us - PrepareTime: 239.171us - SinkTime: 297.988ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 203.650ms - WaitBfTime: 1s33ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 981.415ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.186K (1186) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.620us - CompressTime: 0ns - ExecTime: 297.618ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 42.71 MB - LocalSendTime: 6.816ms - LocalSentRows: 4.97661M (4976610) - MemoryUsage: - PeakMemoryUsage: 64.45 MB - MergeBlockTime: 0ns - OpenTime: 63.796us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 112.9ms - SplitBlockHashComputeTime: 135.595ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.770us - BlocksProduced: 1.227K (1227) - CloseTime: 96.382us - ExecTime: 161.950ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 205.359us - ProcessConjunctTime: 8.850us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 444.502ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 155.979ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [25.899ms, 20.282ms, 6.385ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [145.649ms, 151.844ms, 147.007ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 45.328ms - MemoryUsage: - FreeBlocks: 26.82 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 569.914us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 74.267us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.518ms - ScannerCtxSchedTime: 444.490ms - ScannerFilterTime: 5.261ms - ScannerGetBlockTime: 46.877ms - ScannerInitTime: 50.781us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.432us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.949us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 53.909us - BlockInitTime: 263.399us - BlockLoadTime: 45.568ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 227.715us - FirstReadTime: 43.324ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.736us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 115.331us - OutputIndexResultColumnTimer: 70.982us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 615 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 226.823ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 226.374ms - CloseTime: 91.336us - GetBlockTime: 4.628ms - OpenTime: 165.168us - PrepareTime: 177.937us - SinkTime: 218.597ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 171.166ms - WaitBfTime: 1s156ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s26ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.188K (1188) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.985us - CompressTime: 0ns - ExecTime: 218.330ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 42.71 MB - LocalSendTime: 4.917ms - LocalSentRows: 4.976137M (4976137) - MemoryUsage: - PeakMemoryUsage: 64.69 MB - MergeBlockTime: 0ns - OpenTime: 69.308us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 86.93ms - SplitBlockHashComputeTime: 81.175ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s769ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 85.570ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=159. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 50, type = minmax), RuntimeFilter: (id = 51, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.954us - BlocksProduced: 1.228K (1228) - CloseTime: 79.721us - ExecTime: 122.7ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 225.648us - ProcessConjunctTime: 21.295us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 321.783ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.410ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 596 - expr_input_rows: 3.171332M (3171332) RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.585666M (1585666) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [34.071ms, 31.688ms, 8.322ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [107.932ms, 107.568ms, 106.282ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.627ms - MemoryUsage: - FreeBlocks: 26.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 667.553us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.662us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.985ms - ScannerCtxSchedTime: 321.775ms - ScannerFilterTime: 6.575ms - ScannerGetBlockTime: 67.8ms - ScannerInitTime: 113.540us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.303us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.856us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 58.606us - BlockInitTime: 326.695us - BlockLoadTime: 52.90ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 290.500us - FirstReadTime: 39.842ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.102us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 161.741us - OutputIndexResultColumnTimer: 98.489us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 620 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 92: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 45.253ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 45.53ms - CloseTime: 33.158us - GetBlockTime: 38.664ms - OpenTime: 3.73us - PrepareTime: 153.297us - SinkTime: 5.625ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.857ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s130ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.992us - CompressTime: 0ns - ExecTime: 5.647ms - InputRows: 4.001K (4001) - LocalBytesSent: 269.55 KB - LocalSendTime: 106.600us - LocalSentRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 75.725us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.001K (4001) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.855ms - SplitBlockHashComputeTime: 415.876us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 5.199us - ExecTime: 35.531ms - InitProbeSideTime: 15.714ms - JoinFilterTimer: 17.555us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 15.646us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.565us - ProbeFindNextTime: 0ns - ProbeRows: 694.746K (694746) - ProbeTime: 34.144ms - ProbeWhenBuildSideOutputTime: 1.354ms - ProbeWhenProbeSideOutputTime: 634.282us - ProbeWhenProcessHashTableTime: 12.845us - ProbeWhenSearchHashTableTime: 14.77ms - ProjectionTime: 735.419us - RowsProduced: 4.001K (4001) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 11.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.835ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.80 MB - MemoryUsage: - Blocks: 19.70 MB - PeakMemoryUsage: 19.70 MB - OpenTime: 18.832us - ProjectionTime: 0ns - RowsProduced: 694.746K (694746) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s992ms PipelineXTask (index=2):(Active: 67.399ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 67.81ms - CloseTime: 36.644us - GetBlockTime: 62.398ms - OpenTime: 13.652us - PrepareTime: 254.696us - SinkTime: 4.46ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.469ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 930.903ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.410us - CompressTime: 0ns - ExecTime: 4.194ms - InputRows: 4.088K (4088) - LocalBytesSent: 275.43 KB - LocalSendTime: 81.718us - LocalSentRows: 4.088K (4088) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 189.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.088K (4088) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.504ms - SplitBlockHashComputeTime: 339.482us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 7.729us - ExecTime: 59.754ms - InitProbeSideTime: 14.394ms - JoinFilterTimer: 14.234us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.416us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.205us - ProbeFindNextTime: 0ns - ProbeRows: 694.418K (694418) - ProbeTime: 58.510ms - ProbeWhenBuildSideOutputTime: 9.328ms - ProbeWhenProbeSideOutputTime: 614.714us - ProbeWhenProcessHashTableTime: 15.525us - ProbeWhenSearchHashTableTime: 32.233ms - ProjectionTime: 622.543us - RowsProduced: 4.088K (4088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 10.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.430ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.20 MB - MemoryUsage: - Blocks: 13.61 MB - PeakMemoryUsage: 13.61 MB - OpenTime: 17.214us - ProjectionTime: 0ns - RowsProduced: 694.418K (694418) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s198ms PipelineXTask (index=4):(Active: 50.470ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.288ms - CloseTime: 37.436us - GetBlockTime: 44.969ms - OpenTime: 5.403us - PrepareTime: 130.138us - SinkTime: 4.548ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.597ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s46ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.147us - CompressTime: 0ns - ExecTime: 4.581ms - InputRows: 4.133K (4133) - LocalBytesSent: 278.45 KB - LocalSendTime: 118.453us - LocalSentRows: 4.133K (4133) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 77.501us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.133K (4133) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.660ms - SplitBlockHashComputeTime: 418.751us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 7.782us - ExecTime: 35.491ms - InitProbeSideTime: 15.476ms - JoinFilterTimer: 18.746us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.144us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 43.965us - ProbeFindNextTime: 0ns - ProbeRows: 696.49K (696490) - ProbeTime: 34.64ms - ProbeWhenBuildSideOutputTime: 1.306ms - ProbeWhenProbeSideOutputTime: 680.858us - ProbeWhenProcessHashTableTime: 15.202us - ProbeWhenSearchHashTableTime: 13.964ms - ProjectionTime: 747.590us - RowsProduced: 4.133K (4133) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 168 - BytesReceived: 0.00 - CloseTime: 11.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 9.215ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.77 MB - MemoryUsage: - Blocks: 11.25 MB - PeakMemoryUsage: 11.25 MB - OpenTime: 12.298us - ProjectionTime: 0ns - RowsProduced: 696.49K (696490) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s187ms PipelineXTask (index=6):(Active: 40.89ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 39.889ms - CloseTime: 40.887us - GetBlockTime: 35.165ms - OpenTime: 8.387us - PrepareTime: 142.150us - SinkTime: 4.90ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s264ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.5us - CompressTime: 0ns - ExecTime: 4.131ms - InputRows: 4.044K (4044) - LocalBytesSent: 272.47 KB - LocalSendTime: 81.786us - LocalSentRows: 4.044K (4044) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 82.634us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.044K (4044) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.487ms - SplitBlockHashComputeTime: 388.903us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 15.144us - ExecTime: 32.426ms - InitProbeSideTime: 14.483ms - JoinFilterTimer: 18.562us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.773us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.848us - ProbeFindNextTime: 0ns - ProbeRows: 694.131K (694131) - ProbeTime: 31.157ms - ProbeWhenBuildSideOutputTime: 1.48ms - ProbeWhenProbeSideOutputTime: 597.655us - ProbeWhenProcessHashTableTime: 17.432us - ProbeWhenSearchHashTableTime: 12.950ms - ProjectionTime: 654.75us - RowsProduced: 4.044K (4044) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 9.299us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.511ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.94 MB - MemoryUsage: - Blocks: 12.88 MB - PeakMemoryUsage: 12.88 MB - OpenTime: 17.315us - ProjectionTime: 0ns - RowsProduced: 694.131K (694131) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s872ms PipelineXTask (index=8):(Active: 41.551ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 41.353ms - CloseTime: 52.419us - GetBlockTime: 36.30ms - OpenTime: 4.960us - PrepareTime: 133.566us - SinkTime: 4.607ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.439ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s236ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.939us - CompressTime: 0ns - ExecTime: 4.636ms - InputRows: 4.055K (4055) - LocalBytesSent: 273.22 KB - LocalSendTime: 102.0us - LocalSentRows: 4.055K (4055) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 74.133us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.055K (4055) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.942ms - SplitBlockHashComputeTime: 386.875us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 23.454us - ExecTime: 33.378ms - InitProbeSideTime: 14.564ms - JoinFilterTimer: 27.993us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 17.50us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 47.294us - ProbeFindNextTime: 0ns - ProbeRows: 695.902K (695902) - ProbeTime: 32.31ms - ProbeWhenBuildSideOutputTime: 1.93ms - ProbeWhenProbeSideOutputTime: 561.841us - ProbeWhenProcessHashTableTime: 16.617us - ProbeWhenSearchHashTableTime: 13.712ms - ProjectionTime: 680.765us - RowsProduced: 4.055K (4055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 10.255us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.389ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.29 MB - MemoryUsage: - Blocks: 9.30 MB - PeakMemoryUsage: 9.30 MB - OpenTime: 10.344us - ProjectionTime: 0ns - RowsProduced: 695.902K (695902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s892ms PipelineXTask (index=10):(Active: 53.505ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 53.243ms - CloseTime: 27.550us - GetBlockTime: 47.969ms - OpenTime: 3.800us - PrepareTime: 220.392us - SinkTime: 4.514ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.967ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s29ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.965us - CompressTime: 0ns - ExecTime: 4.614ms - InputRows: 4.073K (4073) - LocalBytesSent: 274.43 KB - LocalSendTime: 53.149us - LocalSentRows: 4.073K (4073) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 152.893us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.073K (4073) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.809ms - SplitBlockHashComputeTime: 413.524us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 10.608us - ExecTime: 45.525ms - InitProbeSideTime: 15.208ms - JoinFilterTimer: 16.454us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 13.934us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 43.894us - ProbeFindNextTime: 0ns - ProbeRows: 695.747K (695747) - ProbeTime: 44.182ms - ProbeWhenBuildSideOutputTime: 1.234ms - ProbeWhenProbeSideOutputTime: 583.955us - ProbeWhenProcessHashTableTime: 12.480us - ProbeWhenSearchHashTableTime: 24.851ms - ProjectionTime: 665.163us - RowsProduced: 4.073K (4073) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 4.991us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.171ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.39 MB - MemoryUsage: - Blocks: 12.14 MB - PeakMemoryUsage: 12.14 MB - OpenTime: 14.357us - ProjectionTime: 0ns - RowsProduced: 695.747K (695747) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s93ms PipelineXTask (index=12):(Active: 69.895ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 69.719ms - CloseTime: 35.887us - GetBlockTime: 39.149ms - OpenTime: 5.102us - PrepareTime: 130.248us - SinkTime: 29.798ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.746ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s178ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.411us - CompressTime: 0ns - ExecTime: 29.821ms - InputRows: 3.922K (3922) - LocalBytesSent: 264.26 KB - LocalSendTime: 78.296us - LocalSentRows: 3.922K (3922) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 69.861us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.922K (3922) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.961ms - SplitBlockHashComputeTime: 525.46us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 8.176us - ExecTime: 35.869ms - InitProbeSideTime: 16.841ms - JoinFilterTimer: 17.567us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 14.499us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.962us - ProbeFindNextTime: 0ns - ProbeRows: 695.809K (695809) - ProbeTime: 34.418ms - ProbeWhenBuildSideOutputTime: 1.334ms - ProbeWhenProbeSideOutputTime: 600.422us - ProbeWhenProcessHashTableTime: 15.623us - ProbeWhenSearchHashTableTime: 13.421ms - ProjectionTime: 737.762us - RowsProduced: 3.922K (3922) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 9.535us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.992ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.38 MB - MemoryUsage: - Blocks: 18.84 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 12.370us - ProjectionTime: 0ns - RowsProduced: 695.809K (695809) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s959ms PipelineXTask (index=14):(Active: 65.268ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 65.98ms - CloseTime: 24.998us - GetBlockTime: 59.996ms - OpenTime: 3.401us - PrepareTime: 131.676us - SinkTime: 4.339ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.29ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s158ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.636us - CompressTime: 0ns - ExecTime: 4.361ms - InputRows: 3.96K (3960) - LocalBytesSent: 266.83 KB - LocalSendTime: 60.964us - LocalSentRows: 3.96K (3960) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 69.369us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.96K (3960) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.713ms - SplitBlockHashComputeTime: 391.984us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 6.346us - ExecTime: 57.207ms - InitProbeSideTime: 26.278ms - JoinFilterTimer: 17.270us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.5us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 43.925us - ProbeFindNextTime: 0ns - ProbeRows: 694.113K (694113) - ProbeTime: 55.845ms - ProbeWhenBuildSideOutputTime: 1.254ms - ProbeWhenProbeSideOutputTime: 574.574us - ProbeWhenProcessHashTableTime: 14.463us - ProbeWhenSearchHashTableTime: 25.586ms - ProjectionTime: 721.640us - RowsProduced: 3.96K (3960) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 7.86us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.532ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.14 MB - MemoryUsage: - Blocks: 19.51 MB - PeakMemoryUsage: 19.51 MB - OpenTime: 19.49us - ProjectionTime: 0ns - RowsProduced: 694.113K (694113) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s945ms PipelineXTask (index=16):(Active: 41.170ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 40.943ms - CloseTime: 81.442us - GetBlockTime: 36.340ms - OpenTime: 3.796us - PrepareTime: 136.523us - SinkTime: 4.1ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.5ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s26ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.739us - CompressTime: 0ns - ExecTime: 4.20ms - InputRows: 3.933K (3933) - LocalBytesSent: 264.98 KB - LocalSendTime: 126.33us - LocalSentRows: 3.933K (3933) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 57.244us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.933K (3933) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.449ms - SplitBlockHashComputeTime: 375.501us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 41.694us - ExecTime: 33.477ms - InitProbeSideTime: 15.155ms - JoinFilterTimer: 15.543us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 23.984us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 36.575us - ProbeFindNextTime: 0ns - ProbeRows: 695.288K (695288) - ProbeTime: 32.180ms - ProbeWhenBuildSideOutputTime: 1.213ms - ProbeWhenProbeSideOutputTime: 582.219us - ProbeWhenProcessHashTableTime: 18.95us - ProbeWhenSearchHashTableTime: 13.196ms - ProjectionTime: 650.734us - RowsProduced: 3.933K (3933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 12.174us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.692ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.00 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.63 MB - OpenTime: 14.996us - ProjectionTime: 0ns - RowsProduced: 695.288K (695288) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s130ms PipelineXTask (index=18):(Active: 43.259ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 42.988ms - CloseTime: 52.413us - GetBlockTime: 37.885ms - OpenTime: 4.196us - PrepareTime: 204.183us - SinkTime: 4.377ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.773ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 871.988ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.217us - CompressTime: 0ns - ExecTime: 4.396ms - InputRows: 3.873K (3873) - LocalBytesSent: 260.92 KB - LocalSendTime: 76.847us - LocalSentRows: 3.873K (3873) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 56.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.873K (3873) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.752ms - SplitBlockHashComputeTime: 401.785us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 22.748us - ExecTime: 35.384ms - InitProbeSideTime: 16.22ms - JoinFilterTimer: 19.915us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 9.488us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.370us - ProbeFindNextTime: 0ns - ProbeRows: 695.538K (695538) - ProbeTime: 34.49ms - ProbeWhenBuildSideOutputTime: 1.187ms - ProbeWhenProbeSideOutputTime: 578.738us - ProbeWhenProcessHashTableTime: 13.953us - ProbeWhenSearchHashTableTime: 14.78ms - ProjectionTime: 678.85us - RowsProduced: 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 9.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.347ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.29 MB - MemoryUsage: - Blocks: 14.28 MB - PeakMemoryUsage: 14.28 MB - OpenTime: 97.890us - ProjectionTime: 0ns - RowsProduced: 695.538K (695538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s256ms PipelineXTask (index=20):(Active: 42.69ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 41.875ms - CloseTime: 43.551us - GetBlockTime: 37.80ms - OpenTime: 2.702us - PrepareTime: 141.855us - SinkTime: 4.128ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.407ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s80ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.995us - CompressTime: 0ns - ExecTime: 4.165ms - InputRows: 4.104K (4104) - LocalBytesSent: 276.53 KB - LocalSendTime: 58.170us - LocalSentRows: 4.104K (4104) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 79.521us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.104K (4104) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.541ms - SplitBlockHashComputeTime: 374.915us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 29.31us - ExecTime: 34.466ms - InitProbeSideTime: 15.59ms - JoinFilterTimer: 15.864us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 17.157us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 37.611us - ProbeFindNextTime: 0ns - ProbeRows: 694.579K (694579) - ProbeTime: 33.125ms - ProbeWhenBuildSideOutputTime: 1.237ms - ProbeWhenProbeSideOutputTime: 834.946us - ProbeWhenProcessHashTableTime: 14.269us - ProbeWhenSearchHashTableTime: 13.906ms - ProjectionTime: 675.946us - RowsProduced: 4.104K (4104) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 3.424us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.394ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.16 MB - MemoryUsage: - Blocks: 19.85 MB - PeakMemoryUsage: 19.85 MB - OpenTime: 11.631us - ProjectionTime: 0ns - RowsProduced: 694.579K (694579) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s46ms PipelineXTask (index=22):(Active: 41.837ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 41.620ms - CloseTime: 43.149us - GetBlockTime: 36.698ms - OpenTime: 3.580us - PrepareTime: 160.487us - SinkTime: 4.207ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.681ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s60ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.422us - CompressTime: 0ns - ExecTime: 4.243ms - InputRows: 4.072K (4072) - LocalBytesSent: 274.33 KB - LocalSendTime: 93.911us - LocalSentRows: 4.072K (4072) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 75.328us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.072K (4072) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.594ms - SplitBlockHashComputeTime: 387.907us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 11.329us - ExecTime: 34.16ms - InitProbeSideTime: 14.666ms - JoinFilterTimer: 15.516us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 11.465us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.873us - ProbeFindNextTime: 0ns - ProbeRows: 695.206K (695206) - ProbeTime: 32.737ms - ProbeWhenBuildSideOutputTime: 1.273ms - ProbeWhenProbeSideOutputTime: 601.797us - ProbeWhenProcessHashTableTime: 14.381us - ProbeWhenSearchHashTableTime: 14.200ms - ProjectionTime: 656.363us - RowsProduced: 4.072K (4072) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 13.691us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.453ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.67 MB - MemoryUsage: - Blocks: 10.63 MB - PeakMemoryUsage: 10.63 MB - OpenTime: 16.582us - ProjectionTime: 0ns - RowsProduced: 695.206K (695206) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s219ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 887.479us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 807.374us - CloseTime: 9.854us - GetBlockTime: 89.137us - OpenTime: 3.840us - PrepareTime: 60.550us - SinkTime: 646.737us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 858.849us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 263.752ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.89us - BuildRows: 4.002K (4002) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 348.388us - BuildTableInsertTime: 130.208us - BuildTableTime: 133.182us - CloseTime: 0ns - ExecTime: 666.727us - InputRows: 4.001K (4001) - MemoryUsage: - BuildBlocks: 234.39 KB - BuildKeyArena: 148.00 KB - HashTable: 51.54 KB - PeakMemoryUsage: 429.92 KB - OpenTime: 22.153us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.852us - RuntimeFilterComputeTime: 108.815us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.661us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.92 KB - OpenTime: 15.567us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 523.443ms PipelineXTask (index=3):(Active: 1.17ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 933.981us - CloseTime: 6.486us - GetBlockTime: 74.447us - OpenTime: 3.275us - PrepareTime: 67.609us - SinkTime: 810.932us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 995.686us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.932ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.972us - BuildRows: 4.089K (4089) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 305.8us - BuildTableInsertTime: 378.311us - BuildTableTime: 380.5us - CloseTime: 0ns - ExecTime: 835.945us - InputRows: 4.088K (4088) - MemoryUsage: - BuildBlocks: 239.50 KB - BuildKeyArena: 148.00 KB - HashTable: 51.97 KB - PeakMemoryUsage: 435.46 KB - OpenTime: 27.959us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.11us - RuntimeFilterComputeTime: 98.756us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 5.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.19us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.92 KB - OpenTime: 15.290us - ProjectionTime: 0ns - RowsProduced: 4.088K (4088) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 520.775ms PipelineXTask (index=5):(Active: 1.716ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.653ms - CloseTime: 9.696us - GetBlockTime: 64.406us - OpenTime: 2.280us - PrepareTime: 45.244us - SinkTime: 1.539ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.304ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 267.819ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.340us - BuildRows: 4.134K (4134) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 554.936us - BuildTableInsertTime: 414.8us - BuildTableTime: 418.1us - CloseTime: 0ns - ExecTime: 1.557ms - InputRows: 4.133K (4133) - MemoryUsage: - BuildBlocks: 242.12 KB - BuildKeyArena: 152.00 KB - HashTable: 52.19 KB - PeakMemoryUsage: 442.30 KB - OpenTime: 20.650us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 442.843us - RuntimeFilterComputeTime: 97.590us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.28us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.92 KB - OpenTime: 11.810us - ProjectionTime: 0ns - RowsProduced: 4.133K (4133) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 520.431ms PipelineXTask (index=7):(Active: 906.917us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 746.146us - CloseTime: 17.285us - GetBlockTime: 64.690us - OpenTime: 2.508us - PrepareTime: 133.793us - SinkTime: 627.694us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 871.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.37ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.19us - BuildRows: 4.045K (4045) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 222.638us - BuildTableInsertTime: 230.202us - BuildTableTime: 234.698us - CloseTime: 0ns - ExecTime: 648.620us - InputRows: 4.044K (4044) - MemoryUsage: - BuildBlocks: 236.92 KB - BuildKeyArena: 148.00 KB - HashTable: 51.75 KB - PeakMemoryUsage: 432.67 KB - OpenTime: 23.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.742us - RuntimeFilterComputeTime: 110.5us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 14.583us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.579us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.92 KB - OpenTime: 18.29us - ProjectionTime: 0ns - RowsProduced: 4.044K (4044) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 509.889ms PipelineXTask (index=9):(Active: 22.886ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.801ms - CloseTime: 15.336us - GetBlockTime: 57.271us - OpenTime: 1.813us - PrepareTime: 64.222us - SinkTime: 22.707ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.36ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.478ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.59us - BuildRows: 4.056K (4056) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.142ms - BuildTableInsertTime: 382.889us - BuildTableTime: 387.831us - CloseTime: 0ns - ExecTime: 22.724ms - InputRows: 4.055K (4055) - MemoryUsage: - BuildBlocks: 237.58 KB - BuildKeyArena: 148.00 KB - HashTable: 51.81 KB - PeakMemoryUsage: 433.38 KB - OpenTime: 18.956us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.636us - RuntimeFilterComputeTime: 127.856us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 12.882us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.744us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 342.25 KB - MemoryUsage: - Blocks: 228.25 KB - PeakMemoryUsage: 228.99 KB - OpenTime: 27.229us - ProjectionTime: 0ns - RowsProduced: 4.055K (4055) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 462.783ms PipelineXTask (index=11):(Active: 1.35ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 951.845us - CloseTime: 10.209us - GetBlockTime: 68.640us - OpenTime: 2.787us - PrepareTime: 67.889us - SinkTime: 849.997us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.17ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.148ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.950us - BuildRows: 4.074K (4074) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 369.125us - BuildTableInsertTime: 324.182us - BuildTableTime: 327.157us - CloseTime: 0ns - ExecTime: 864.631us - InputRows: 4.073K (4073) - MemoryUsage: - BuildBlocks: 238.63 KB - BuildKeyArena: 148.00 KB - HashTable: 51.90 KB - PeakMemoryUsage: 434.52 KB - OpenTime: 16.577us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.146us - RuntimeFilterComputeTime: 119.84us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 9.123us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.806us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 244.99 KB - OpenTime: 13.55us - ProjectionTime: 0ns - RowsProduced: 4.073K (4073) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 462.602ms PipelineXTask (index=13):(Active: 1.75ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 986.708us - CloseTime: 10.353us - GetBlockTime: 57.192us - OpenTime: 1.396us - PrepareTime: 73.126us - SinkTime: 901.435us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.57ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 177.111ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.977us - BuildRows: 3.923K (3923) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 405.493us - BuildTableInsertTime: 361.574us - BuildTableTime: 363.678us - CloseTime: 0ns - ExecTime: 932.199us - InputRows: 3.922K (3922) - MemoryUsage: - BuildBlocks: 229.79 KB - BuildKeyArena: 144.00 KB - HashTable: 51.16 KB - PeakMemoryUsage: 420.94 KB - OpenTime: 32.317us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.976us - RuntimeFilterComputeTime: 100.981us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 9.119us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 70.284us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.25 KB - MemoryUsage: - Blocks: 220.25 KB - PeakMemoryUsage: 220.99 KB - OpenTime: 16.292us - ProjectionTime: 0ns - RowsProduced: 3.922K (3922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 462.270ms PipelineXTask (index=15):(Active: 1.147ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.83ms - CloseTime: 8.624us - GetBlockTime: 70.51us - OpenTime: 1.519us - PrepareTime: 50.854us - SinkTime: 981.614us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.131ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.111ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.91us - BuildRows: 3.961K (3961) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 461.61us - BuildTableInsertTime: 378.647us - BuildTableTime: 381.475us - CloseTime: 0ns - ExecTime: 998.197us - InputRows: 3.96K (3960) - MemoryUsage: - BuildBlocks: 232.02 KB - BuildKeyArena: 144.00 KB - HashTable: 51.34 KB - PeakMemoryUsage: 423.36 KB - OpenTime: 18.414us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.404us - RuntimeFilterComputeTime: 109.422us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 7.767us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.474us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 244.99 KB - OpenTime: 11.210us - ProjectionTime: 0ns - RowsProduced: 3.96K (3960) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 461.893ms PipelineXTask (index=17):(Active: 30.143ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 30.79ms - CloseTime: 20.908us - GetBlockTime: 67.51us - OpenTime: 1.516us - PrepareTime: 38.115us - SinkTime: 29.972ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.185ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.205ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.374us - BuildRows: 3.934K (3934) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.679ms - BuildTableInsertTime: 11.118ms - BuildTableTime: 11.122ms - CloseTime: 0ns - ExecTime: 29.980ms - InputRows: 3.933K (3933) - MemoryUsage: - BuildBlocks: 230.42 KB - BuildKeyArena: 144.00 KB - HashTable: 51.21 KB - PeakMemoryUsage: 421.62 KB - OpenTime: 10.852us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.245us - RuntimeFilterComputeTime: 127.131us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 17.440us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.126us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.00 KB - MemoryUsage: - Blocks: 220.00 KB - PeakMemoryUsage: 220.74 KB - OpenTime: 9.11us - ProjectionTime: 0ns - RowsProduced: 3.933K (3933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 443.258ms PipelineXTask (index=19):(Active: 979.641us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 895.753us - CloseTime: 6.78us - GetBlockTime: 68.939us - OpenTime: 1.899us - PrepareTime: 72.531us - SinkTime: 795.524us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 963.89us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 209.295ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.214us - BuildRows: 3.874K (3874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 366.41us - BuildTableInsertTime: 254.169us - BuildTableTime: 260.724us - CloseTime: 0ns - ExecTime: 825.858us - InputRows: 3.873K (3873) - MemoryUsage: - BuildBlocks: 226.88 KB - BuildKeyArena: 144.00 KB - HashTable: 50.92 KB - PeakMemoryUsage: 417.79 KB - OpenTime: 32.455us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.588us - RuntimeFilterComputeTime: 119.487us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 5.0us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.130us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 333.75 KB - MemoryUsage: - Blocks: 219.75 KB - PeakMemoryUsage: 220.49 KB - OpenTime: 14.307us - ProjectionTime: 0ns - RowsProduced: 3.873K (3873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 442.928ms PipelineXTask (index=21):(Active: 1.114ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.27ms - CloseTime: 10.748us - GetBlockTime: 62.461us - OpenTime: 1.642us - PrepareTime: 70.436us - SinkTime: 937.38us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.95ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.200ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.782us - BuildRows: 4.105K (4105) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 584.462us - BuildTableInsertTime: 235.534us - BuildTableTime: 237.619us - CloseTime: 0ns - ExecTime: 964.511us - InputRows: 4.104K (4104) - MemoryUsage: - BuildBlocks: 240.46 KB - BuildKeyArena: 152.00 KB - HashTable: 52.05 KB - PeakMemoryUsage: 440.50 KB - OpenTime: 29.655us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.873us - RuntimeFilterComputeTime: 83.241us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 9.587us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.686us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 244.99 KB - OpenTime: 21.348us - ProjectionTime: 0ns - RowsProduced: 4.104K (4104) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 442.537ms PipelineXTask (index=23):(Active: 986.504us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 923.484us - CloseTime: 9.10us - GetBlockTime: 47.491us - OpenTime: 1.589us - PrepareTime: 49.297us - SinkTime: 848.459us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 970.726us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.241ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.629us - BuildRows: 4.073K (4073) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 447.578us - BuildTableInsertTime: 249.61us - BuildTableTime: 251.10us - CloseTime: 0ns - ExecTime: 860.293us - InputRows: 4.072K (4072) - MemoryUsage: - BuildBlocks: 238.54 KB - BuildKeyArena: 148.00 KB - HashTable: 51.89 KB - PeakMemoryUsage: 434.42 KB - OpenTime: 13.808us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.528us - RuntimeFilterComputeTime: 117.123us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.118us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.864us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.25 KB - MemoryUsage: - Blocks: 220.25 KB - PeakMemoryUsage: 220.99 KB - OpenTime: 11.96us - ProjectionTime: 0ns - RowsProduced: 4.072K (4072) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 442.170ms Fragment 93: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 303.898ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 303.392ms - CloseTime: 51.461us - GetBlockTime: 2.370ms - OpenTime: 231.43us - PrepareTime: 210.510us - SinkTime: 299.432ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 242.45ms - WaitBfTime: 1s16ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s347ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 497 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.370us - CompressTime: 0ns - ExecTime: 299.329ms - InputRows: 2.082064M (2082064) - LocalBytesSent: 91.34 MB - LocalSendTime: 4.386ms - LocalSentRows: 2.082064M (2082064) - MemoryUsage: - PeakMemoryUsage: 159.90 MB - MergeBlockTime: 0ns - OpenTime: 68.241us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.082064M (2082064) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 196.866ms - SplitBlockHashComputeTime: 68.355ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 247.817ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 7.969ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 57.540ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=155. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 48, type = minmax), RuntimeFilter: (id = 49, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA--1i3U-31lDLb76G6Ra-Ig : wonH-hBwAAypd_8e0PBwwiF9iVu87EHQ] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 126.935us - BlocksProduced: 514 - CloseTime: 35.457us - ExecTime: 413.131ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 316.525us - ProcessConjunctTime: 26.943us - ProjectionTime: 0ns - RowsProduced: 2.082064M (2082064) - RowsRead: 2.082064M (2082064) - RuntimeFilterInfo: - filter id = 49 filtered: 0 - filter id = 49 input: 207.264K (207264) - ScannerWorkerWaitTime: 143.441ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 410.568ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 49, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [257.743ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [143.441ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 254.907ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.294ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.144us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 115.916ms - ScannerCtxSchedTime: 143.423ms - ScannerFilterTime: 428.331us - ScannerGetBlockTime: 257.48ms - ScannerInitTime: 51.73us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 49: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 5.192us - BlockConditionsFilteredBloomFilterTime: 4.530us - BlockConditionsFilteredDictTime: 1.394us - BlockConditionsFilteredTime: 1.35ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 1.1ms - BlockInitSeekCount: 29 - BlockInitSeekTime: 10.193ms - BlockInitTime: 11.320ms - BlockLoadTime: 267.684ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 353.485us - FirstReadTime: 55.315ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.290us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 43.222ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 107.971ms - OutputIndexResultColumnTimer: 66.662us - RawRowsRead: 2.082064M (2082064) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 92 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.082064M (2082064) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 47.630ms - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 188.284us PipelineXTask (index=1):(Active: 301.943ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 301.308ms - CloseTime: 45.416us - GetBlockTime: 2.410ms - OpenTime: 274.443us - PrepareTime: 301.870us - SinkTime: 296.986ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.734ms - WaitBfTime: 1s52ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s430ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 501 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.417us - CompressTime: 0ns - ExecTime: 296.892ms - InputRows: 2.086147M (2086147) - LocalBytesSent: 91.52 MB - LocalSendTime: 4.879ms - LocalSentRows: 2.086147M (2086147) - MemoryUsage: - PeakMemoryUsage: 160.89 MB - MergeBlockTime: 0ns - OpenTime: 60.554us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086147M (2086147) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 198.362ms - SplitBlockHashComputeTime: 65.232ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 247.817ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 7.969ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 57.540ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=155. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 48, type = minmax), RuntimeFilter: (id = 49, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA--1i3U-31lDLb76G6Ra-Ig : wonH-hBwAAypd_8e0PBwwiF9iVu87EHQ] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 157.486us - BlocksProduced: 514 - CloseTime: 30.109us - ExecTime: 290.775ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 343.935us - ProcessConjunctTime: 37.349us - ProjectionTime: 0ns - RowsProduced: 2.086147M (2086147) - RowsRead: 2.086147M (2086147) - RuntimeFilterInfo: - filter id = 49 filtered: 0 - filter id = 49 input: 207.264K (207264) - ScannerWorkerWaitTime: 159.135ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 288.165ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 49, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [130.346ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [159.135ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.659ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.146ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35.510us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.658ms - ScannerCtxSchedTime: 159.118ms - ScannerFilterTime: 413.282us - ScannerGetBlockTime: 129.689ms - ScannerInitTime: 56.401us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 49: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 1.271us - BlockConditionsFilteredBloomFilterTime: 3.524us - BlockConditionsFilteredDictTime: 1.364us - BlockConditionsFilteredTime: 238.887us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 207.394us - BlockInitSeekCount: 27 - BlockInitSeekTime: 226.726us - BlockInitTime: 553.541us - BlockLoadTime: 129.412ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 363.584us - FirstReadTime: 26.198ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.188us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 52.492ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 45.87ms - OutputIndexResultColumnTimer: 65.654us - RawRowsRead: 2.086147M (2086147) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 87 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.086147M (2086147) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.936ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 198.466us PipelineXTask (index=2):(Active: 316.86ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 315.621ms - CloseTime: 55.874us - GetBlockTime: 33.680ms - OpenTime: 216.585us - PrepareTime: 171.293us - SinkTime: 280.128ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 238.511ms - WaitBfTime: 1s16ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s183ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 500 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.917us - CompressTime: 0ns - ExecTime: 280.52ms - InputRows: 2.086954M (2086954) - LocalBytesSent: 91.55 MB - LocalSendTime: 4.624ms - LocalSentRows: 2.086954M (2086954) - MemoryUsage: - PeakMemoryUsage: 160.67 MB - MergeBlockTime: 0ns - OpenTime: 67.996us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086954M (2086954) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.197ms - SplitBlockHashComputeTime: 64.486ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 247.817ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 7.969ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 57.540ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=155. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 48, type = minmax), RuntimeFilter: (id = 49, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA--1i3U-31lDLb76G6Ra-Ig : wonH-hBwAAypd_8e0PBwwiF9iVu87EHQ] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 97.602us - BlocksProduced: 515 - CloseTime: 29.994us - ExecTime: 534.164ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 277.16us - ProcessConjunctTime: 50.279us - ProjectionTime: 0ns - RowsProduced: 2.086954M (2086954) - RowsRead: 2.086954M (2086954) - RuntimeFilterInfo: - filter id = 49 filtered: 0 - filter id = 49 input: 207.264K (207264) - ScannerWorkerWaitTime: 174.549ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 500.346ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 49, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [211.085ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [174.549ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 181.672ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 148.70ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.942us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 111.211ms - ScannerCtxSchedTime: 174.536ms - ScannerFilterTime: 430.319us - ScannerGetBlockTime: 210.427ms - ScannerInitTime: 45.850us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 49: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 1.838us - BlockConditionsFilteredBloomFilterTime: 3.803us - BlockConditionsFilteredDictTime: 1.112us - BlockConditionsFilteredTime: 305.815us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 277.730us - BlockInitSeekCount: 27 - BlockInitSeekTime: 145.53ms - BlockInitTime: 145.459ms - BlockLoadTime: 328.739ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 515 - FirstReadSeekTime: 337.374us - FirstReadTime: 85.105ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.996us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.439ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 32.490ms - OutputIndexResultColumnTimer: 67.463us - RawRowsRead: 2.086954M (2086954) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 91 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.086954M (2086954) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.25ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 188.92us PipelineXTask (index=3):(Active: 311.470ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 311.45ms - CloseTime: 50.346us - GetBlockTime: 2.333ms - OpenTime: 199.878us - PrepareTime: 165.416us - SinkTime: 306.900ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 268.475ms - WaitBfTime: 1s53ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s373ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 502 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.122us - CompressTime: 0ns - ExecTime: 306.807ms - InputRows: 2.086802M (2086802) - LocalBytesSent: 91.55 MB - LocalSendTime: 4.437ms - LocalSentRows: 2.086802M (2086802) - MemoryUsage: - PeakMemoryUsage: 161.56 MB - MergeBlockTime: 0ns - OpenTime: 67.81us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086802M (2086802) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 209.51ms - SplitBlockHashComputeTime: 61.752ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 247.817ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 7.969ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 57.540ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=155. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 48, type = minmax), RuntimeFilter: (id = 49, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA--1i3U-31lDLb76G6Ra-Ig : wonH-hBwAAypd_8e0PBwwiF9iVu87EHQ] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 101.392us - BlocksProduced: 515 - CloseTime: 34.363us - ExecTime: 306.724ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 254.926us - ProcessConjunctTime: 26.494us - ProjectionTime: 0ns - RowsProduced: 2.086802M (2086802) - RowsRead: 2.086802M (2086802) - RuntimeFilterInfo: - filter id = 49 filtered: 0 - filter id = 49 input: 207.264K (207264) - ScannerWorkerWaitTime: 166.188ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 304.284ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 49, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [138.134ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [166.188ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 135.279ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.189ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.794us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 120.875ms - ScannerCtxSchedTime: 166.172ms - ScannerFilterTime: 414.990us - ScannerGetBlockTime: 137.482ms - ScannerInitTime: 52.138us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 49: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 1.195us - BlockConditionsFilteredBloomFilterTime: 2.717us - BlockConditionsFilteredDictTime: 1.121us - BlockConditionsFilteredTime: 975.1us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 946.820us - BlockInitSeekCount: 24 - BlockInitSeekTime: 492.528us - BlockInitTime: 1.543ms - BlockLoadTime: 138.249ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 515 - FirstReadSeekTime: 388.43us - FirstReadTime: 27.79ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.244us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 59.964ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 44.306ms - OutputIndexResultColumnTimer: 80.882us - RawRowsRead: 2.086802M (2086802) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 90 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.086802M (2086802) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.906ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 196.558us Fragment 94: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.653ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.486ms - CloseTime: 38.620us - GetBlockTime: 1.449ms - OpenTime: 3.233us - PrepareTime: 117.295us - SinkTime: 1.885ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.590ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 142.946ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.244us - CompressTime: 0ns - ExecTime: 1.967ms - InputRows: 7.879K (7879) - LocalBytesSent: 461.61 KB - LocalSendTime: 99.308us - LocalSentRows: 7.879K (7879) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 70.721us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.879K (7879) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.118ms - SplitBlockHashComputeTime: 282.865us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 22.538us - ExecTime: 1.341ms - InitProbeSideTime: 444.868us - JoinFilterTimer: 351ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.70us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.225us - ProbeFindNextTime: 0ns - ProbeRows: 7.879K (7879) - ProbeTime: 1.46ms - ProbeWhenBuildSideOutputTime: 14.868us - ProbeWhenProbeSideOutputTime: 325.612us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 191.307us - ProjectionTime: 240.748us - RowsProduced: 7.879K (7879) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 109.512us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 640.00 KB - OpenTime: 813ns - ProjectionTime: 0ns - RowsProduced: 7.879K (7879) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 302.539ms PipelineXTask (index=3):(Active: 3.57ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.917ms - CloseTime: 23.986us - GetBlockTime: 1.175ms - OpenTime: 8.71us - PrepareTime: 101.704us - SinkTime: 1.679ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.20ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.377ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.801us - CompressTime: 0ns - ExecTime: 1.749ms - InputRows: 8.069K (8069) - LocalBytesSent: 472.71 KB - LocalSendTime: 77.256us - LocalSentRows: 8.069K (8069) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 61.338us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.069K (8069) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.115ms - SplitBlockHashComputeTime: 271.745us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 10.641us - ExecTime: 1.178ms - InitProbeSideTime: 325.509us - JoinFilterTimer: 414ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.746us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.44us - ProbeFindNextTime: 0ns - ProbeRows: 8.069K (8069) - ProbeTime: 878.864us - ProbeWhenBuildSideOutputTime: 13.996us - ProbeWhenProbeSideOutputTime: 311.715us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 168.485us - ProjectionTime: 263.821us - RowsProduced: 8.069K (8069) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 13.585us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 638ns - ProjectionTime: 0ns - RowsProduced: 8.069K (8069) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 361.458ms PipelineXTask (index=6):(Active: 3.71ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.882ms - CloseTime: 21.877us - GetBlockTime: 1.286ms - OpenTime: 7.372us - PrepareTime: 137.477us - SinkTime: 1.529ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.20ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.772ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.58us - CompressTime: 0ns - ExecTime: 1.613ms - InputRows: 8.002K (8002) - LocalBytesSent: 468.79 KB - LocalSendTime: 58.557us - LocalSentRows: 8.002K (8002) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 74.854us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.002K (8002) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.13ms - SplitBlockHashComputeTime: 263.404us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 9.447us - ExecTime: 1.289ms - InitProbeSideTime: 333.722us - JoinFilterTimer: 450ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.491us - ProbeFindNextTime: 0ns - ProbeRows: 8.002K (8002) - ProbeTime: 915.662us - ProbeWhenBuildSideOutputTime: 15.603us - ProbeWhenProbeSideOutputTime: 343.769us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 164.307us - ProjectionTime: 342.69us - RowsProduced: 8.002K (8002) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 11.690us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 1.98us - ProjectionTime: 0ns - RowsProduced: 8.002K (8002) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 346.320ms PipelineXTask (index=9):(Active: 2.399ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.236ms - CloseTime: 31.77us - GetBlockTime: 989.197us - OpenTime: 3.957us - PrepareTime: 124.19us - SinkTime: 1.192ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.884ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.364us - CompressTime: 0ns - ExecTime: 1.267ms - InputRows: 7.828K (7828) - LocalBytesSent: 458.61 KB - LocalSendTime: 93.956us - LocalSentRows: 7.828K (7828) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 66.149us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.828K (7828) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 645.924us - SplitBlockHashComputeTime: 213.295us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 16.529us - ExecTime: 984.212us - InitProbeSideTime: 248.75us - JoinFilterTimer: 338ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.975us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.1us - ProbeFindNextTime: 0ns - ProbeRows: 7.828K (7828) - ProbeTime: 703.467us - ProbeWhenBuildSideOutputTime: 10.984us - ProbeWhenProbeSideOutputTime: 254.417us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 136.57us - ProjectionTime: 242.504us - RowsProduced: 7.828K (7828) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 19.228us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 718ns - ProjectionTime: 0ns - RowsProduced: 7.828K (7828) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 328.839ms PipelineXTask (index=12):(Active: 3.365ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.183ms - CloseTime: 23.876us - GetBlockTime: 1.531ms - OpenTime: 3.396us - PrepareTime: 150.139us - SinkTime: 1.612ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.332ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.225ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.40us - CompressTime: 0ns - ExecTime: 1.708ms - InputRows: 7.866K (7866) - LocalBytesSent: 460.87 KB - LocalSendTime: 40.687us - LocalSentRows: 7.866K (7866) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 90.377us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.866K (7866) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.161ms - SplitBlockHashComputeTime: 238.629us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 14.855us - ExecTime: 1.520ms - InitProbeSideTime: 464.633us - JoinFilterTimer: 385ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.55us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.485us - ProbeFindNextTime: 0ns - ProbeRows: 7.866K (7866) - ProbeTime: 1.161ms - ProbeWhenBuildSideOutputTime: 176.646us - ProbeWhenProbeSideOutputTime: 346.904us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 124.52us - ProjectionTime: 323.372us - RowsProduced: 7.866K (7866) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 21.235us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 783ns - ProjectionTime: 0ns - RowsProduced: 7.866K (7866) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.664ms PipelineXTask (index=15):(Active: 2.839ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.669ms - CloseTime: 27.629us - GetBlockTime: 1.21ms - OpenTime: 5.300us - PrepareTime: 129.934us - SinkTime: 1.603ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.800ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.424ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.231us - CompressTime: 0ns - ExecTime: 1.683ms - InputRows: 6.112K (6112) - LocalBytesSent: 358.08 KB - LocalSendTime: 57.205us - LocalSentRows: 6.112K (6112) - MemoryUsage: - PeakMemoryUsage: 571.00 KB - MergeBlockTime: 0ns - OpenTime: 72.221us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6.112K (6112) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.189ms - SplitBlockHashComputeTime: 201.202us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 17.100us - ExecTime: 1.34ms - InitProbeSideTime: 247.718us - JoinFilterTimer: 13.795us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.708us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.643us - ProbeFindNextTime: 0ns - ProbeRows: 6.112K (6112) - ProbeTime: 758.463us - ProbeWhenBuildSideOutputTime: 10.55us - ProbeWhenProbeSideOutputTime: 290.949us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 142.676us - ProjectionTime: 236.509us - RowsProduced: 6.112K (6112) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 15.349us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 5.882us - ProjectionTime: 0ns - RowsProduced: 6.112K (6112) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 360.72ms PipelineXTask (index=18):(Active: 1.48ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 864.654us - CloseTime: 29.367us - GetBlockTime: 349.150us - OpenTime: 9.285us - PrepareTime: 141.346us - SinkTime: 473.41us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.54ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.586us - CompressTime: 0ns - ExecTime: 573.19us - InputRows: 2.502K (2502) - LocalBytesSent: 146.58 KB - LocalSendTime: 89.609us - LocalSentRows: 2.502K (2502) - MemoryUsage: - PeakMemoryUsage: 195.25 KB - MergeBlockTime: 0ns - OpenTime: 91.439us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.502K (2502) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 202.92us - SplitBlockHashComputeTime: 77.10us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 9.870us - ExecTime: 372.408us - InitProbeSideTime: 90.607us - JoinFilterTimer: 213ns - MemoryUsage: - PeakMemoryUsage: 44.00 KB - ProbeKeyArena: 44.00 KB - OpenTime: 24.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.200us - ProbeFindNextTime: 0ns - ProbeRows: 2.502K (2502) - ProbeTime: 234.61us - ProbeWhenBuildSideOutputTime: 22.529us - ProbeWhenProbeSideOutputTime: 47.80us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.237us - ProjectionTime: 95.435us - RowsProduced: 2.502K (2502) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 5.701us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 228.00 KB - OpenTime: 847ns - ProjectionTime: 0ns - RowsProduced: 2.502K (2502) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 422.644ms PipelineXTask (index=21):(Active: 384.924us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 142.147us - CloseTime: 19.41us - GetBlockTime: 20.170us - OpenTime: 3.336us - PrepareTime: 215.142us - SinkTime: 103.179us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 359.918us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.409ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.1us - CompressTime: 0ns - ExecTime: 268.764us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 52.298us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 153.101us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 558ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.116us - ExecTime: 30.504us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.824us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.466us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.314us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.545us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 848ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 422.29ms PipelineXTask (index=24):(Active: 288.525us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 89.743us - CloseTime: 12.204us - GetBlockTime: 19.249us - OpenTime: 2.859us - PrepareTime: 179.234us - SinkTime: 51.738us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 269.754us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.204ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.519us - CompressTime: 0ns - ExecTime: 167.575us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.411us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 107.469us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 265ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.302us - ExecTime: 31.610us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.302us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 1.688us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.70us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.24us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.168us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 423.403ms PipelineXTask (index=27):(Active: 332.387us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 135.421us - CloseTime: 11.125us - GetBlockTime: 12.628us - OpenTime: 24.615us - PrepareTime: 153.819us - SinkTime: 78.328us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 312.780us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.420ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.621us - CompressTime: 0ns - ExecTime: 175.67us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 40.482us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 89.386us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 413ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.682us - ExecTime: 30.386us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.573us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.80us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.625us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.776us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.622us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 433.621ms PipelineXTask (index=30):(Active: 379.544us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 154.382us - CloseTime: 20.586us - GetBlockTime: 25.835us - OpenTime: 3.920us - PrepareTime: 194.265us - SinkTime: 102.898us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 350.852us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.406ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.966us - CompressTime: 0ns - ExecTime: 193.818us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.629us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 77.420us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 600ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.540us - ExecTime: 93.981us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 70.240us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.930us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.432us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 5.400us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 896ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 411.619ms PipelineXTask (index=33):(Active: 224.648us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 90.768us - CloseTime: 17.126us - GetBlockTime: 15.468us - OpenTime: 2.740us - PrepareTime: 110.269us - SinkTime: 59.958us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 202.408us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.401ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.948us - CompressTime: 0ns - ExecTime: 140.233us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.305us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.15us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 300ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.765us - ExecTime: 26.603us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.661us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.689us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.105us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.528us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 632ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 422.166ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 929.713us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 411.225us - CloseTime: 77.300us - GetBlockTime: 56.843us - OpenTime: 297.607us - PrepareTime: 139.18us - SinkTime: 37.753us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 710.701us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.21ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 36.964us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.129us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 37.379us - BlocksProduced: 0 - CloseTime: 73.113us - ExecTime: 100.156ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 386.179us - ProcessConjunctTime: 137.408us - ProjectionTime: 1.406us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.241ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 99.639ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [4.468us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [99.241ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 341.676us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 186ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 396.451us - ScannerCtxSchedTime: 99.239ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.278us - ScannerInitTime: 109.750us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 672ns - BlockConditionsFilteredBloomFilterTime: 1.420us - BlockConditionsFilteredDictTime: 108.16us - BlockConditionsFilteredTime: 139.411us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 24.699us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.720us - BlockInitTime: 179.804us - BlockLoadTime: 212.380us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 3.915us - IOTimer: 0ns - InvertedIndexFilterTime: 1.839us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 1.169ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 487.725us - CloseTime: 43.330us - GetBlockTime: 25.771us - OpenTime: 415.914us - PrepareTime: 214.264us - SinkTime: 13.141us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.654ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.96us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.127us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 49.781us - BlocksProduced: 0 - CloseTime: 41.343us - ExecTime: 151.529ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 518.412us - ProcessConjunctTime: 235.631us - ProjectionTime: 1.424us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 145.799ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 150.943ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.065us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [145.799ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.68ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 101ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.129ms - ScannerCtxSchedTime: 145.796ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.676us - ScannerInitTime: 107.642us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 2.174us - BlockConditionsFilteredBloomFilterTime: 9.217us - BlockConditionsFilteredDictTime: 167.709us - BlockConditionsFilteredTime: 268.913us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 70.682us - BlockInitSeekCount: 37 - BlockInitSeekTime: 317.369us - BlockInitTime: 688.961us - BlockLoadTime: 4.562ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 48.156us - FirstReadSeekCount: 441 - FirstReadSeekTime: 118.963us - FirstReadTime: 2.245ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.782us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 35.147us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 43.795us - OutputIndexResultColumnTimer: 497ns - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 95.745K (95745) - RowsShortCircuitPredInput: 95.75K (95750) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 41.23us - ShortPredEvalTime: 385.387us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 750.820us PipelineXTask (index=7):(Active: 1.405ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 619.723us - CloseTime: 47.780us - GetBlockTime: 43.162us - OpenTime: 526.666us - PrepareTime: 199.606us - SinkTime: 27.498us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.346ms - WaitBfTime: 9.957ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.741ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.518us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.162us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 64.313us - BlocksProduced: 0 - CloseTime: 45.163us - ExecTime: 166.666ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 659.929us - ProcessConjunctTime: 284.402us - ProjectionTime: 1.421us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 150.695ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 165.918ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.569us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [150.695ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.169ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.214ms - ScannerCtxSchedTime: 150.693ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.581us - ScannerInitTime: 126.395us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.138us - BlockConditionsFilteredBloomFilterTime: 3.137us - BlockConditionsFilteredDictTime: 57.230us - BlockConditionsFilteredTime: 148.18us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 70.524us - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.39us - BlockInitTime: 216.835us - BlockLoadTime: 14.810ms - BlocksLoad: 367 - CachedPagesNum: 461 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.710ms - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 192.689us - FirstReadTime: 5.619ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.347us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.573ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 567.277us - OutputIndexResultColumnTimer: 25.364us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 328.372K (328372) - RowsShortCircuitPredInput: 340.087K (340087) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.801ms - ShortPredEvalTime: 776.496us - TotalPagesNum: 461 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.42ms PipelineXTask (index=10):(Active: 1.4ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 389.874us - CloseTime: 47.328us - GetBlockTime: 44.606us - OpenTime: 315.197us - PrepareTime: 244.440us - SinkTime: 14.119us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 950.220us - WaitBfTime: 10.816ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.660ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.938us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.40us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.447us - BlocksProduced: 0 - CloseTime: 44.746us - ExecTime: 190.829ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 492.88us - ProcessConjunctTime: 183.928us - ProjectionTime: 2.390us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 165.198ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 190.245ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [8.904us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [165.198ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.916ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 97ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.6ms - ScannerCtxSchedTime: 165.192ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.688us - ScannerInitTime: 75.762us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 2.123us - BlockConditionsFilteredBloomFilterTime: 10.184us - BlockConditionsFilteredDictTime: 105.103us - BlockConditionsFilteredTime: 232.795us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 87.101us - BlockInitSeekCount: 26 - BlockInitSeekTime: 29.103us - BlockInitTime: 348.246us - BlockLoadTime: 24.315ms - BlocksLoad: 405 - CachedPagesNum: 509 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.514ms - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 269.712us - FirstReadTime: 7.829ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.301us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.675ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.203ms - OutputIndexResultColumnTimer: 48.228us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 324.614K (324614) - RowsShortCircuitPredInput: 343.85K (343850) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.37ms - ShortPredEvalTime: 1.494ms - TotalPagesNum: 509 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.794ms PipelineXTask (index=13):(Active: 776.230us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 319.985us - CloseTime: 46.15us - GetBlockTime: 50.137us - OpenTime: 226.93us - PrepareTime: 176.847us - SinkTime: 24.251us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 721.461us - WaitBfTime: 3.333ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.560ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.308us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.390us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 27.853us - BlocksProduced: 0 - CloseTime: 42.866us - ExecTime: 123.278ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 333.796us - ProcessConjunctTime: 140.268us - ProjectionTime: 1.456us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 105.878ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 122.851ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [5.602us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [105.878ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 16.894ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 76ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.943ms - ScannerCtxSchedTime: 105.876ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.212us - ScannerInitTime: 44.415us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 1.601us - BlockConditionsFilteredBloomFilterTime: 11.977us - BlockConditionsFilteredDictTime: 57.133us - BlockConditionsFilteredTime: 178.814us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 88.367us - BlockInitSeekCount: 25 - BlockInitSeekTime: 23.9us - BlockInitTime: 269.518us - BlockLoadTime: 16.439ms - BlocksLoad: 384 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.373ms - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 135.234us - FirstReadTime: 5.281ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.34us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.24ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 866.799us - OutputIndexResultColumnTimer: 19.606us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 458.075K (458075) - RowsShortCircuitPredInput: 500.734K (500734) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.228ms - ShortPredEvalTime: 1.230ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.218ms PipelineXTask (index=16):(Active: 807.530us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 324.612us - CloseTime: 43.760us - GetBlockTime: 13.854us - OpenTime: 277.969us - PrepareTime: 154.33us - SinkTime: 6.68us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 756.421us - WaitBfTime: 11.415ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.452ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.542us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.994us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.440us - BlocksProduced: 0 - CloseTime: 42.682us - ExecTime: 192.566ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 358.289us - ProcessConjunctTime: 156.411us - ProjectionTime: 1.405us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 173.647ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 192.150ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [5.602us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [173.647ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.407ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 157ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.481ms - ScannerCtxSchedTime: 173.645ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.363us - ScannerInitTime: 72.422us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 1.936us - BlockConditionsFilteredBloomFilterTime: 14.42us - BlockConditionsFilteredDictTime: 216.122us - BlockConditionsFilteredTime: 359.791us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 105.856us - BlockInitSeekCount: 31 - BlockInitSeekTime: 31.161us - BlockInitTime: 484.150us - BlockLoadTime: 17.778ms - BlocksLoad: 410 - CachedPagesNum: 516 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.103ms - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 182.62us - FirstReadTime: 6.827ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.584us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.831ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 743.780us - OutputIndexResultColumnTimer: 24.201us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 460.717K (460717) - RowsShortCircuitPredInput: 480.081K (480081) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.39ms - ShortPredEvalTime: 1.123ms - TotalPagesNum: 516 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.352ms PipelineXTask (index=19):(Active: 801.721us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 316.784us - CloseTime: 29.854us - GetBlockTime: 17.380us - OpenTime: 277.904us - PrepareTime: 170.439us - SinkTime: 4.820us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 764.275us - WaitBfTime: 11.41ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.622ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.820us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.392us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.857us - BlocksProduced: 0 - CloseTime: 28.759us - ExecTime: 194.962ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 378.912us - ProcessConjunctTime: 145.672us - ProjectionTime: 3.406us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 169.724ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.534ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [10.256us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [169.724ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.729ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 96ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.364ms - ScannerCtxSchedTime: 169.722ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.532us - ScannerInitTime: 85.541us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 2.99us - BlockConditionsFilteredBloomFilterTime: 5.710us - BlockConditionsFilteredDictTime: 125.790us - BlockConditionsFilteredTime: 245.328us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 91.446us - BlockInitSeekCount: 35 - BlockInitSeekTime: 31.425us - BlockInitTime: 373.548us - BlockLoadTime: 24.198ms - BlocksLoad: 345 - CachedPagesNum: 436 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.117ms - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 158.811us - FirstReadTime: 5.211ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.162us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.915ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.503ms - OutputIndexResultColumnTimer: 24.182us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 530.951K (530951) - RowsShortCircuitPredInput: 659.979K (659979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.127ms - ShortPredEvalTime: 2.639ms - TotalPagesNum: 436 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.202ms PipelineXTask (index=22):(Active: 22.255ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.63ms - CloseTime: 39.772us - GetBlockTime: 34.480us - OpenTime: 10.999ms - PrepareTime: 142.255us - SinkTime: 6.814us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.279ms - WaitBfTime: 11.522ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.230ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.323us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.83us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 54.360us - BlocksProduced: 0 - CloseTime: 37.642us - ExecTime: 285.395ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 11.80ms - ProcessConjunctTime: 296.35us - ProjectionTime: 1.408us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 224.637ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 274.242ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.317us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [224.637ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 49.531ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 142ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.591ms - ScannerCtxSchedTime: 224.635ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.693us - ScannerInitTime: 10.605ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 2.307us - BlockConditionsFilteredBloomFilterTime: 7.36us - BlockConditionsFilteredDictTime: 187.933us - BlockConditionsFilteredTime: 312.149us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 89.821us - BlockInitSeekCount: 33 - BlockInitSeekTime: 35.963us - BlockInitTime: 468.444us - BlockLoadTime: 48.906ms - BlocksLoad: 382 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.871ms - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 198.943us - FirstReadTime: 18.838ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.387us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 15.836ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.846ms - OutputIndexResultColumnTimer: 34.735us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 578.913K (578913) - RowsShortCircuitPredInput: 674.788K (674788) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 16.83ms - ShortPredEvalTime: 2.227ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.435ms PipelineXTask (index=25):(Active: 994.592us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 444.474us - CloseTime: 52.380us - GetBlockTime: 50.783us - OpenTime: 327.558us - PrepareTime: 162.199us - SinkTime: 31.434us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 928.160us - WaitBfTime: 23.650ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.345ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 31.976us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.190us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.262us - BlocksProduced: 0 - CloseTime: 50.178us - ExecTime: 400.706ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 424.625us - ProcessConjunctTime: 178.241us - ProjectionTime: 1.579us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 197.44ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 400.180ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [7.492us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [197.044ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 203.28ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 142ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.545ms - ScannerCtxSchedTime: 197.42ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.113us - ScannerInitTime: 86.812us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 2.826us - BlockConditionsFilteredBloomFilterTime: 7.924us - BlockConditionsFilteredDictTime: 130.55us - BlockConditionsFilteredTime: 265.224us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 99.56us - BlockInitSeekCount: 25 - BlockInitSeekTime: 524.870us - BlockInitTime: 975.105us - BlockLoadTime: 202.463ms - BlocksLoad: 260 - CachedPagesNum: 332 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 42.870ms - FirstReadSeekCount: 771 - FirstReadSeekTime: 158.20us - FirstReadTime: 145.92ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.177us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.220ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.0ms - OutputIndexResultColumnTimer: 33.680us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 466.305K (466305) - RowsShortCircuitPredInput: 597.567K (597567) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.543ms - ShortPredEvalTime: 3.209ms - TotalPagesNum: 332 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.336ms PipelineXTask (index=28):(Active: 914.384us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 389.908us - CloseTime: 43.397us - GetBlockTime: 37.769us - OpenTime: 316.979us - PrepareTime: 153.580us - SinkTime: 9.683us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 858.730us - WaitBfTime: 59.172us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.490ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.77us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.98us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.10us - BlocksProduced: 0 - CloseTime: 40.745us - ExecTime: 183.11ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 407.340us - ProcessConjunctTime: 185.390us - ProjectionTime: 1.531us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 155.995ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 182.524ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.643us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [155.995ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.428ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 114ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.514ms - ScannerCtxSchedTime: 155.994ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.842us - ScannerInitTime: 73.21us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 1.799us - BlockConditionsFilteredBloomFilterTime: 5.786us - BlockConditionsFilteredDictTime: 74.890us - BlockConditionsFilteredTime: 185.519us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 80.548us - BlockInitSeekCount: 26 - BlockInitSeekTime: 237.524us - BlockInitTime: 510.582us - BlockLoadTime: 25.929ms - BlocksLoad: 291 - CachedPagesNum: 372 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 8.518ms - FirstReadSeekCount: 864 - FirstReadSeekTime: 142.213us - FirstReadTime: 4.984ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.614us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.60ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.650ms - OutputIndexResultColumnTimer: 22.583us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 503.143K (503143) - RowsShortCircuitPredInput: 674.15K (674150) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.256ms - ShortPredEvalTime: 2.998ms - TotalPagesNum: 372 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.61ms PipelineXTask (index=31):(Active: 1.220ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 566.953us - CloseTime: 68.606us - GetBlockTime: 75.172us - OpenTime: 413.351us - PrepareTime: 162.819us - SinkTime: 50.372us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.143ms - WaitBfTime: 10.445ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.356ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 50.597us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.208us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 55.913us - BlocksProduced: 6 - CloseTime: 66.668us - ExecTime: 312.925ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 490.372us - ProcessConjunctTime: 274.18us - ProjectionTime: 486.692us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 159.14ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 311.797ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [148.370ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [159.014ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 148.86ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.806ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 303ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.563ms - ScannerCtxSchedTime: 159.12ms - ScannerFilterTime: 51.617us - ScannerGetBlockTime: 148.282ms - ScannerInitTime: 61.327us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 980ns - BlockConditionsFilteredBloomFilterTime: 3.212us - BlockConditionsFilteredDictTime: 74.440us - BlockConditionsFilteredTime: 125.954us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.16us - BlockInitSeekCount: 9 - BlockInitSeekTime: 12.13us - BlockInitTime: 197.198us - BlockLoadTime: 149.696ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.719ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 63.856us - FirstReadTime: 1.300ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.562us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 144.215ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 571.532us - OutputIndexResultColumnTimer: 6.169us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 169.11K (169110) - RowsShortCircuitPredInput: 191.383K (191383) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 678.810us - ShortPredEvalTime: 697.853us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 552.97us PipelineXTask (index=34):(Active: 1.235ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 544.775us - CloseTime: 42.680us - GetBlockTime: 70.169us - OpenTime: 382.48us - PrepareTime: 255.858us - SinkTime: 70.312us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 10.817ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.641ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 70.138us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.150us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 46, type = minmax), RuntimeFilter: (id = 47, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.470us - BlocksProduced: 7 - CloseTime: 40.781us - ExecTime: 185.381ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 491.114us - ProcessConjunctTime: 247.772us - ProjectionTime: 811.849us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 166.946ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.958ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 46, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 47, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [11.011ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [166.946ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.692ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.470ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 205ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.989ms - ScannerCtxSchedTime: 166.944ms - ScannerFilterTime: 65.696us - ScannerGetBlockTime: 10.902ms - ScannerInitTime: 69.689us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 2.854us - BlockConditionsFilteredBloomFilterTime: 3.100us - BlockConditionsFilteredDictTime: 73.228us - BlockConditionsFilteredTime: 125.478us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.864us - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.182us - BlockInitTime: 169.690us - BlockLoadTime: 11.946ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.784ms - FirstReadSeekCount: 180 - FirstReadSeekTime: 72.691us - FirstReadTime: 1.295ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.490us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.569ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 794.803us - OutputIndexResultColumnTimer: 11.709us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 174.885K (174885) - RowsShortCircuitPredInput: 200.87K (200870) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 926.837us - ShortPredEvalTime: 940.688us - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 746.687us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 241.103us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 140.998us - CloseTime: 11.332us - GetBlockTime: 8.833us - OpenTime: 3.843us - PrepareTime: 80.146us - SinkTime: 105.613us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 222.41us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.44ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.265us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.979us - BuildTableInsertTime: 30.511us - BuildTableTime: 34.390us - CloseTime: 0ns - ExecTime: 123.110us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 18.161us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.446us - RuntimeFilterComputeTime: 22.418us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.893us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 20.257us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.635ms PipelineXTask (index=5):(Active: 130.597us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 52.360us - CloseTime: 12.214us - GetBlockTime: 0ns - OpenTime: 2.435us - PrepareTime: 60.233us - SinkTime: 31.233us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.719us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.455ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.999us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.130us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.157us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.812us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.941us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 109.528us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 30.40us - CloseTime: 7.966us - GetBlockTime: 0ns - OpenTime: 1.329us - PrepareTime: 64.68us - SinkTime: 20.676us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.464us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.683ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.728us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.2us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.561us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.784us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.731us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 92.65us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.944us - CloseTime: 4.523us - GetBlockTime: 0ns - OpenTime: 1.273us - PrepareTime: 60.320us - SinkTime: 14.117us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.701us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.788ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.854us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.648us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.823us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.495us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.133us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 85.885us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 15.144us - CloseTime: 2.771us - GetBlockTime: 0ns - OpenTime: 1.193us - PrepareTime: 63.637us - SinkTime: 8.817us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.282us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.847ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.958us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.913us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.84us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.319us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.776us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 151.737us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.152us - CloseTime: 8.388us - GetBlockTime: 0ns - OpenTime: 2.954us - PrepareTime: 86.346us - SinkTime: 19.283us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.321ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.895us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.672us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.896us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.78us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.340us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 71.85us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.819us - CloseTime: 3.262us - GetBlockTime: 0ns - OpenTime: 1.75us - PrepareTime: 49.870us - SinkTime: 7.626us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.92us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.888ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.992us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.235us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.408us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.782us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.40us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 94.301us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.381us - CloseTime: 4.856us - GetBlockTime: 0ns - OpenTime: 2.151us - PrepareTime: 57.338us - SinkTime: 12.489us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.315us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.373ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.451us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.866us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.951us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.675us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 95.890us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 19.302us - CloseTime: 3.803us - GetBlockTime: 0ns - OpenTime: 1.807us - PrepareTime: 67.840us - SinkTime: 11.570us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.180us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.240ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.56us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.370us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.863us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.350us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 125.370us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.820us - CloseTime: 12.296us - GetBlockTime: 0ns - OpenTime: 2.534us - PrepareTime: 63.330us - SinkTime: 25.953us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.747us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.869ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.675us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.981us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.882us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.513us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.60us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 84.755us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 16.331us - CloseTime: 5.8us - GetBlockTime: 0ns - OpenTime: 1.164us - PrepareTime: 59.330us - SinkTime: 9.564us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.997us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.702ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.223us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.499us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.493us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.714us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 82.589us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 16.904us - CloseTime: 3.819us - GetBlockTime: 0ns - OpenTime: 1.434us - PrepareTime: 57.466us - SinkTime: 9.715us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.791ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963141 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.363us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.517us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.10us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.432us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.871us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 95: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 649.556us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 267.15us - CloseTime: 57.223us - GetBlockTime: 55.946us - OpenTime: 166.123us - PrepareTime: 150.519us - SinkTime: 20.868us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 581.532us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 509.777us DATA_STREAM_SINK_OPERATOR (id=151,dst_id=151): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.720us - CompressTime: 0ns - ExecTime: 65.82us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 14.850us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.990us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=150. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 560ns - BlocksProduced: 1 - CloseTime: 37.985us - ExecTime: 1.314ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 236.362us - ProcessConjunctTime: 48.698us - ProjectionTime: 6.520us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 588.201us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 977.795us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [35.913us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [588.201us, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.55us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 267.496us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 266ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 401.988us - ScannerCtxSchedTime: 584.877us - ScannerFilterTime: 1.498us - ScannerGetBlockTime: 26.947us - ScannerInitTime: 75.575us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 474ns - BlockConditionsFilteredBloomFilterTime: 2.33us - BlockConditionsFilteredDictTime: 4.462us - BlockConditionsFilteredTime: 19.588us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.582us - BlockInitSeekCount: 6 - BlockInitSeekTime: 18.585us - BlockInitTime: 67.538us - BlockLoadTime: 138.53us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.449us - FirstReadTime: 7.80us - IOTimer: 0ns - InvertedIndexFilterTime: 1.951us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.437us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 9.496us - OutputIndexResultColumnTimer: 338ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 105ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.182us Fragment 96: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 22.953ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.833ms - CloseTime: 10.878us - GetBlockTime: 22.387ms - OpenTime: 1.212us - PrepareTime: 98.981us - SinkTime: 364.463us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.896ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.958ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.169us - CompressTime: 0ns - ExecTime: 386.991us - InputRows: 4.277K (4277) - LocalBytesSent: 309.07 KB - LocalSendTime: 328.665us - LocalSentRows: 4.277K (4277) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.402us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.277K (4277) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 493ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.311ms - GetResultsTime: 11.201ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 890.988us - HashTableSize: 163.478K (163478) - InsertKeysToColumnTime: 4.518ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.81us - ProjectionTime: 1.36ms - RowsProduced: 4.277K (4277) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s951ms PipelineXTask (index=2):(Active: 23.424ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.297ms - CloseTime: 15.95us - GetBlockTime: 22.862ms - OpenTime: 1.240us - PrepareTime: 103.40us - SinkTime: 354.878us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.378ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.582ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.877us - CompressTime: 0ns - ExecTime: 379.802us - InputRows: 4.367K (4367) - LocalBytesSent: 315.58 KB - LocalSendTime: 316.608us - LocalSentRows: 4.367K (4367) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.844us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.367K (4367) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 929ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.769ms - GetResultsTime: 11.400ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 995.813us - HashTableSize: 163.44K (163440) - InsertKeysToColumnTime: 4.522ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.212us - ProjectionTime: 1.109ms - RowsProduced: 4.367K (4367) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s11ms PipelineXTask (index=4):(Active: 21.999ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.853ms - CloseTime: 14.593us - GetBlockTime: 21.454ms - OpenTime: 960ns - PrepareTime: 122.490us - SinkTime: 329.386us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.957ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.823ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.846us - CompressTime: 0ns - ExecTime: 357.508us - InputRows: 4.452K (4452) - LocalBytesSent: 321.72 KB - LocalSendTime: 292.376us - LocalSentRows: 4.452K (4452) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 32.578us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.452K (4452) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 754ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.388ms - GetResultsTime: 10.579ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 924.329us - HashTableSize: 163.775K (163775) - InsertKeysToColumnTime: 4.225ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.113us - ProjectionTime: 943.31us - RowsProduced: 4.452K (4452) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s130ms PipelineXTask (index=6):(Active: 28.497ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 28.393ms - CloseTime: 23.962us - GetBlockTime: 27.947ms - OpenTime: 1.757us - PrepareTime: 72.233us - SinkTime: 358.619us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.167ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 63.554ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.402us - CompressTime: 0ns - ExecTime: 390.782us - InputRows: 4.403K (4403) - LocalBytesSent: 318.17 KB - LocalSendTime: 321.670us - LocalSentRows: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.151us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.403K (4403) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 764ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.864ms - GetResultsTime: 12.501ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.198ms - HashTableSize: 163.489K (163489) - InsertKeysToColumnTime: 5.151ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.555us - ProjectionTime: 1.38ms - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s941ms PipelineXTask (index=8):(Active: 45.496ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.376ms - CloseTime: 15.325us - GetBlockTime: 44.891ms - OpenTime: 2.57us - PrepareTime: 96.801us - SinkTime: 393.88us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.500ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.797ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.742us - CompressTime: 0ns - ExecTime: 416.753us - InputRows: 4.375K (4375) - LocalBytesSent: 316.16 KB - LocalSendTime: 344.953us - LocalSentRows: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.774us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.375K (4375) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 760ns - DeserializeAndMergeTime: 0ns - ExecTime: 44.798ms - GetResultsTime: 24.97ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.365ms - HashTableSize: 163.641K (163641) - InsertKeysToColumnTime: 5.492ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 21.904us - ProjectionTime: 1.261ms - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s933ms PipelineXTask (index=10):(Active: 23.239ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.141ms - CloseTime: 15.62us - GetBlockTime: 22.664ms - OpenTime: 1.793us - PrepareTime: 73.852us - SinkTime: 391.49us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.529ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.503us - CompressTime: 0ns - ExecTime: 409.31us - InputRows: 4.236K (4236) - LocalBytesSent: 306.11 KB - LocalSendTime: 346.384us - LocalSentRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.946us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.236K (4236) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 813ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.579ms - GetResultsTime: 11.519ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.20ms - HashTableSize: 163.705K (163705) - InsertKeysToColumnTime: 4.467ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.254us - ProjectionTime: 1.9ms - RowsProduced: 4.236K (4236) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s976ms PipelineXTask (index=12):(Active: 22.768ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.652ms - CloseTime: 17.380us - GetBlockTime: 22.257ms - OpenTime: 1.180us - PrepareTime: 90.968us - SinkTime: 316.828us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.699ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.293ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.85us - CompressTime: 0ns - ExecTime: 342.299us - InputRows: 4.533K (4533) - LocalBytesSent: 327.55 KB - LocalSendTime: 281.703us - LocalSentRows: 4.533K (4533) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.224us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.533K (4533) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 927ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.190ms - GetResultsTime: 11.271ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 988.342us - HashTableSize: 163.983K (163983) - InsertKeysToColumnTime: 4.351ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.772us - ProjectionTime: 969.664us - RowsProduced: 4.533K (4533) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s987ms PipelineXTask (index=14):(Active: 22.606ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.450ms - CloseTime: 18.42us - GetBlockTime: 22.50ms - OpenTime: 738ns - PrepareTime: 130.350us - SinkTime: 325.232us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.579ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.503ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.160us - CompressTime: 0ns - ExecTime: 389.461us - InputRows: 4.332K (4332) - LocalBytesSent: 313.04 KB - LocalSendTime: 291.654us - LocalSentRows: 4.332K (4332) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.458us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.332K (4332) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.68us - DeserializeAndMergeTime: 0ns - ExecTime: 21.964ms - GetResultsTime: 10.960ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 910.455us - HashTableSize: 163.426K (163426) - InsertKeysToColumnTime: 4.302ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.512us - ProjectionTime: 1.55ms - RowsProduced: 4.332K (4332) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s940ms PipelineXTask (index=16):(Active: 48.363ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 48.262ms - CloseTime: 15.271us - GetBlockTime: 47.822ms - OpenTime: 578ns - PrepareTime: 79.714us - SinkTime: 369.998us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.345ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.45ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.548us - CompressTime: 0ns - ExecTime: 397.417us - InputRows: 4.45K (4450) - LocalBytesSent: 321.57 KB - LocalSendTime: 334.878us - LocalSentRows: 4.45K (4450) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.922us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.45K (4450) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 948ns - DeserializeAndMergeTime: 0ns - ExecTime: 47.734ms - GetResultsTime: 23.997ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 900.670us - HashTableSize: 162.829K (162829) - InsertKeysToColumnTime: 17.433ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.687us - ProjectionTime: 995.957us - RowsProduced: 4.45K (4450) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s993ms PipelineXTask (index=18):(Active: 24.475ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.366ms - CloseTime: 16.960us - GetBlockTime: 23.920ms - OpenTime: 1.523us - PrepareTime: 85.275us - SinkTime: 367.872us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.422ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.41ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.213us - CompressTime: 0ns - ExecTime: 397.555us - InputRows: 4.358K (4358) - LocalBytesSent: 314.92 KB - LocalSendTime: 332.159us - LocalSentRows: 4.358K (4358) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.358K (4358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 870ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.844ms - GetResultsTime: 12.683ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.242ms - HashTableSize: 163.825K (163825) - InsertKeysToColumnTime: 5.350ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 16.394us - ProjectionTime: 1.6ms - RowsProduced: 4.358K (4358) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s972ms PipelineXTask (index=20):(Active: 23.666ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.556ms - CloseTime: 20.376us - GetBlockTime: 23.61ms - OpenTime: 1.213us - PrepareTime: 81.280us - SinkTime: 411.83us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.618ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.298ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.301us - CompressTime: 0ns - ExecTime: 432.438us - InputRows: 4.435K (4435) - LocalBytesSent: 320.49 KB - LocalSendTime: 368.35us - LocalSentRows: 4.435K (4435) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.912us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.435K (4435) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 823ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.957ms - GetResultsTime: 11.439ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 927.151us - HashTableSize: 163.547K (163547) - InsertKeysToColumnTime: 4.462ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.563us - ProjectionTime: 1.144ms - RowsProduced: 4.435K (4435) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s937ms PipelineXTask (index=22):(Active: 23.52ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.925ms - CloseTime: 12.550us - GetBlockTime: 22.425ms - OpenTime: 819ns - PrepareTime: 107.832us - SinkTime: 411.504us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.5ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.99ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.848us - CompressTime: 0ns - ExecTime: 428.775us - InputRows: 4.369K (4369) - LocalBytesSent: 315.71 KB - LocalSendTime: 377.116us - LocalSentRows: 4.369K (4369) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 19.715us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.369K (4369) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 587ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.349ms - GetResultsTime: 11.119ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 906.743us - HashTableSize: 163.902K (163902) - InsertKeysToColumnTime: 4.471ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.960us - ProjectionTime: 1.55ms - RowsProduced: 4.369K (4369) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s950ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 153.152ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 153.55ms - CloseTime: 24.548us - GetBlockTime: 1.211ms - OpenTime: 2.703us - PrepareTime: 63.333us - SinkTime: 151.537ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.989ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 880.64ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.917us - DeserializeAndMergeTime: 24.59ms - ExecTime: 151.537ms - ExprTime: 0ns - HashTableComputeTime: 126.951ms - HashTableEmplaceTime: 119.254ms - HashTableInputCount: 163.478K (163478) - InputRows: 163.478K (163478) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 151.416ms - OpenTime: 22.732us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 15.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.177ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.30 MB - MemoryUsage: - Blocks: 3.52 MB - PeakMemoryUsage: 3.52 MB - OpenTime: 15.149us - ProjectionTime: 0ns - RowsProduced: 163.478K (163478) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s919ms PipelineXTask (index=3):(Active: 124.980ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 124.861ms - CloseTime: 22.480us - GetBlockTime: 1.377ms - OpenTime: 3.449us - PrepareTime: 85.870us - SinkTime: 123.253ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.858ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s544ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.8us - DeserializeAndMergeTime: 3.306ms - ExecTime: 123.245ms - ExprTime: 0ns - HashTableComputeTime: 119.438ms - HashTableEmplaceTime: 112.53ms - HashTableInputCount: 163.44K (163440) - InputRows: 163.44K (163440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 123.150ms - OpenTime: 15.694us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 13.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.408ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.19 MB - MemoryUsage: - Blocks: 9.00 MB - PeakMemoryUsage: 9.00 MB - OpenTime: 53.747us - ProjectionTime: 0ns - RowsProduced: 163.44K (163440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s342ms PipelineXTask (index=5):(Active: 128.108ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 128.17ms - CloseTime: 24.260us - GetBlockTime: 1.455ms - OpenTime: 3.360us - PrepareTime: 57.413us - SinkTime: 126.287ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s596ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.445us - DeserializeAndMergeTime: 3.768ms - ExecTime: 126.284ms - ExprTime: 0ns - HashTableComputeTime: 122.51ms - HashTableEmplaceTime: 114.445ms - HashTableInputCount: 163.775K (163775) - InputRows: 163.775K (163775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 126.163ms - OpenTime: 18.924us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 15.131us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.428ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.13 MB - MemoryUsage: - Blocks: 4.00 MB - PeakMemoryUsage: 4.00 MB - OpenTime: 21.977us - ProjectionTime: 0ns - RowsProduced: 163.775K (163775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s407ms PipelineXTask (index=7):(Active: 133.434ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 133.311ms - CloseTime: 20.75us - GetBlockTime: 1.248ms - OpenTime: 2.994us - PrepareTime: 90.923us - SinkTime: 131.809ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.824ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s266ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 5.776us - DeserializeAndMergeTime: 3.525ms - ExecTime: 131.844ms - ExprTime: 0ns - HashTableComputeTime: 127.802ms - HashTableEmplaceTime: 120.240ms - HashTableInputCount: 163.489K (163489) - InputRows: 163.489K (163489) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 131.687ms - OpenTime: 55.426us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 12.868us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.226ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.95 MB - MemoryUsage: - Blocks: 3.62 MB - PeakMemoryUsage: 3.62 MB - OpenTime: 17.757us - ProjectionTime: 0ns - RowsProduced: 163.489K (163489) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s545ms PipelineXTask (index=9):(Active: 152.960ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 152.876ms - CloseTime: 15.60us - GetBlockTime: 1.180ms - OpenTime: 3.331us - PrepareTime: 58.522us - SinkTime: 151.458ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.634ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s359ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 5.537us - DeserializeAndMergeTime: 3.528ms - ExecTime: 151.458ms - ExprTime: 0ns - HashTableComputeTime: 147.416ms - HashTableEmplaceTime: 140.293ms - HashTableInputCount: 163.641K (163641) - InputRows: 163.641K (163641) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 151.347ms - OpenTime: 19.698us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 8.190us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.173ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.82 MB - MemoryUsage: - Blocks: 3.81 MB - PeakMemoryUsage: 3.81 MB - OpenTime: 26.38us - ProjectionTime: 0ns - RowsProduced: 163.641K (163641) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s429ms PipelineXTask (index=11):(Active: 120.418ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 120.329ms - CloseTime: 28.276us - GetBlockTime: 1.220ms - OpenTime: 3.383us - PrepareTime: 51.172us - SinkTime: 118.767ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.410ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s624ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 20.842us - DeserializeAndMergeTime: 17.400ms - ExecTime: 118.779ms - ExprTime: 0ns - HashTableComputeTime: 100.828ms - HashTableEmplaceTime: 93.340ms - HashTableInputCount: 163.705K (163705) - InputRows: 163.705K (163705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 118.621ms - OpenTime: 24.386us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 6.730us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.182ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.08 MB - MemoryUsage: - Blocks: 2.84 MB - PeakMemoryUsage: 2.84 MB - OpenTime: 12.831us - ProjectionTime: 0ns - RowsProduced: 163.705K (163705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s236ms PipelineXTask (index=13):(Active: 191.249ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 191.158ms - CloseTime: 19.163us - GetBlockTime: 1.340ms - OpenTime: 3.754us - PrepareTime: 60.743us - SinkTime: 189.467ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.436ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s352ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 8.933us - DeserializeAndMergeTime: 4.357ms - ExecTime: 189.451ms - ExprTime: 0ns - HashTableComputeTime: 184.589ms - HashTableEmplaceTime: 134.567ms - HashTableInputCount: 163.983K (163983) - InputRows: 163.983K (163983) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 189.329ms - OpenTime: 23.951us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 8.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.318ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.36 MB - MemoryUsage: - Blocks: 3.56 MB - PeakMemoryUsage: 3.56 MB - OpenTime: 19.351us - ProjectionTime: 0ns - RowsProduced: 163.983K (163983) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s448ms PipelineXTask (index=15):(Active: 206.752ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 206.633ms - CloseTime: 35.587us - GetBlockTime: 1.102ms - OpenTime: 3.52us - PrepareTime: 73.383us - SinkTime: 205.226ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.215ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s26ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 6.464us - DeserializeAndMergeTime: 3.328ms - ExecTime: 205.230ms - ExprTime: 0ns - HashTableComputeTime: 201.475ms - HashTableEmplaceTime: 193.927ms - HashTableInputCount: 163.426K (163426) - InputRows: 163.426K (163426) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 205.122ms - OpenTime: 20.190us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 27.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.103ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.13 MB - MemoryUsage: - Blocks: 5.55 MB - PeakMemoryUsage: 5.55 MB - OpenTime: 16.801us - ProjectionTime: 0ns - RowsProduced: 163.426K (163426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s707ms PipelineXTask (index=17):(Active: 217.98ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 216.974ms - CloseTime: 21.282us - GetBlockTime: 13.857ms - OpenTime: 2.867us - PrepareTime: 91.420us - SinkTime: 202.824ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.702ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s275ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 11.158us - DeserializeAndMergeTime: 3.503ms - ExecTime: 202.848ms - ExprTime: 0ns - HashTableComputeTime: 198.831ms - HashTableEmplaceTime: 191.352ms - HashTableInputCount: 162.829K (162829) - InputRows: 162.829K (162829) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 202.711ms - OpenTime: 39.619us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 8.915us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.832ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.16 MB - MemoryUsage: - Blocks: 3.54 MB - PeakMemoryUsage: 3.54 MB - OpenTime: 16.140us - ProjectionTime: 0ns - RowsProduced: 162.829K (162829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s501ms PipelineXTask (index=19):(Active: 163.710ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 163.635ms - CloseTime: 21.351us - GetBlockTime: 1.401ms - OpenTime: 2.815us - PrepareTime: 44.585us - SinkTime: 161.923ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s592ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 10.337us - DeserializeAndMergeTime: 3.710ms - ExecTime: 161.920ms - ExprTime: 0ns - HashTableComputeTime: 157.744ms - HashTableEmplaceTime: 149.819ms - HashTableInputCount: 163.825K (163825) - InputRows: 163.825K (163825) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 161.813ms - OpenTime: 17.855us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 9.934us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.361ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.47 MB - MemoryUsage: - Blocks: 2.81 MB - PeakMemoryUsage: 2.81 MB - OpenTime: 13.329us - ProjectionTime: 0ns - RowsProduced: 163.825K (163825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s224ms PipelineXTask (index=21):(Active: 253.634ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 253.544ms - CloseTime: 18.136us - GetBlockTime: 1.211ms - OpenTime: 3.20us - PrepareTime: 60.355us - SinkTime: 252.33ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 95.873ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s253ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 3.998us - DeserializeAndMergeTime: 3.615ms - ExecTime: 252.38ms - ExprTime: 0ns - HashTableComputeTime: 247.945ms - HashTableEmplaceTime: 235.440ms - HashTableInputCount: 163.547K (163547) - InputRows: 163.547K (163547) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 251.909ms - OpenTime: 30.179us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 12.351us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.179ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.54 MB - MemoryUsage: - Blocks: 3.50 MB - PeakMemoryUsage: 3.50 MB - OpenTime: 16.288us - ProjectionTime: 0ns - RowsProduced: 163.547K (163547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s432ms PipelineXTask (index=23):(Active: 177.27ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 176.914ms - CloseTime: 21.548us - GetBlockTime: 1.468ms - OpenTime: 2.889us - PrepareTime: 82.852us - SinkTime: 175.178ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.676ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s575ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 9.277us - DeserializeAndMergeTime: 3.462ms - ExecTime: 175.207ms - ExprTime: 0ns - HashTableComputeTime: 171.221ms - HashTableEmplaceTime: 163.207ms - HashTableInputCount: 163.902K (163902) - InputRows: 163.902K (163902) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 175.63ms - OpenTime: 48.708us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 10.877us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.445ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.69 MB - MemoryUsage: - Blocks: 4.22 MB - PeakMemoryUsage: 4.22 MB - OpenTime: 18.933us - ProjectionTime: 0ns - RowsProduced: 163.902K (163902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s203ms Fragment 97: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 262.909ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 262.127ms - CloseTime: 581.603us - GetBlockTime: 206.72ms - OpenTime: 5.951us - PrepareTime: 181.717us - SinkTime: 55.330ms - GetBlockCounter: 88 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 99.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s512ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.757us - CompressTime: 0ns - ExecTime: 55.399ms - InputRows: 179.847K (179847) - LocalBytesSent: 12.06 MB - LocalSendTime: 606.606us - LocalSentRows: 179.847K (179847) - MemoryUsage: - PeakMemoryUsage: 19.47 MB - MergeBlockTime: 0ns - OpenTime: 88.275us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 179.847K (179847) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.133ms - SplitBlockHashComputeTime: 7.719ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 49 - BuildConvertToPartitionedTime: 0ns - BuildTime: 33.796ms - CloseTime: 537.430us - DeserializeAndMergeTime: 0ns - ExecTime: 39.501ms - ExprTime: 127.33us - GetResultsTime: 4.906ms - HashTableComputeTime: 23.51ms - HashTableEmplaceTime: 20.277ms - HashTableInputCount: 56.213K (56213) - HashTableIterateTime: 385.943us - HashTableSize: 56.213K (56213) - InsertKeysToColumnTime: 1.657ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 24.961us - ProjectionTime: 0ns - RowsProduced: 179.847K (179847) - SerializeDataTime: 10.707ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.942ms - StreamingAggTime: 9.898ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 51 - BuildOutputBlock: 0ns - CloseTime: 21.306us - ExecTime: 166.176ms - InitProbeSideTime: 3.526ms - JoinFilterTimer: 10.193us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 21.518us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.309us - ProbeFindNextTime: 0ns - ProbeRows: 179.847K (179847) - ProbeTime: 120.657ms - ProbeWhenBuildSideOutputTime: 550.577us - ProbeWhenProbeSideOutputTime: 5.600ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 109.275ms - ProjectionTime: 45.229ms - RowsProduced: 179.847K (179847) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 51 - CloseTime: 0ns - ExecTime: 510.838us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 2.56 MB - OpenTime: 691ns - ProjectionTime: 0ns - RowsProduced: 179.847K (179847) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 972.162ms PipelineXTask (index=5):(Active: 223.899ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 222.919ms - CloseTime: 753.270us - GetBlockTime: 119.450ms - OpenTime: 8.906us - PrepareTime: 209.148us - SinkTime: 102.901ms - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.107ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 975.316ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.96us - CompressTime: 0ns - ExecTime: 102.952ms - InputRows: 174.744K (174744) - LocalBytesSent: 11.69 MB - LocalSendTime: 518.688us - LocalSentRows: 174.744K (174744) - MemoryUsage: - PeakMemoryUsage: 19.75 MB - MergeBlockTime: 0ns - OpenTime: 66.18us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 174.744K (174744) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 71.520ms - SplitBlockHashComputeTime: 27.827ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 49 - BuildConvertToPartitionedTime: 0ns - BuildTime: 60.132ms - CloseTime: 706.400us - DeserializeAndMergeTime: 0ns - ExecTime: 77.385ms - ExprTime: 114.499us - GetResultsTime: 16.297ms - HashTableComputeTime: 50.398ms - HashTableEmplaceTime: 48.44ms - HashTableInputCount: 57.161K (57161) - HashTableIterateTime: 532.556us - HashTableSize: 57.161K (57161) - InsertKeysToColumnTime: 2.176ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 33.911us - ProjectionTime: 0ns - RowsProduced: 174.744K (174744) - SerializeDataTime: 20.710ms - SerializeKeyTime: 0ns - SerializeResultTime: 16.328ms - StreamingAggTime: 8.948ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 23.604us - ExecTime: 41.917ms - InitProbeSideTime: 3.931ms - JoinFilterTimer: 9.728us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.405us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.403us - ProbeFindNextTime: 0ns - ProbeRows: 174.744K (174744) - ProbeTime: 39.242ms - ProbeWhenBuildSideOutputTime: 404.49us - ProbeWhenProbeSideOutputTime: 6.375ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.428ms - ProjectionTime: 2.396ms - RowsProduced: 174.744K (174744) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 491.915us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 3.46 MB - OpenTime: 924ns - ProjectionTime: 0ns - RowsProduced: 174.744K (174744) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s594ms PipelineXTask (index=10):(Active: 112.205ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 111.389ms - CloseTime: 580.190us - GetBlockTime: 61.838ms - OpenTime: 4.751us - PrepareTime: 222.113us - SinkTime: 49.131ms - GetBlockCounter: 71 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s466ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.655us - CompressTime: 0ns - ExecTime: 49.198ms - InputRows: 167.553K (167553) - LocalBytesSent: 11.28 MB - LocalSendTime: 476.871us - LocalSentRows: 167.553K (167553) - MemoryUsage: - PeakMemoryUsage: 19.13 MB - MergeBlockTime: 0ns - OpenTime: 86.361us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 167.553K (167553) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.341ms - SplitBlockHashComputeTime: 6.588ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 47 - BuildConvertToPartitionedTime: 0ns - BuildTime: 29.527ms - CloseTime: 540.312us - DeserializeAndMergeTime: 0ns - ExecTime: 35.524ms - ExprTime: 93.794us - GetResultsTime: 5.222ms - HashTableComputeTime: 21.639ms - HashTableEmplaceTime: 19.481ms - HashTableInputCount: 57.114K (57114) - HashTableIterateTime: 362.664us - HashTableSize: 57.114K (57114) - InsertKeysToColumnTime: 1.738ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 29.85us - ProjectionTime: 0ns - RowsProduced: 167.553K (167553) - SerializeDataTime: 8.870ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.257ms - StreamingAggTime: 7.172ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 20.528us - ExecTime: 26.192ms - InitProbeSideTime: 2.789ms - JoinFilterTimer: 8.527us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.434us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.599us - ProbeFindNextTime: 0ns - ProbeRows: 167.553K (167553) - ProbeTime: 14.984ms - ProbeWhenBuildSideOutputTime: 570.841us - ProbeWhenProbeSideOutputTime: 7.417ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.49ms - ProjectionTime: 10.977ms - RowsProduced: 167.553K (167553) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 405.675us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 6.73 MB - OpenTime: 841ns - ProjectionTime: 0ns - RowsProduced: 167.553K (167553) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s200ms PipelineXTask (index=15):(Active: 185.308ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 184.463ms - CloseTime: 606.647us - GetBlockTime: 128.415ms - OpenTime: 25.369us - PrepareTime: 202.456us - SinkTime: 55.391ms - GetBlockCounter: 80 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.7ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s369ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.778us - CompressTime: 0ns - ExecTime: 55.460ms - InputRows: 172.966K (172966) - LocalBytesSent: 11.56 MB - LocalSendTime: 493.712us - LocalSentRows: 172.966K (172966) - MemoryUsage: - PeakMemoryUsage: 19.88 MB - MergeBlockTime: 0ns - OpenTime: 92.909us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 172.966K (172966) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.678ms - SplitBlockHashComputeTime: 7.692ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 46 - BuildConvertToPartitionedTime: 0ns - BuildTime: 66.144ms - CloseTime: 557.191us - DeserializeAndMergeTime: 0ns - ExecTime: 73.486ms - ExprTime: 121.60us - GetResultsTime: 6.525ms - HashTableComputeTime: 54.969ms - HashTableEmplaceTime: 52.584ms - HashTableInputCount: 55.789K (55789) - HashTableIterateTime: 555.20us - HashTableSize: 55.789K (55789) - InsertKeysToColumnTime: 2.25ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 27.764us - ProjectionTime: 0ns - RowsProduced: 172.966K (172966) - SerializeDataTime: 11.400ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.556ms - StreamingAggTime: 10.362ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 30.874us - ExecTime: 54.632ms - InitProbeSideTime: 3.513ms - JoinFilterTimer: 9.386us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.205us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.290us - ProbeFindNextTime: 0ns - ProbeRows: 172.966K (172966) - ProbeTime: 51.433ms - ProbeWhenBuildSideOutputTime: 443.381us - ProbeWhenProbeSideOutputTime: 40.334ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.381ms - ProjectionTime: 2.901ms - RowsProduced: 172.966K (172966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 478.190us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 2.85 MB - OpenTime: 802ns - ProjectionTime: 0ns - RowsProduced: 172.966K (172966) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s183ms PipelineXTask (index=20):(Active: 141.264ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 140.440ms - CloseTime: 628.983us - GetBlockTime: 77.169ms - OpenTime: 6.772us - PrepareTime: 178.634us - SinkTime: 62.654ms - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.205ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s422ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.149us - CompressTime: 0ns - ExecTime: 62.720ms - InputRows: 169.503K (169503) - LocalBytesSent: 11.44 MB - LocalSendTime: 455.769us - LocalSentRows: 169.503K (169503) - MemoryUsage: - PeakMemoryUsage: 19.50 MB - MergeBlockTime: 0ns - OpenTime: 76.439us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 169.503K (169503) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 52.352ms - SplitBlockHashComputeTime: 6.880ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 46 - BuildConvertToPartitionedTime: 0ns - BuildTime: 52.347ms - CloseTime: 584.563us - DeserializeAndMergeTime: 0ns - ExecTime: 59.396ms - ExprTime: 119.286us - GetResultsTime: 6.219ms - HashTableComputeTime: 32.675ms - HashTableEmplaceTime: 30.476ms - HashTableInputCount: 57.079K (57079) - HashTableIterateTime: 530.740us - HashTableSize: 57.079K (57079) - InsertKeysToColumnTime: 2.119ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 31.584us - ProjectionTime: 0ns - RowsProduced: 169.503K (169503) - SerializeDataTime: 9.481ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.246ms - StreamingAggTime: 18.891ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 21.218us - ExecTime: 17.452ms - InitProbeSideTime: 3.95ms - JoinFilterTimer: 8.507us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 16.827us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.67us - ProbeFindNextTime: 0ns - ProbeRows: 169.503K (169503) - ProbeTime: 14.627ms - ProbeWhenBuildSideOutputTime: 353.968us - ProbeWhenProbeSideOutputTime: 6.238ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.499ms - ProjectionTime: 2.590ms - RowsProduced: 169.503K (169503) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 520.725us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 2.24 MB - OpenTime: 745ns - ProjectionTime: 0ns - RowsProduced: 169.503K (169503) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s236ms PipelineXTask (index=25):(Active: 231.471ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 230.595ms - CloseTime: 690.876us - GetBlockTime: 190.980ms - OpenTime: 5.905us - PrepareTime: 172.383us - SinkTime: 38.991ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s308ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.896us - CompressTime: 0ns - ExecTime: 39.49ms - InputRows: 157.954K (157954) - LocalBytesSent: 10.56 MB - LocalSendTime: 424.892us - LocalSentRows: 157.954K (157954) - MemoryUsage: - PeakMemoryUsage: 17.04 MB - MergeBlockTime: 0ns - OpenTime: 77.921us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 157.954K (157954) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.887ms - SplitBlockHashComputeTime: 6.868ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 166.698ms - CloseTime: 640.925us - DeserializeAndMergeTime: 0ns - ExecTime: 173.929ms - ExprTime: 143.918us - GetResultsTime: 6.332ms - HashTableComputeTime: 157.892ms - HashTableEmplaceTime: 155.651ms - HashTableInputCount: 57.061K (57061) - HashTableIterateTime: 505.348us - HashTableSize: 57.061K (57061) - InsertKeysToColumnTime: 1.956ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 32.423us - ProjectionTime: 0ns - RowsProduced: 157.954K (157954) - SerializeDataTime: 9.508ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.356ms - StreamingAggTime: 7.936ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 27.968us - ExecTime: 16.805ms - InitProbeSideTime: 3.172ms - JoinFilterTimer: 9.43us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.944us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.939us - ProbeFindNextTime: 0ns - ProbeRows: 157.954K (157954) - ProbeTime: 13.713ms - ProbeWhenBuildSideOutputTime: 308.50us - ProbeWhenProbeSideOutputTime: 5.386ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.178ms - ProjectionTime: 2.838ms - RowsProduced: 157.954K (157954) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 521.580us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 1.92 MB - OpenTime: 771ns - ProjectionTime: 0ns - RowsProduced: 157.954K (157954) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s242ms PipelineXTask (index=30):(Active: 268.341ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 267.581ms - CloseTime: 558.159us - GetBlockTime: 70.154ms - OpenTime: 7.290us - PrepareTime: 187.300us - SinkTime: 196.909ms - GetBlockCounter: 72 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 95.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s701ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.920us - CompressTime: 0ns - ExecTime: 196.972ms - InputRows: 167.167K (167167) - LocalBytesSent: 11.22 MB - LocalSendTime: 543.951us - LocalSentRows: 167.167K (167167) - MemoryUsage: - PeakMemoryUsage: 18.69 MB - MergeBlockTime: 0ns - OpenTime: 78.683us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 167.167K (167167) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 173.782ms - SplitBlockHashComputeTime: 19.731ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 38.866ms - CloseTime: 520.582us - DeserializeAndMergeTime: 0ns - ExecTime: 53.492ms - ExprTime: 121.565us - GetResultsTime: 13.874ms - HashTableComputeTime: 30.654ms - HashTableEmplaceTime: 28.535ms - HashTableInputCount: 55.446K (55446) - HashTableIterateTime: 496.988us - HashTableSize: 55.446K (55446) - InsertKeysToColumnTime: 1.812ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 25.654us - ProjectionTime: 0ns - RowsProduced: 167.167K (167167) - SerializeDataTime: 17.237ms - SerializeKeyTime: 0ns - SerializeResultTime: 13.912ms - StreamingAggTime: 7.395ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 19.42us - ExecTime: 16.391ms - InitProbeSideTime: 2.796ms - JoinFilterTimer: 8.94us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.81us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.405us - ProbeFindNextTime: 0ns - ProbeRows: 167.167K (167167) - ProbeTime: 14.111ms - ProbeWhenBuildSideOutputTime: 419.495us - ProbeWhenProbeSideOutputTime: 6.376ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.111ms - ProjectionTime: 2.60ms - RowsProduced: 167.167K (167167) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 508.617us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 5.13 MB - OpenTime: 2.307us - ProjectionTime: 0ns - RowsProduced: 167.167K (167167) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 880.642ms PipelineXTask (index=35):(Active: 258.70ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 257.317ms - CloseTime: 563.612us - GetBlockTime: 219.51ms - OpenTime: 5.59us - PrepareTime: 177.285us - SinkTime: 37.676ms - GetBlockCounter: 73 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 96.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 802.393ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.577us - CompressTime: 0ns - ExecTime: 37.740ms - InputRows: 152.3K (152300) - LocalBytesSent: 10.22 MB - LocalSendTime: 445.596us - LocalSentRows: 152.3K (152300) - MemoryUsage: - PeakMemoryUsage: 16.35 MB - MergeBlockTime: 0ns - OpenTime: 79.2us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 152.3K (152300) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.938ms - SplitBlockHashComputeTime: 6.458ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 43 - BuildConvertToPartitionedTime: 0ns - BuildTime: 57.503ms - CloseTime: 498.265us - DeserializeAndMergeTime: 0ns - ExecTime: 63.381ms - ExprTime: 99.755us - GetResultsTime: 5.117ms - HashTableComputeTime: 27.128ms - HashTableEmplaceTime: 24.791ms - HashTableInputCount: 56.942K (56942) - HashTableIterateTime: 398.883us - HashTableSize: 56.942K (56942) - InsertKeysToColumnTime: 1.720ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 28.281us - ProjectionTime: 0ns - RowsProduced: 152.3K (152300) - SerializeDataTime: 30.720ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.160ms - StreamingAggTime: 29.572ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 30.140us - ExecTime: 155.385ms - InitProbeSideTime: 20.964ms - JoinFilterTimer: 8.644us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 12.148us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.167us - ProbeFindNextTime: 0ns - ProbeRows: 152.3K (152300) - ProbeTime: 152.902ms - ProbeWhenBuildSideOutputTime: 380.775us - ProbeWhenProbeSideOutputTime: 118.353ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.29ms - ProjectionTime: 2.218ms - RowsProduced: 152.3K (152300) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 468.717us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 4.13 MB - OpenTime: 832ns - ProjectionTime: 0ns - RowsProduced: 152.3K (152300) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s659ms PipelineXTask (index=40):(Active: 331.931ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 331.183ms - CloseTime: 571.189us - GetBlockTime: 195.621ms - OpenTime: 4.181us - PrepareTime: 165.849us - SinkTime: 134.887ms - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 21 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 101.563ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s252ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.104us - CompressTime: 0ns - ExecTime: 134.958ms - InputRows: 161.671K (161671) - LocalBytesSent: 10.81 MB - LocalSendTime: 475.614us - LocalSentRows: 161.671K (161671) - MemoryUsage: - PeakMemoryUsage: 18.82 MB - MergeBlockTime: 0ns - OpenTime: 84.463us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 161.671K (161671) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 124.760ms - SplitBlockHashComputeTime: 6.573ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 43 - BuildConvertToPartitionedTime: 0ns - BuildTime: 89.251ms - CloseTime: 529.499us - DeserializeAndMergeTime: 0ns - ExecTime: 95.537ms - ExprTime: 133.882us - GetResultsTime: 5.505ms - HashTableComputeTime: 67.729ms - HashTableEmplaceTime: 50.10ms - HashTableInputCount: 56.887K (56887) - HashTableIterateTime: 396.321us - HashTableSize: 56.887K (56887) - InsertKeysToColumnTime: 2.232ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 21.233us - ProjectionTime: 0ns - RowsProduced: 161.671K (161671) - SerializeDataTime: 21.720ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.536ms - StreamingAggTime: 20.579ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 18.636us - ExecTime: 99.720ms - InitProbeSideTime: 3.254ms - JoinFilterTimer: 8.279us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.952us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.875us - ProbeFindNextTime: 0ns - ProbeRows: 161.671K (161671) - ProbeTime: 96.756ms - ProbeWhenBuildSideOutputTime: 640.23us - ProbeWhenProbeSideOutputTime: 87.909ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.367ms - ProjectionTime: 2.708ms - RowsProduced: 161.671K (161671) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 462.482us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 1.92 MB - OpenTime: 759ns - ProjectionTime: 0ns - RowsProduced: 161.671K (161671) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s219ms PipelineXTask (index=45):(Active: 281.455ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 280.646ms - CloseTime: 596.94us - GetBlockTime: 162.929ms - OpenTime: 5.776us - PrepareTime: 197.765us - SinkTime: 117.200ms - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 97.491ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s38ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.262us - CompressTime: 0ns - ExecTime: 117.274ms - InputRows: 157.964K (157964) - LocalBytesSent: 10.51 MB - LocalSendTime: 426.307us - LocalSentRows: 157.964K (157964) - MemoryUsage: - PeakMemoryUsage: 17.61 MB - MergeBlockTime: 0ns - OpenTime: 80.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 157.964K (157964) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 106.834ms - SplitBlockHashComputeTime: 7.62ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 42 - BuildConvertToPartitionedTime: 0ns - BuildTime: 108.341ms - CloseTime: 532.197us - DeserializeAndMergeTime: 0ns - ExecTime: 114.219ms - ExprTime: 115.473us - GetResultsTime: 5.99ms - HashTableComputeTime: 98.823ms - HashTableEmplaceTime: 43.151ms - HashTableInputCount: 55.777K (55777) - HashTableIterateTime: 362.357us - HashTableSize: 55.777K (55777) - InsertKeysToColumnTime: 1.797ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 41.169us - ProjectionTime: 0ns - RowsProduced: 157.964K (157964) - SerializeDataTime: 9.743ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.128ms - StreamingAggTime: 8.730ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 35.22us - ExecTime: 48.541ms - InitProbeSideTime: 7.361ms - JoinFilterTimer: 9.83us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.635us - ProbeFindNextTime: 0ns - ProbeRows: 157.964K (157964) - ProbeTime: 45.905ms - ProbeWhenBuildSideOutputTime: 338.716us - ProbeWhenProbeSideOutputTime: 33.450ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.312ms - ProjectionTime: 2.363ms - RowsProduced: 157.964K (157964) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 441.642us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 3.20 MB - OpenTime: 844ns - ProjectionTime: 0ns - RowsProduced: 157.964K (157964) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s414ms PipelineXTask (index=50):(Active: 190.900ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 190.108ms - CloseTime: 572.919us - GetBlockTime: 155.971ms - OpenTime: 7.447us - PrepareTime: 202.767us - SinkTime: 33.656ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 84.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s293ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.495us - CompressTime: 0ns - ExecTime: 33.724ms - InputRows: 146.488K (146488) - LocalBytesSent: 9.79 MB - LocalSendTime: 325.24us - LocalSentRows: 146.488K (146488) - MemoryUsage: - PeakMemoryUsage: 15.63 MB - MergeBlockTime: 0ns - OpenTime: 78.348us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 146.488K (146488) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.349ms - SplitBlockHashComputeTime: 5.739ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 79.330ms - CloseTime: 532.109us - DeserializeAndMergeTime: 0ns - ExecTime: 84.913ms - ExprTime: 98.825us - GetResultsTime: 4.834ms - HashTableComputeTime: 50.235ms - HashTableEmplaceTime: 47.935ms - HashTableInputCount: 56.584K (56584) - HashTableIterateTime: 357.392us - HashTableSize: 56.584K (56584) - InsertKeysToColumnTime: 1.641ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 26.259us - ProjectionTime: 0ns - RowsProduced: 146.488K (146488) - SerializeDataTime: 29.609ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.866ms - StreamingAggTime: 28.251ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 21.567us - ExecTime: 70.902ms - InitProbeSideTime: 2.471ms - JoinFilterTimer: 7.791us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 35.372us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.453us - ProbeFindNextTime: 0ns - ProbeRows: 146.488K (146488) - ProbeTime: 68.707ms - ProbeWhenBuildSideOutputTime: 352.725us - ProbeWhenProbeSideOutputTime: 62.122ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.554ms - ProjectionTime: 1.957ms - RowsProduced: 146.488K (146488) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 437.910us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 7.05 MB - OpenTime: 740ns - ProjectionTime: 0ns - RowsProduced: 146.488K (146488) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s238ms PipelineXTask (index=55):(Active: 164.284ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 163.531ms - CloseTime: 545.119us - GetBlockTime: 110.629ms - OpenTime: 5.123us - PrepareTime: 195.670us - SinkTime: 52.424ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s364ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.902us - CompressTime: 0ns - ExecTime: 52.489ms - InputRows: 154.883K (154883) - LocalBytesSent: 10.32 MB - LocalSendTime: 433.886us - LocalSentRows: 154.883K (154883) - MemoryUsage: - PeakMemoryUsage: 16.94 MB - MergeBlockTime: 0ns - OpenTime: 78.518us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 154.883K (154883) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.624ms - SplitBlockHashComputeTime: 6.616ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 40 - BuildConvertToPartitionedTime: 0ns - BuildTime: 90.76ms - CloseTime: 501.852us - DeserializeAndMergeTime: 0ns - ExecTime: 95.738ms - ExprTime: 106.108us - GetResultsTime: 4.909ms - HashTableComputeTime: 55.675ms - HashTableEmplaceTime: 53.283ms - HashTableInputCount: 56.414K (56414) - HashTableIterateTime: 382.612us - HashTableSize: 56.414K (56414) - InsertKeysToColumnTime: 1.654ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 39.345us - ProjectionTime: 0ns - RowsProduced: 154.883K (154883) - SerializeDataTime: 34.858ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.940ms - StreamingAggTime: 33.506ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 17.580us - ExecTime: 14.669ms - InitProbeSideTime: 2.661ms - JoinFilterTimer: 8.185us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.888us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.978us - ProbeFindNextTime: 0ns - ProbeRows: 154.883K (154883) - ProbeTime: 12.231ms - ProbeWhenBuildSideOutputTime: 340.219us - ProbeWhenProbeSideOutputTime: 4.775ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.93ms - ProjectionTime: 2.193ms - RowsProduced: 154.883K (154883) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 455.459us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 3.84 MB - OpenTime: 2.801us - ProjectionTime: 0ns - RowsProduced: 154.883K (154883) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s410ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 19.640ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 19.573ms - CloseTime: 15.451us - GetBlockTime: 18.572ms - OpenTime: 2.686us - PrepareTime: 41.35us - SinkTime: 569.778us - GetBlockCounter: 77 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.540ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s363ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 534.794us - InputRows: 175.882K (175882) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.77us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 52 - BuildOutputBlock: 0ns - CloseTime: 13.28us - ExecTime: 17.961ms - InitProbeSideTime: 2.919ms - JoinFilterTimer: 8.19us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 13.268us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.303us - ProbeFindNextTime: 0ns - ProbeRows: 175.882K (175882) - ProbeTime: 14.39ms - ProbeWhenBuildSideOutputTime: 450.403us - ProbeWhenProbeSideOutputTime: 6.34ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.248ms - ProjectionTime: 3.707ms - RowsProduced: 175.882K (175882) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 52 - CloseTime: 0ns - ExecTime: 392.559us - GetBlockFailedTime: 24 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 460ns - ProjectionTime: 0ns - RowsProduced: 175.882K (175882) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s282ms PipelineXTask (index=6):(Active: 64.937ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 64.843ms - CloseTime: 37.462us - GetBlockTime: 63.444ms - OpenTime: 4.588us - PrepareTime: 45.837us - SinkTime: 450.213us - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s563ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 419.869us - InputRows: 179.898K (179898) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.135us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 34.716us - ExecTime: 62.971ms - InitProbeSideTime: 2.979ms - JoinFilterTimer: 7.87us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.5us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.664us - ProbeFindNextTime: 0ns - ProbeRows: 179.898K (179898) - ProbeTime: 55.471ms - ProbeWhenBuildSideOutputTime: 488.324us - ProbeWhenProbeSideOutputTime: 7.184ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.411ms - ProjectionTime: 7.279ms - RowsProduced: 179.898K (179898) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 307.186us - GetBlockFailedTime: 20 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 459ns - ProjectionTime: 0ns - RowsProduced: 179.898K (179898) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s70ms PipelineXTask (index=11):(Active: 32.81ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 31.981ms - CloseTime: 21.38us - GetBlockTime: 31.146ms - OpenTime: 7.932us - PrepareTime: 45.234us - SinkTime: 434.966us - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.638ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s479ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 399.889us - InputRows: 164.371K (164371) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.231us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 17.852us - ExecTime: 30.683ms - InitProbeSideTime: 3.428ms - JoinFilterTimer: 16.412us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.523us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.22us - ProbeFindNextTime: 0ns - ProbeRows: 164.371K (164371) - ProbeTime: 26.508ms - ProbeWhenBuildSideOutputTime: 408.552us - ProbeWhenProbeSideOutputTime: 17.871ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.355ms - ProjectionTime: 3.972ms - RowsProduced: 164.371K (164371) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 298.623us - GetBlockFailedTime: 17 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 509ns - ProjectionTime: 0ns - RowsProduced: 164.371K (164371) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 732.23ms PipelineXTask (index=16):(Active: 31.710ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 31.619ms - CloseTime: 36.320us - GetBlockTime: 30.649ms - OpenTime: 3.231us - PrepareTime: 43.72us - SinkTime: 611.838us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.627ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s289ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 579.46us - InputRows: 176.849K (176849) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.126us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 33.627us - ExecTime: 30.218ms - InitProbeSideTime: 3.51ms - JoinFilterTimer: 7.790us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.830us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.570us - ProbeFindNextTime: 0ns - ProbeRows: 176.849K (176849) - ProbeTime: 26.100ms - ProbeWhenBuildSideOutputTime: 458.697us - ProbeWhenProbeSideOutputTime: 17.683ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.498ms - ProjectionTime: 3.906ms - RowsProduced: 176.849K (176849) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 292.644us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 547ns - ProjectionTime: 0ns - RowsProduced: 176.849K (176849) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 843.870ms PipelineXTask (index=21):(Active: 101.762ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 101.686ms - CloseTime: 18.821us - GetBlockTime: 100.728ms - OpenTime: 4.393us - PrepareTime: 47.908us - SinkTime: 517.384us - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.912ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s500ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 481.105us - InputRows: 172.431K (172431) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.214us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 15.833us - ExecTime: 100.206ms - InitProbeSideTime: 15.921ms - JoinFilterTimer: 7.471us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.155us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.422us - ProbeFindNextTime: 0ns - ProbeRows: 172.431K (172431) - ProbeTime: 96.148ms - ProbeWhenBuildSideOutputTime: 536.578us - ProbeWhenProbeSideOutputTime: 74.908ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.298ms - ProjectionTime: 3.842ms - RowsProduced: 172.431K (172431) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 339.947us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 2.80 MB - OpenTime: 476ns - ProjectionTime: 0ns - RowsProduced: 172.431K (172431) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s60ms PipelineXTask (index=26):(Active: 31.750ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 31.668ms - CloseTime: 25.25us - GetBlockTime: 30.865ms - OpenTime: 3.573us - PrepareTime: 46.133us - SinkTime: 399.488us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.475ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s481ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 360.934us - InputRows: 170.672K (170672) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.183us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 21.609us - ExecTime: 30.453ms - InitProbeSideTime: 3.460ms - JoinFilterTimer: 8.898us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 8.924us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.370us - ProbeFindNextTime: 0ns - ProbeRows: 170.672K (170672) - ProbeTime: 26.111ms - ProbeWhenBuildSideOutputTime: 476.896us - ProbeWhenProbeSideOutputTime: 16.975ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.739ms - ProjectionTime: 4.145ms - RowsProduced: 170.672K (170672) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 252.662us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 489ns - ProjectionTime: 0ns - RowsProduced: 170.672K (170672) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 707.919ms PipelineXTask (index=31):(Active: 28.31ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 27.946ms - CloseTime: 22.612us - GetBlockTime: 14.609ms - OpenTime: 5.572us - PrepareTime: 48.807us - SinkTime: 303.298us - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.314ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s716ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 274.734us - InputRows: 152.196K (152196) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.378us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 20.198us - ExecTime: 14.226ms - InitProbeSideTime: 2.590ms - JoinFilterTimer: 6.848us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.555us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.885us - ProbeFindNextTime: 0ns - ProbeRows: 152.196K (152196) - ProbeTime: 10.863ms - ProbeWhenBuildSideOutputTime: 348.850us - ProbeWhenProbeSideOutputTime: 3.939ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.858ms - ProjectionTime: 3.186ms - RowsProduced: 152.196K (152196) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 231.338us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 2.54 MB - OpenTime: 603ns - ProjectionTime: 0ns - RowsProduced: 152.196K (152196) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 478.67ms PipelineXTask (index=36):(Active: 72.96ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 72.21ms - CloseTime: 17.956us - GetBlockTime: 71.167ms - OpenTime: 4.655us - PrepareTime: 47.255us - SinkTime: 478.707us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s190ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 445.373us - InputRows: 160.417K (160417) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.122us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 13.940us - ExecTime: 70.682ms - InitProbeSideTime: 2.770ms - JoinFilterTimer: 7.12us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.366us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 28.585us - ProbeFindNextTime: 0ns - ProbeRows: 160.417K (160417) - ProbeTime: 66.904ms - ProbeWhenBuildSideOutputTime: 464.533us - ProbeWhenProbeSideOutputTime: 20.378ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.973ms - ProjectionTime: 3.574ms - RowsProduced: 160.417K (160417) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 328.963us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 504ns - ProjectionTime: 0ns - RowsProduced: 160.417K (160417) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s125ms PipelineXTask (index=41):(Active: 79.403ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 79.311ms - CloseTime: 39.88us - GetBlockTime: 78.356ms - OpenTime: 6.269us - PrepareTime: 39.522us - SinkTime: 556.287us - GetBlockCounter: 62 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.541ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s537ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 524.705us - InputRows: 159.368K (159368) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.202us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 34.629us - ExecTime: 77.851ms - InitProbeSideTime: 2.809ms - JoinFilterTimer: 8.9us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.65us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.435us - ProbeFindNextTime: 0ns - ProbeRows: 159.368K (159368) - ProbeTime: 73.784ms - ProbeWhenBuildSideOutputTime: 507.129us - ProbeWhenProbeSideOutputTime: 65.664ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.253ms - ProjectionTime: 3.798ms - RowsProduced: 159.368K (159368) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 321.273us - GetBlockFailedTime: 17 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 470ns - ProjectionTime: 0ns - RowsProduced: 159.368K (159368) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 607.405ms PipelineXTask (index=46):(Active: 116.706ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 116.631ms - CloseTime: 19.582us - GetBlockTime: 115.733ms - OpenTime: 2.638us - PrepareTime: 47.786us - SinkTime: 499.169us - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 21 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 16.970ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s151ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 464.838us - InputRows: 150.518K (150518) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.253us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 16.909us - ExecTime: 115.286ms - InitProbeSideTime: 2.474ms - JoinFilterTimer: 10.66us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 11.564us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.537us - ProbeFindNextTime: 0ns - ProbeRows: 150.518K (150518) - ProbeTime: 12.312ms - ProbeWhenBuildSideOutputTime: 533.849us - ProbeWhenProbeSideOutputTime: 5.38ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.917ms - ProjectionTime: 102.786ms - RowsProduced: 150.518K (150518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 281.241us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 437ns - ProjectionTime: 0ns - RowsProduced: 150.518K (150518) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 891.221ms PipelineXTask (index=51):(Active: 29.86ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 28.974ms - CloseTime: 29.161us - GetBlockTime: 28.167ms - OpenTime: 14.31us - PrepareTime: 62.429us - SinkTime: 444.30us - GetBlockCounter: 58 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s337ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 418.611us - InputRows: 148.101K (148101) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.82us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 27.809us - ExecTime: 27.810ms - InitProbeSideTime: 2.527ms - JoinFilterTimer: 6.202us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 27.505us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.87us - ProbeFindNextTime: 0ns - ProbeRows: 148.101K (148101) - ProbeTime: 24.325ms - ProbeWhenBuildSideOutputTime: 395.747us - ProbeWhenProbeSideOutputTime: 17.385ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.786ms - ProjectionTime: 3.273ms - RowsProduced: 148.101K (148101) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 242.834us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 476ns - ProjectionTime: 0ns - RowsProduced: 148.101K (148101) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s21ms PipelineXTask (index=56):(Active: 29.781ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 29.706ms - CloseTime: 19.555us - GetBlockTime: 28.741ms - OpenTime: 5.434us - PrepareTime: 43.5us - SinkTime: 535.848us - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.970ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 888.323ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 507.444us - InputRows: 152.337K (152337) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.29us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 16.204us - ExecTime: 28.181ms - InitProbeSideTime: 2.804ms - JoinFilterTimer: 7.200us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.100us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.340us - ProbeFindNextTime: 0ns - ProbeRows: 152.337K (152337) - ProbeTime: 24.528ms - ProbeWhenBuildSideOutputTime: 461.293us - ProbeWhenProbeSideOutputTime: 16.876ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.53ms - ProjectionTime: 3.444ms - RowsProduced: 152.337K (152337) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 330.514us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 545ns - ProjectionTime: 0ns - RowsProduced: 152.337K (152337) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s260ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 18.310ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.885ms - CloseTime: 40.246us - GetBlockTime: 36.772us - OpenTime: 185.694us - PrepareTime: 192.845us - SinkTime: 17.645ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 690.693us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.553ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.644ms - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.267us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 28.583us - BlocksProduced: 0 - CloseTime: 34.611us - ExecTime: 99.925ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 331.527us - ProcessConjunctTime: 104.206us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.267ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 99.523ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PerScannerRunningTime: [1.972us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [99.267ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 229.641us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 150ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 254.635us - ScannerCtxSchedTime: 99.265ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 973ns - ScannerInitTime: 39.143us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 305ns - BlockConditionsFilteredBloomFilterTime: 592ns - BlockConditionsFilteredDictTime: 90.970us - BlockConditionsFilteredTime: 102.489us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.243us - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.97us - BlockInitTime: 121.271us - BlockLoadTime: 138.348us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 645ns - IOTimer: 0ns - InvertedIndexFilterTime: 767ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.449ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 701.365us - CloseTime: 27.110us - GetBlockTime: 78.779us - OpenTime: 530.145us - PrepareTime: 178.706us - SinkTime: 50.236us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.406ms - WaitBfTime: 84.23us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.783ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 49.418us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 967ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 70.849us - BlocksProduced: 2 - CloseTime: 23.864us - ExecTime: 336.694ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 653.245us - ProcessConjunctTime: 273.598us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 273.961ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 335.939ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [60.370ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [273.961ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 57.960ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.7ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 215ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.975ms - ScannerCtxSchedTime: 273.958ms - ScannerFilterTime: 98.745us - ScannerGetBlockTime: 60.232ms - ScannerInitTime: 138.548us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.976us - BlockConditionsFilteredBloomFilterTime: 5.965us - BlockConditionsFilteredDictTime: 159.921us - BlockConditionsFilteredTime: 223.92us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.500us - BlockInitSeekCount: 37 - BlockInitSeekTime: 311.130us - BlockInitTime: 641.757us - BlockLoadTime: 60.541ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 47.445us - FirstReadTime: 18.67ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.935us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 40.515ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 79.515us - OutputIndexResultColumnTimer: 12.974us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 580.593K (580593) - RowsShortCircuitPredInput: 581.176K (581176) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 746.289us - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 51.264us PipelineXTask (index=12):(Active: 1.661ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 912.314us - CloseTime: 38.612us - GetBlockTime: 175.598us - OpenTime: 563.947us - PrepareTime: 134.993us - SinkTime: 110.647us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.604ms - WaitBfTime: 3.457ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.67ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 107.105us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 998ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 57.298us - BlocksProduced: 9 - CloseTime: 36.771us - ExecTime: 444.797ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 649.907us - ProcessConjunctTime: 340.304us - ProjectionTime: 0ns - RowsProduced: 25.619K (25619) - RowsRead: 25.619K (25619) - RuntimeFilterInfo: - filter id = -1 filtered: 2.910612M (2910612) - filter id = -1 input: 2.96185M (2961850) - ScannerWorkerWaitTime: 169.638ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 443.941ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [175.227ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [169.638ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 173.492ms - MemoryUsage: - FreeBlocks: 888.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.232ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 798ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 82.346ms - ScannerCtxSchedTime: 169.630ms - ScannerFilterTime: 309.657us - ScannerGetBlockTime: 174.722ms - ScannerInitTime: 138.812us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.882us - BlockConditionsFilteredBloomFilterTime: 3.943us - BlockConditionsFilteredDictTime: 161.980us - BlockConditionsFilteredTime: 246.913us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.501us - BlockInitSeekCount: 17 - BlockInitSeekTime: 27.226us - BlockInitTime: 351.271us - BlockLoadTime: 175.737ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 116.10us - FirstReadTime: 2.998ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.833us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 159.27ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 725.513us - OutputIndexResultColumnTimer: 48.820us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.455306M (1455306) - RowsShortCircuitPredInput: 1.480925M (1480925) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 10.947ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 157.162us PipelineXTask (index=17):(Active: 1.481ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.84ms - CloseTime: 54.98us - GetBlockTime: 455.883us - OpenTime: 172.550us - PrepareTime: 163.356us - SinkTime: 307.998us - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.400ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 544.322ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 296.673us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.194us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 19.598us - BlocksProduced: 37 - CloseTime: 51.415us - ExecTime: 787.549ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 266.994us - ProcessConjunctTime: 90.787us - ProjectionTime: 0ns - RowsProduced: 128.11K (128110) - RowsRead: 128.11K (128110) - RuntimeFilterInfo: - filter id = -1 filtered: 2.991358M (2991358) - filter id = -1 input: 3.247578M (3247578) - ScannerWorkerWaitTime: 502.97ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 786.795ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [244.512ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [502.097ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 241.430ms - MemoryUsage: - FreeBlocks: 2.31 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.303ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.908us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.180ms - ScannerCtxSchedTime: 502.87ms - ScannerFilterTime: 400.596us - ScannerGetBlockTime: 243.935ms - ScannerInitTime: 49.14us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 1.161us - BlockConditionsFilteredBloomFilterTime: 7.110us - BlockConditionsFilteredDictTime: 196.398us - BlockConditionsFilteredTime: 264.573us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.284us - BlockInitSeekCount: 26 - BlockInitSeekTime: 23.777us - BlockInitTime: 355.147us - BlockLoadTime: 244.13ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 107.136us - FirstReadTime: 3.101ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.460us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 233.426ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.926ms - OutputIndexResultColumnTimer: 58.666us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.495679M (1495679) - RowsShortCircuitPredInput: 1.623789M (1623789) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.202ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 173.255us PipelineXTask (index=22):(Active: 1.931ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.283ms - CloseTime: 46.270us - GetBlockTime: 476.321us - OpenTime: 429.860us - PrepareTime: 159.475us - SinkTime: 226.191us - GetBlockCounter: 49 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.861ms - WaitBfTime: 9.466ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 897.33ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 214.115us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.14us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 54.849us - BlocksProduced: 49 - CloseTime: 43.724us - ExecTime: 724.532ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 534.756us - ProcessConjunctTime: 260.556us - ProjectionTime: 0ns - RowsProduced: 167.427K (167427) - RowsRead: 167.427K (167427) - RuntimeFilterInfo: - filter id = -1 filtered: 2.754106M (2754106) - filter id = -1 input: 3.08896M (3088960) - ScannerWorkerWaitTime: 423.619ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 723.491ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [253.002ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [423.619ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 250.184ms - MemoryUsage: - FreeBlocks: 2.91 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 39.862ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.168us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.716ms - ScannerCtxSchedTime: 423.607ms - ScannerFilterTime: 384.952us - ScannerGetBlockTime: 252.446ms - ScannerInitTime: 90.868us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.102us - BlockConditionsFilteredBloomFilterTime: 2.951us - BlockConditionsFilteredDictTime: 140.407us - BlockConditionsFilteredTime: 199.751us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.921us - BlockInitSeekCount: 25 - BlockInitSeekTime: 20.770us - BlockInitTime: 286.112us - BlockLoadTime: 291.162ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 150.524us - FirstReadTime: 41.693ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.448us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 241.300ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.373ms - OutputIndexResultColumnTimer: 46.620us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.377053M (1377053) - RowsShortCircuitPredInput: 1.54448M (1544480) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.719ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 157.606us PipelineXTask (index=27):(Active: 1.750ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.399ms - CloseTime: 52.725us - GetBlockTime: 707.793us - OpenTime: 156.885us - PrepareTime: 135.528us - SinkTime: 357.907us - GetBlockCounter: 75 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.676ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 868.973ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 342.5us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.248us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 18.377us - BlocksProduced: 75 - CloseTime: 49.554us - ExecTime: 860.850ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 246.426us - ProcessConjunctTime: 80.58us - ProjectionTime: 0ns - RowsProduced: 273.17K (273170) - RowsRead: 273.17K (273170) - RuntimeFilterInfo: - filter id = -1 filtered: 2.741612M (2741612) - filter id = -1 input: 3.287952M (3287952) - ScannerWorkerWaitTime: 260.275ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 859.864ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [517.138ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [260.275ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 512.825ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.734ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.179us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.554ms - ScannerCtxSchedTime: 260.269ms - ScannerFilterTime: 538.698us - ScannerGetBlockTime: 516.372ms - ScannerInitTime: 48.832us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 2.425us - BlockConditionsFilteredBloomFilterTime: 4.964us - BlockConditionsFilteredDictTime: 180.767us - BlockConditionsFilteredTime: 265.569us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 47.104us - BlockInitSeekCount: 31 - BlockInitSeekTime: 30.712us - BlockInitTime: 424.822us - BlockLoadTime: 516.534ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 169.470us - FirstReadTime: 3.418ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.953us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 500.312ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 4.266ms - OutputIndexResultColumnTimer: 58.701us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.370806M (1370806) - RowsShortCircuitPredInput: 1.643976M (1643976) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.745ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 195.288us PipelineXTask (index=32):(Active: 59.816ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 59.211ms - CloseTime: 43.729us - GetBlockTime: 58.26ms - OpenTime: 407.19us - PrepareTime: 144.237us - SinkTime: 554.493us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.749ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s486ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 532.238us - InputRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.408us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 55.151us - BlocksProduced: 90 - CloseTime: 39.848us - ExecTime: 671.567ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 506.67us - ProcessConjunctTime: 230.53us - ProjectionTime: 0ns - RowsProduced: 329.927K (329927) - RowsRead: 329.927K (329927) - RuntimeFilterInfo: - filter id = -1 filtered: 2.096866M (2096866) - filter id = -1 input: 2.75672M (2756720) - ScannerWorkerWaitTime: 239.775ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 613.21ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [336.654ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [239.775ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 332.458ms - MemoryUsage: - FreeBlocks: 5.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.805ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.965us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 129.694ms - ScannerCtxSchedTime: 239.762ms - ScannerFilterTime: 445.848us - ScannerGetBlockTime: 335.995ms - ScannerInitTime: 104.179us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 1.853us - BlockConditionsFilteredBloomFilterTime: 4.950us - BlockConditionsFilteredDictTime: 128.770us - BlockConditionsFilteredTime: 210.812us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.376us - BlockInitSeekCount: 35 - BlockInitSeekTime: 31.732us - BlockInitTime: 375.426us - BlockLoadTime: 336.379ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 111.660us - FirstReadTime: 2.905ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.903us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 319.169ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.158ms - OutputIndexResultColumnTimer: 62.26us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.048433M (1048433) - RowsShortCircuitPredInput: 1.37836M (1378360) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.464ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 166.183us PipelineXTask (index=37):(Active: 2.991ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.255ms - CloseTime: 41.213us - GetBlockTime: 920.617us - OpenTime: 528.434us - PrepareTime: 152.920us - SinkTime: 535.713us - GetBlockCounter: 114 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.909ms - WaitBfTime: 11.427ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 767.515ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 519.701us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.137us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 70.339us - BlocksProduced: 114 - CloseTime: 37.657us - ExecTime: 988.990ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 624.225us - ProcessConjunctTime: 270.652us - ProjectionTime: 0ns - RowsProduced: 394.725K (394725) - RowsRead: 394.725K (394725) - RuntimeFilterInfo: - filter id = -1 filtered: 2.268508M (2268508) - filter id = -1 input: 3.057958M (3057958) - ScannerWorkerWaitTime: 506.471ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 987.433ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [361.887ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [506.471ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 350.238ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.221ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.320us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 137.961ms - ScannerCtxSchedTime: 506.454ms - ScannerFilterTime: 542.298us - ScannerGetBlockTime: 361.166ms - ScannerInitTime: 158.871us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 2.72us - BlockConditionsFilteredBloomFilterTime: 4.852us - BlockConditionsFilteredDictTime: 170.896us - BlockConditionsFilteredTime: 267.113us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 61.182us - BlockInitSeekCount: 33 - BlockInitSeekTime: 43.224us - BlockInitTime: 422.590us - BlockLoadTime: 379.908ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 155.714us - FirstReadTime: 3.411ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.78us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 360.829ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.247ms - OutputIndexResultColumnTimer: 53.108us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.134254M (1134254) - RowsShortCircuitPredInput: 1.528979M (1528979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.877ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 182.206us PipelineXTask (index=42):(Active: 41.111ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 40.460ms - CloseTime: 41.822us - GetBlockTime: 507.442us - OpenTime: 427.277us - PrepareTime: 171.389us - SinkTime: 39.374ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.50ms - WaitBfTime: 10.687ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.677ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.361ms - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 920ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 49.637us - BlocksProduced: 68 - CloseTime: 39.444us - ExecTime: 532.811ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 520.259us - ProcessConjunctTime: 267.483us - ProjectionTime: 0ns - RowsProduced: 249.28K (249280) - RowsRead: 249.28K (249280) - RuntimeFilterInfo: - filter id = -1 filtered: 1.574774M (1574774) - filter id = -1 input: 2.073334M (2073334) - ScannerWorkerWaitTime: 332.758ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 531.758ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [184.210ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [332.758ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 181.881ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.14ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.574us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 99.545ms - ScannerCtxSchedTime: 332.750ms - ScannerFilterTime: 358.709us - ScannerGetBlockTime: 183.710ms - ScannerInitTime: 87.434us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.441us - BlockConditionsFilteredBloomFilterTime: 3.683us - BlockConditionsFilteredDictTime: 80.784us - BlockConditionsFilteredTime: 144.159us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 34.778us - BlockInitSeekCount: 25 - BlockInitSeekTime: 405.167us - BlockInitTime: 619.906us - BlockLoadTime: 183.718ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 90.227us - FirstReadTime: 2.154ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.571us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 170.487ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.181ms - OutputIndexResultColumnTimer: 39.318us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 787.387K (787387) - RowsShortCircuitPredInput: 1.036667M (1036667) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.450ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 127.478us PipelineXTask (index=47):(Active: 2.44ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.664ms - CloseTime: 65.453us - GetBlockTime: 806.153us - OpenTime: 154.644us - PrepareTime: 154.350us - SinkTime: 452.527us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.949ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s123ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 435.581us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.94us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.126us - BlocksProduced: 96 - CloseTime: 62.724us - ExecTime: 849.107ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 253.193us - ProcessConjunctTime: 81.745us - ProjectionTime: 0ns - RowsProduced: 325.275K (325275) - RowsRead: 325.275K (325275) - RuntimeFilterInfo: - filter id = -1 filtered: 1.675472M (1675472) - filter id = -1 input: 2.326022M (2326022) - ScannerWorkerWaitTime: 325.815ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 848.6ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [487.019ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [325.815ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 484.429ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 974.301us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.692us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 117.607ms - ScannerCtxSchedTime: 325.806ms - ScannerFilterTime: 517.280us - ScannerGetBlockTime: 486.338ms - ScannerInitTime: 32.510us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.245us - BlockConditionsFilteredBloomFilterTime: 3.372us - BlockConditionsFilteredDictTime: 83.66us - BlockConditionsFilteredTime: 139.393us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 34.191us - BlockInitSeekCount: 26 - BlockInitSeekTime: 281.753us - BlockInitTime: 508.399us - BlockLoadTime: 486.151ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 115.89us - FirstReadTime: 2.634ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.147us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 442.91ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.787ms - OutputIndexResultColumnTimer: 61.306us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 837.736K (837736) - RowsShortCircuitPredInput: 1.163011M (1163011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 33.32ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 172.271us PipelineXTask (index=52):(Active: 1.268ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 596.194us - CloseTime: 34.570us - GetBlockTime: 86.964us - OpenTime: 398.552us - PrepareTime: 209.351us - SinkTime: 56.226us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.202ms - WaitBfTime: 8.287ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.53ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 55.851us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.115us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 46.296us - BlocksProduced: 9 - CloseTime: 32.549us - ExecTime: 209.396ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 553.247us - ProcessConjunctTime: 213.577us - ProjectionTime: 0ns - RowsProduced: 32.142K (32142) - RowsRead: 32.142K (32142) - RuntimeFilterInfo: - filter id = -1 filtered: 389.738K (389738) - filter id = -1 input: 454.022K (454022) - ScannerWorkerWaitTime: 196.714ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 208.724ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [8.873ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [196.714ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.695ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 676.97us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 370ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.997ms - ScannerCtxSchedTime: 196.713ms - ScannerFilterTime: 37.20us - ScannerGetBlockTime: 8.809ms - ScannerInitTime: 109.282us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 487ns - BlockConditionsFilteredBloomFilterTime: 1.245us - BlockConditionsFilteredDictTime: 17.642us - BlockConditionsFilteredTime: 37.346us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.229us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.516us - BlockInitTime: 67.795us - BlockLoadTime: 9.228ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 17.91us - FirstReadTime: 407.303us - IOTimer: 0ns - InvertedIndexFilterTime: 2.16us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.504ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 366.920us - OutputIndexResultColumnTimer: 6.115us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 194.869K (194869) - RowsShortCircuitPredInput: 227.011K (227011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 635.269us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 21.955us PipelineXTask (index=57):(Active: 25.122ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 12.572ms - CloseTime: 52.564us - GetBlockTime: 146.158us - OpenTime: 12.351ms - PrepareTime: 138.952us - SinkTime: 40.947us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.847ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 40.847us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.159us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 44, type = minmax), RuntimeFilter: (id = 45, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 34.16us - BlocksProduced: 10 - CloseTime: 46.482us - ExecTime: 373.769ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 12.445ms - ProcessConjunctTime: 184.437us - ProjectionTime: 0ns - RowsProduced: 36.782K (36782) - RowsRead: 36.782K (36782) - RuntimeFilterInfo: - filter id = -1 filtered: 412.336K (412336) - filter id = -1 input: 485.9K (485900) - ScannerWorkerWaitTime: 116.421ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 361.133ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 44, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 45, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [90.143ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [116.421ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 89.919ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 152.256ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 446ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.815ms - ScannerCtxSchedTime: 116.418ms - ScannerFilterTime: 62.270us - ScannerGetBlockTime: 90.56ms - ScannerInitTime: 12.103ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 787ns - BlockConditionsFilteredBloomFilterTime: 2.318us - BlockConditionsFilteredDictTime: 47.229us - BlockConditionsFilteredTime: 81.901us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 20.957us - BlockInitSeekCount: 8 - BlockInitSeekTime: 58.249us - BlockInitTime: 182.795us - BlockLoadTime: 241.983ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 22.162us - FirstReadTime: 454.289us - IOTimer: 0ns - InvertedIndexFilterTime: 3.249us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 239.724ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 475.105us - OutputIndexResultColumnTimer: 7.83us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 206.168K (206168) - RowsShortCircuitPredInput: 242.95K (242950) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 845.166us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 27.614us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 291.199us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 208.340us - CloseTime: 15.934us - GetBlockTime: 18.134us - OpenTime: 3.115us - PrepareTime: 57.961us - SinkTime: 155.223us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.166us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.679ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.804us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.309us - BuildTableInsertTime: 32.578us - BuildTableTime: 39.767us - CloseTime: 0ns - ExecTime: 171.893us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 18.63us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.742us - RuntimeFilterComputeTime: 34.745us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.875us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 17.427us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 132.63us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.103us - CloseTime: 13.698us - GetBlockTime: 0ns - OpenTime: 3.122us - PrepareTime: 53.111us - SinkTime: 35.530us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.485us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.593ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 55.477us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.383us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.640us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.706us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 148.380us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 67.770us - CloseTime: 13.471us - GetBlockTime: 0ns - OpenTime: 3.391us - PrepareTime: 50.613us - SinkTime: 36.127us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.84ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.574us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.255us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.592ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.777us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.54us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 104.492us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 35.418us - CloseTime: 7.253us - GetBlockTime: 0ns - OpenTime: 2.567us - PrepareTime: 56.152us - SinkTime: 14.342us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.311us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.254ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.112us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.612us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.445us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.917us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.787us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 84.248us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 20.817us - CloseTime: 3.830us - GetBlockTime: 0ns - OpenTime: 1.719us - PrepareTime: 54.718us - SinkTime: 12.655us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.485us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.379ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.42us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.267us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.560us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.852us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 208.864us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 75.336us - CloseTime: 16.240us - GetBlockTime: 0ns - OpenTime: 2.624us - PrepareTime: 88.341us - SinkTime: 31.657us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 183.540us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.107ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 55.752us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.441ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.92us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 137.394us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 53.389us - CloseTime: 24.950us - GetBlockTime: 0ns - OpenTime: 3.362us - PrepareTime: 50.360us - SinkTime: 35.425us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.821ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.30us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.859us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 22.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.420us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.691us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 181.949us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.163us - CloseTime: 8.651us - GetBlockTime: 0ns - OpenTime: 2.477us - PrepareTime: 124.4us - SinkTime: 21.488us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 165.637us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.39ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 94.550us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 73.476us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.554ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.480us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.629us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.81us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 94.623us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 18.269us - CloseTime: 4.529us - GetBlockTime: 0ns - OpenTime: 1.475us - PrepareTime: 67.282us - SinkTime: 11.123us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.123us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.311ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.464us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.249us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.938us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.542us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.265us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 139.719us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 49.800us - CloseTime: 12.541us - GetBlockTime: 0ns - OpenTime: 2.680us - PrepareTime: 69.579us - SinkTime: 33.21us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.867us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.5ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 60.116us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.207us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.381us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.967us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.853us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 165.952us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 60.93us - CloseTime: 10.830us - GetBlockTime: 0ns - OpenTime: 2.645us - PrepareTime: 88.291us - SinkTime: 31.200us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 148.732us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.992ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.117us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.755us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.532ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.755us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.848us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 186.237us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.643us - CloseTime: 83.680us - GetBlockTime: 0ns - OpenTime: 2.443us - PrepareTime: 56.986us - SinkTime: 22.391us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.635us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.861ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.833us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.664us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 81.699us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.61us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.543us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 7.218ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.151ms - CloseTime: 13.822us - GetBlockTime: 104.969us - OpenTime: 2.329us - PrepareTime: 46.201us - SinkTime: 6.990ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.155ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 5.130us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.676ms - BuildTableInsertTime: 5.135ms - BuildTableTime: 5.237ms - CloseTime: 0ns - ExecTime: 6.993ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 9.177us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=142): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 10.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.336us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 1.26 MB - PeakMemoryUsage: 700.00 KB - OpenTime: 22.551us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=9):(Active: 93.7us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.153us - CloseTime: 10.560us - GetBlockTime: 0ns - OpenTime: 3.68us - PrepareTime: 40.633us - SinkTime: 13.395us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.928us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.221ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.933us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.72us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9.198ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.509us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.137us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.860us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 75.353us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.917us - CloseTime: 7.509us - GetBlockTime: 0ns - OpenTime: 2.308us - PrepareTime: 35.508us - SinkTime: 8.357us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.633us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.124ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.235us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.317us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.966ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.705us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.626us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.161us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 84.547us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.435us - CloseTime: 17.370us - GetBlockTime: 0ns - OpenTime: 1.343us - PrepareTime: 40.522us - SinkTime: 10.452us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.447us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.288ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.529us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.464us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.906ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.868us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.908us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.107us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 77.368us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.202us - CloseTime: 7.112us - GetBlockTime: 0ns - OpenTime: 1.52us - PrepareTime: 39.28us - SinkTime: 14.166us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.245us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.424ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.940us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.5us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.820ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.490us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.330us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.340us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 113.894us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.534us - CloseTime: 6.300us - GetBlockTime: 0ns - OpenTime: 2.194us - PrepareTime: 49.104us - SinkTime: 24.603us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.910us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.313ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.991us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.388us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.835ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.844us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.732us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 102.536us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.547us - CloseTime: 6.954us - GetBlockTime: 0ns - OpenTime: 3.277us - PrepareTime: 49.692us - SinkTime: 10.576us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.988us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.848ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.733us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.646us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9.36ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.627us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.253us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 75.595us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.509us - CloseTime: 4.575us - GetBlockTime: 0ns - OpenTime: 2.117us - PrepareTime: 41.747us - SinkTime: 6.485us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.12us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.229ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.8us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.253us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.910ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.545us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.64us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 99.559us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 34.701us - CloseTime: 11.34us - GetBlockTime: 0ns - OpenTime: 2.807us - PrepareTime: 45.610us - SinkTime: 13.470us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.826us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.632ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.330us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.735us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.248ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.163us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.970us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 84.929us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.521us - CloseTime: 7.93us - GetBlockTime: 0ns - OpenTime: 1.895us - PrepareTime: 42.929us - SinkTime: 7.420us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.623us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.775ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.661us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.479us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.156ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.373us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.102us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.29us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 78.26us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.991us - CloseTime: 5.535us - GetBlockTime: 0ns - OpenTime: 2.963us - PrepareTime: 39.750us - SinkTime: 6.649us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.996ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.765us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.349us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11.430ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.242us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.490us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.523us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 93.975us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.743us - CloseTime: 13.270us - GetBlockTime: 0ns - OpenTime: 2.78us - PrepareTime: 45.353us - SinkTime: 13.617us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.525us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.78ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963128 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 20.155us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.479us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.933ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.839us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.200us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 98: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.622ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.252ms - CloseTime: 47.756us - GetBlockTime: 160.780us - OpenTime: 124.544us - PrepareTime: 188.936us - SinkTime: 909.948us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.562ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.17ms DATA_STREAM_SINK_OPERATOR (id=142,dst_id=142): - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.998us - CompressTime: 0ns - ExecTime: 965.463us - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 891.209us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 41.586us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 43.597K (43597) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=141. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 734ns - BlocksProduced: 11 - CloseTime: 25.513us - ExecTime: 5.489ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 194.830us - ProcessConjunctTime: 22.736us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 932.469us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 5.114ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [1.857ms, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [932.469us, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.770ms - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.976ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.92us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.178ms - ScannerCtxSchedTime: 928.877us - ScannerFilterTime: 11.869us - ScannerGetBlockTime: 1.835ms - ScannerInitTime: 63.381us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 300ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.171us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 1.593ms - BlockInitTime: 1.648ms - BlockLoadTime: 3.618ms - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 19.931us - FirstReadTime: 1.875ms - IOTimer: 0ns - InvertedIndexFilterTime: 774ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.61us - OutputIndexResultColumnTimer: 3.35us - RawRowsRead: 43.597K (43597) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 5 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 99: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 528.241us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 209.414us - CloseTime: 49.360us - GetBlockTime: 40.294us - OpenTime: 134.431us - PrepareTime: 127.662us - SinkTime: 15.362us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 470.55us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 445.701us DATA_STREAM_SINK_OPERATOR (id=140,dst_id=140): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.222us - CompressTime: 0ns - ExecTime: 51.315us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 10.355us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.286us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=139. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 693ns - BlocksProduced: 1 - CloseTime: 33.250us - ExecTime: 979.376us - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 189.527us - ProcessConjunctTime: 43.329us - ProjectionTime: 4.209us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 353.591us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 712.552us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [34.598us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [353.591us, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.493us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 224.220us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 105ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 368.640us - ScannerCtxSchedTime: 351.226us - ScannerFilterTime: 1.146us - ScannerGetBlockTime: 28.304us - ScannerInitTime: 54.978us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 182ns - BlockConditionsFilteredBloomFilterTime: 1.73us - BlockConditionsFilteredDictTime: 3.497us - BlockConditionsFilteredTime: 14.248us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.883us - BlockInitSeekCount: 6 - BlockInitSeekTime: 13.419us - BlockInitTime: 47.258us - BlockLoadTime: 124.899us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.105us - FirstReadTime: 6.64us - IOTimer: 0ns - InvertedIndexFilterTime: 1.217us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.375us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 25.366us - OutputIndexResultColumnTimer: 106ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 77ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.385us Fragment 100: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 377.316us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 105.630us - CloseTime: 14.572us - GetBlockTime: 21.570us - OpenTime: 2.669us - PrepareTime: 246.997us - SinkTime: 64.339us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 356.94us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.752ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.736us - CompressTime: 0ns - ExecTime: 172.648us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.723us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.795us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 600ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 543ns - DeserializeAndMergeTime: 0ns - ExecTime: 29.407us - GetResultsTime: 5.644us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 45ns - HashTableSize: 0 - InsertKeysToColumnTime: 326ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.112us - ProjectionTime: 5.305us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s276ms PipelineXTask (index=2):(Active: 254.933us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 116.200us - CloseTime: 19.798us - GetBlockTime: 18.242us - OpenTime: 4.150us - PrepareTime: 110.510us - SinkTime: 61.738us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.104us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.363ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.216us - CompressTime: 0ns - ExecTime: 154.912us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.107us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 75.344us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 546ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 507ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.235us - GetResultsTime: 4.575us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 41ns - HashTableSize: 0 - InsertKeysToColumnTime: 439ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.757us - ProjectionTime: 5.558us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s266ms PipelineXTask (index=4):(Active: 226.231us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 101.532us - CloseTime: 12.82us - GetBlockTime: 16.996us - OpenTime: 3.28us - PrepareTime: 105.674us - SinkTime: 63.178us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 206.624us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.815ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.562us - CompressTime: 0ns - ExecTime: 147.752us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.272us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.245us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 287ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 406ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.856us - GetResultsTime: 4.781us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 42ns - HashTableSize: 0 - InsertKeysToColumnTime: 257ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.514us - ProjectionTime: 4.646us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s272ms PipelineXTask (index=6):(Active: 271.158us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 120.818us - CloseTime: 12.327us - GetBlockTime: 19.506us - OpenTime: 3.767us - PrepareTime: 127.318us - SinkTime: 76.956us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 250.971us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.345ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.902us - CompressTime: 0ns - ExecTime: 172.475us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.485us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 85.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 381ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 460ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.775us - GetResultsTime: 4.506us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 46ns - HashTableSize: 0 - InsertKeysToColumnTime: 512ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.605us - ProjectionTime: 6.329us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s269ms PipelineXTask (index=8):(Active: 264.123us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 138.394us - CloseTime: 19.882us - GetBlockTime: 25.321us - OpenTime: 4.904us - PrepareTime: 96.197us - SinkTime: 88.287us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.391us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.928ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.160us - CompressTime: 0ns - ExecTime: 177.18us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 44.300us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.154us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 411ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 741ns - DeserializeAndMergeTime: 0ns - ExecTime: 30.38us - GetResultsTime: 6.888us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43ns - HashTableSize: 0 - InsertKeysToColumnTime: 443ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.640us - ProjectionTime: 6.790us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s260ms PipelineXTask (index=10):(Active: 235.330us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 102.212us - CloseTime: 11.269us - GetBlockTime: 12.190us - OpenTime: 2.785us - PrepareTime: 113.896us - SinkTime: 74.855us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 218.253us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.65ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.275us - CompressTime: 0ns - ExecTime: 164.698us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.77us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 80.153us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 567ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 195ns - DeserializeAndMergeTime: 0ns - ExecTime: 19.648us - GetResultsTime: 2.670us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 37ns - HashTableSize: 0 - InsertKeysToColumnTime: 229ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.800us - ProjectionTime: 4.483us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s260ms PipelineXTask (index=12):(Active: 237.938us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 105.396us - CloseTime: 14.518us - GetBlockTime: 12.986us - OpenTime: 9.529us - PrepareTime: 104.433us - SinkTime: 66.995us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 217.826us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.187ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.782us - CompressTime: 0ns - ExecTime: 151.88us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.588us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.703us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 600ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 272ns - DeserializeAndMergeTime: 0ns - ExecTime: 18.121us - GetResultsTime: 2.273us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 29ns - HashTableSize: 0 - InsertKeysToColumnTime: 135ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.536us - ProjectionTime: 5.418us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s260ms PipelineXTask (index=14):(Active: 254.979us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 113.186us - CloseTime: 9.659us - GetBlockTime: 17.978us - OpenTime: 3.844us - PrepareTime: 123.592us - SinkTime: 62.277us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.159us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.613ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.931us - CompressTime: 0ns - ExecTime: 169.154us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.473us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 98.408us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 532ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 218ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.832us - GetResultsTime: 5.205us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 36ns - HashTableSize: 0 - InsertKeysToColumnTime: 320ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.94us - ProjectionTime: 5.157us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s301ms PipelineXTask (index=16):(Active: 265.514us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 131.950us - CloseTime: 25.484us - GetBlockTime: 24.622us - OpenTime: 3.332us - PrepareTime: 98.405us - SinkTime: 77.787us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 231.31us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.511ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.561us - CompressTime: 0ns - ExecTime: 156.801us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.366us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 55.959us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 641ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 609ns - DeserializeAndMergeTime: 0ns - ExecTime: 42.592us - GetResultsTime: 7.175us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 34ns - HashTableSize: 0 - InsertKeysToColumnTime: 476ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 18.986us - ProjectionTime: 7.120us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s310ms PipelineXTask (index=18):(Active: 262.453us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 135.307us - CloseTime: 12.223us - GetBlockTime: 18.695us - OpenTime: 4.352us - PrepareTime: 104.620us - SinkTime: 84.727us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 238.628us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.466ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.295us - CompressTime: 0ns - ExecTime: 165.529us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 55.195us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.226us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 353ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 463ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.611us - GetResultsTime: 4.685us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 66ns - HashTableSize: 0 - InsertKeysToColumnTime: 270ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.169us - ProjectionTime: 5.685us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s306ms PipelineXTask (index=20):(Active: 225.125us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 94.872us - CloseTime: 11.578us - GetBlockTime: 11.20us - OpenTime: 2.397us - PrepareTime: 109.618us - SinkTime: 66.734us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 206.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.360ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.489us - CompressTime: 0ns - ExecTime: 158.773us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.399us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 536ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 313ns - DeserializeAndMergeTime: 0ns - ExecTime: 16.689us - GetResultsTime: 2.445us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 42ns - HashTableSize: 0 - InsertKeysToColumnTime: 205ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.322us - ProjectionTime: 4.257us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s283ms PipelineXTask (index=22):(Active: 200.833us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 83.283us - CloseTime: 19.965us - GetBlockTime: 10.82us - OpenTime: 3.370us - PrepareTime: 89.285us - SinkTime: 54.11us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 175.301us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.699ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.267us - CompressTime: 0ns - ExecTime: 134.322us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.962us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.339us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 509ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 163ns - DeserializeAndMergeTime: 0ns - ExecTime: 14.222us - GetResultsTime: 2.94us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 34ns - HashTableSize: 0 - InsertKeysToColumnTime: 183ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.956us - ProjectionTime: 4.132us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s276ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 117.933us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 19.839us - CloseTime: 14.282us - GetBlockTime: 3.76us - OpenTime: 2.101us - PrepareTime: 76.933us - SinkTime: 2.783us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.158us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.440ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 716ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.10us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 31.534us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.611us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.142us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 16.309us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s227ms PipelineXTask (index=3):(Active: 159.942us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.773us - CloseTime: 3.679us - GetBlockTime: 1.702us - OpenTime: 2.944us - PrepareTime: 129.265us - SinkTime: 2.813us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.444us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.466ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 289ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.324us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.3us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.927us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 81.384us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s227ms PipelineXTask (index=5):(Active: 104.471us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.80us - CloseTime: 12.781us - GetBlockTime: 1.880us - OpenTime: 4.847us - PrepareTime: 51.91us - SinkTime: 2.868us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.551us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.371ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 503ns - DeserializeAndMergeTime: 0ns - ExecTime: 18.750us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 15.787us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.208us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 18.442us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s204ms PipelineXTask (index=7):(Active: 90.638us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 18.517us - CloseTime: 3.582us - GetBlockTime: 2.222us - OpenTime: 2.682us - PrepareTime: 61.584us - SinkTime: 3.216us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.431ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 397ns - DeserializeAndMergeTime: 0ns - ExecTime: 30.594us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.724us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.890us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.526us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 17.127us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s227ms PipelineXTask (index=9):(Active: 95.357us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.78us - CloseTime: 13.267us - GetBlockTime: 3.238us - OpenTime: 2.434us - PrepareTime: 56.802us - SinkTime: 3.497us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.725us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.255ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 930ns - DeserializeAndMergeTime: 0ns - ExecTime: 29.825us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.714us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.773us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 12.79us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s228ms PipelineXTask (index=11):(Active: 80.444us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 16.416us - CloseTime: 3.561us - GetBlockTime: 1.608us - OpenTime: 2.574us - PrepareTime: 54.266us - SinkTime: 1.501us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 72.595us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.312ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 543ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.302us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.295us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.567us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.0us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 17.953us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s228ms PipelineXTask (index=13):(Active: 124.420us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.60us - CloseTime: 3.228us - GetBlockTime: 1.491us - OpenTime: 2.58us - PrepareTime: 100.197us - SinkTime: 2.280us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.585us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.345ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 279ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.677us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 59.2us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.565us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.268us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 14.484us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s228ms PipelineXTask (index=15):(Active: 112.180us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.460us - CloseTime: 13.598us - GetBlockTime: 2.786us - OpenTime: 3.560us - PrepareTime: 57.629us - SinkTime: 3.294us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.782us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.803ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 4.50us - DeserializeAndMergeTime: 0ns - ExecTime: 29.983us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.622us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.858us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.625us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 18.597us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s227ms PipelineXTask (index=17):(Active: 86.711us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.200us - CloseTime: 3.404us - GetBlockTime: 2.22us - OpenTime: 2.978us - PrepareTime: 56.269us - SinkTime: 1.627us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.306us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 89.463ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 313ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.668us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.544us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.703us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.210us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 14.577us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s224ms PipelineXTask (index=19):(Active: 89.649us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.529us - CloseTime: 3.423us - GetBlockTime: 1.682us - OpenTime: 2.663us - PrepareTime: 52.93us - SinkTime: 8.777us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.240us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 89.480ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 318ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.841us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 13.433us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.602us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.120us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 19.927us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s224ms PipelineXTask (index=21):(Active: 107.749us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.126us - CloseTime: 8.47us - GetBlockTime: 3.207us - OpenTime: 2.844us - PrepareTime: 57.715us - SinkTime: 3.686us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.332us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 61.139ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 537ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.722us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.777us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.648us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.498us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 16.722us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s226ms PipelineXTask (index=23):(Active: 133.668us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 18.532us - CloseTime: 2.994us - GetBlockTime: 1.858us - OpenTime: 3.419us - PrepareTime: 103.144us - SinkTime: 1.989us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 125.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.302ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 529ns - DeserializeAndMergeTime: 0ns - ExecTime: 51.647us - ExprTime: 0ns - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - InputRows: 0 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 48.924us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.70us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 3.32 KB - OpenTime: 38.33us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s227ms Fragment 101: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 550.932us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 202.271us - CloseTime: 45.974us - GetBlockTime: 67.959us - OpenTime: 16.277us - PrepareTime: 277.642us - SinkTime: 82.205us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 493.618us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.259ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.647us - CompressTime: 0ns - ExecTime: 184.156us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.807us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 87.279us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 470ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.377us - DeserializeAndMergeTime: 0ns - ExecTime: 54.720us - ExprTime: 0ns - GetResultsTime: 16.825us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 137ns - HashTableSize: 0 - InsertKeysToColumnTime: 313ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 31.12us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 7.194us - SerializeKeyTime: 0ns - SerializeResultTime: 19.488us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.245us - ExecTime: 32.531us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.266us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.150us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.461us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 501.128ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.228us - ExecTime: 34.500us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.903us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.613us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.347us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.129us - ExecTime: 48.127us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 28.53us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.605us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.633us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s457ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.38us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.975us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s197ms PipelineXTask (index=5):(Active: 533.372us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 193.406us - CloseTime: 40.204us - GetBlockTime: 56.580us - OpenTime: 18.753us - PrepareTime: 272.663us - SinkTime: 78.803us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 481.464us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.860ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.405us - CompressTime: 0ns - ExecTime: 183.675us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.724us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 92.669us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 504ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.584us - DeserializeAndMergeTime: 0ns - ExecTime: 53.887us - ExprTime: 0ns - GetResultsTime: 8.919us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 118ns - HashTableSize: 0 - InsertKeysToColumnTime: 256ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 39.128us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.678us - SerializeKeyTime: 0ns - SerializeResultTime: 11.155us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.887us - ExecTime: 34.175us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.100us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.272us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 498.734ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.756us - ExecTime: 27.472us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.723us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.539us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.790us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.267us - ExecTime: 36.277us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.227us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.421us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.848us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s470ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.556us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.574us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.363us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s175ms PipelineXTask (index=10):(Active: 514.636us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 155.152us - CloseTime: 27.90us - GetBlockTime: 57.609us - OpenTime: 7.940us - PrepareTime: 318.854us - SinkTime: 65.878us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 479.185us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.367ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.605us - CompressTime: 0ns - ExecTime: 140.119us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.916us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.149us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 663ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 669ns - DeserializeAndMergeTime: 0ns - ExecTime: 78.768us - ExprTime: 0ns - GetResultsTime: 6.284us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 165ns - HashTableSize: 0 - InsertKeysToColumnTime: 209ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 53.541us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.284us - SerializeKeyTime: 0ns - SerializeResultTime: 22.688us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.769us - ExecTime: 26.947us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.297us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.202us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.511us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 441.661ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.249us - ExecTime: 20.729us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.131us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.306us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.792us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.666us - ExecTime: 20.207us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 6.960us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.713us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.613us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s458ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.876us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.43us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.596us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s186ms PipelineXTask (index=15):(Active: 566.472us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 202.128us - CloseTime: 45.650us - GetBlockTime: 66.300us - OpenTime: 12.513us - PrepareTime: 299.660us - SinkTime: 91.293us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 512.226us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.150ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.670us - CompressTime: 0ns - ExecTime: 212.914us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.286us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 108.234us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 340ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.355us - DeserializeAndMergeTime: 0ns - ExecTime: 55.766us - ExprTime: 0ns - GetResultsTime: 9.589us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 113ns - HashTableSize: 0 - InsertKeysToColumnTime: 299ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 38.435us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.357us - SerializeKeyTime: 0ns - SerializeResultTime: 12.548us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.342us - ExecTime: 38.978us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 23.688us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.701us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.46us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 432.825ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.98us - ExecTime: 31.781us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.884us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.313us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.189us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.402us - ExecTime: 33.699us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.32us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.619us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.885us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s467ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.527us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.722us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s198ms PipelineXTask (index=20):(Active: 562.256us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 200.296us - CloseTime: 42.961us - GetBlockTime: 64.535us - OpenTime: 12.743us - PrepareTime: 297.196us - SinkTime: 80.261us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 507.19us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 244.209ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.885us - CompressTime: 0ns - ExecTime: 181.409us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.912us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.511us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 294ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 782ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.646us - ExprTime: 0ns - GetResultsTime: 8.487us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 52ns - HashTableSize: 0 - InsertKeysToColumnTime: 466ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.909us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.261us - SerializeKeyTime: 0ns - SerializeResultTime: 11.68us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.671us - ExecTime: 34.115us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.490us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.677us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.697us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 349.378ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.647us - ExecTime: 25.724us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.523us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.453us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.46us - ExecTime: 39.798us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.562us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.369us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.182us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s438ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.230us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.594us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.798us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s193ms PipelineXTask (index=25):(Active: 532.839us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 182.58us - CloseTime: 33.17us - GetBlockTime: 48.929us - OpenTime: 14.167us - PrepareTime: 297.256us - SinkTime: 88.472us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 492.93us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.247ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.877us - CompressTime: 0ns - ExecTime: 167.4us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.127us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.941us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 481ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 689ns - DeserializeAndMergeTime: 0ns - ExecTime: 70.916us - ExprTime: 0ns - GetResultsTime: 7.326us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 39ns - HashTableSize: 0 - InsertKeysToColumnTime: 170ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 59.145us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.652us - SerializeKeyTime: 0ns - SerializeResultTime: 9.557us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.153us - ExecTime: 38.686us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 26.471us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.240us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.350us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 494.710ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.644us - ExecTime: 27.674us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.973us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.849us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.843us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.419us - ExecTime: 44.507us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 29.212us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.807us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.355us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s438ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.848us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.997us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.446us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s198ms PipelineXTask (index=30):(Active: 610.740us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 196.698us - CloseTime: 48.986us - GetBlockTime: 65.317us - OpenTime: 8.883us - PrepareTime: 350.334us - SinkTime: 89.1us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 552.444us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.606ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.790us - CompressTime: 0ns - ExecTime: 178.392us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.380us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.143us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 652ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 864ns - DeserializeAndMergeTime: 0ns - ExecTime: 58.636us - ExprTime: 0ns - GetResultsTime: 7.118us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 118ns - HashTableSize: 0 - InsertKeysToColumnTime: 286ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 46.921us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.939us - SerializeKeyTime: 0ns - SerializeResultTime: 9.66us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.10us - ExecTime: 25.202us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.219us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.595us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.158us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 501.919ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.81us - ExecTime: 45.845us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.691us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.320us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 22.110us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.886us - ExecTime: 25.679us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.163us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.71us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.984us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s455ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 20.391us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.335us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.438us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s186ms PipelineXTask (index=35):(Active: 610.129us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 238.771us - CloseTime: 35.849us - GetBlockTime: 74.433us - OpenTime: 15.368us - PrepareTime: 311.810us - SinkTime: 112.228us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 562.804us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.477ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.563us - CompressTime: 0ns - ExecTime: 200.940us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 46.706us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.772us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 518ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.205us - DeserializeAndMergeTime: 0ns - ExecTime: 50.663us - ExprTime: 0ns - GetResultsTime: 11.741us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 94ns - HashTableSize: 0 - InsertKeysToColumnTime: 480ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.887us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 5.59us - SerializeKeyTime: 0ns - SerializeResultTime: 14.582us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.699us - ExecTime: 32.288us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.929us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.505us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 446.248ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.803us - ExecTime: 40.669us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.610us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.72us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.547us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.55us - ExecTime: 39.679us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.823us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.817us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.78us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s481ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.178us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.801us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.169us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s197ms PipelineXTask (index=40):(Active: 549.686us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 188.276us - CloseTime: 31.998us - GetBlockTime: 67.1us - OpenTime: 14.508us - PrepareTime: 308.261us - SinkTime: 70.556us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 506.879us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.850ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.445us - CompressTime: 0ns - ExecTime: 185.356us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.257us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 103.592us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 480ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.302us - DeserializeAndMergeTime: 0ns - ExecTime: 45.485us - ExprTime: 0ns - GetResultsTime: 9.791us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 143ns - HashTableSize: 0 - InsertKeysToColumnTime: 297ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.379us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.118us - SerializeKeyTime: 0ns - SerializeResultTime: 12.924us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.107us - ExecTime: 46.703us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 31.786us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.580us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.515us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 269.70ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.544us - ExecTime: 34.256us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.257us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.948us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.237us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.248us - ExecTime: 33.788us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.966us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.392us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.947us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s401ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.701us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.180us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s195ms PipelineXTask (index=45):(Active: 523.644us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 207.803us - CloseTime: 39.864us - GetBlockTime: 67.66us - OpenTime: 11.951us - PrepareTime: 256.652us - SinkTime: 73.315us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 452.335us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 254.454ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.29us - CompressTime: 0ns - ExecTime: 157.944us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.864us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.944us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 380ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.7us - DeserializeAndMergeTime: 0ns - ExecTime: 52.127us - ExprTime: 0ns - GetResultsTime: 8.880us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 245ns - HashTableSize: 0 - InsertKeysToColumnTime: 454ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 37.433us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.590us - SerializeKeyTime: 0ns - SerializeResultTime: 11.918us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.493us - ExecTime: 29.159us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.717us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.14us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.643us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 340.929ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.858us - ExecTime: 29.590us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.925us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.407us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.984us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.165us - ExecTime: 38.723us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.476us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.720us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.901us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s408ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.862us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.494us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.335us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s193ms PipelineXTask (index=50):(Active: 612.998us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 277.556us - CloseTime: 37.646us - GetBlockTime: 93.166us - OpenTime: 15.217us - PrepareTime: 275.355us - SinkTime: 132.463us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 565.143us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.241ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.510us - CompressTime: 0ns - ExecTime: 218.85us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 64.46us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.166us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 634ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.814us - DeserializeAndMergeTime: 0ns - ExecTime: 61.921us - ExprTime: 0ns - GetResultsTime: 12.612us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 153ns - HashTableSize: 0 - InsertKeysToColumnTime: 593ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 40.406us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.143us - SerializeKeyTime: 0ns - SerializeResultTime: 17.31us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.461us - ExecTime: 42.51us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.188us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.648us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.542us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 485.614ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.841us - ExecTime: 38.104us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.629us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.46us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.951us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.303us - ExecTime: 40.310us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.51us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.671us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.133us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s475ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.680us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.74us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s188ms PipelineXTask (index=55):(Active: 599.509us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 236.148us - CloseTime: 43.903us - GetBlockTime: 69.562us - OpenTime: 12.57us - PrepareTime: 299.799us - SinkTime: 111.829us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 545.612us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.261ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.178us - CompressTime: 0ns - ExecTime: 213.334us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.488us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 85.64us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 426ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.720us - DeserializeAndMergeTime: 0ns - ExecTime: 46.302us - ExprTime: 0ns - GetResultsTime: 13.93us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 45ns - HashTableSize: 0 - InsertKeysToColumnTime: 856ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.20us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.216us - SerializeKeyTime: 0ns - SerializeResultTime: 16.268us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.610us - ExecTime: 29.969us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.184us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.905us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.28us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 424.745ms HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.758us - ExecTime: 31.112us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.154us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.642us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.833us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.980us - ExecTime: 33.414us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.235us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.174us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.397us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s484ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.915us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.388us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s175ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 871.303us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 775.315us - CloseTime: 14.355us - GetBlockTime: 122.870us - OpenTime: 3.454us - PrepareTime: 71.775us - SinkTime: 588.45us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 842.455us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 201.100ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.533us - BuildRows: 3.853K (3853) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 310.119us - BuildTableInsertTime: 211.643us - BuildTableTime: 221.850us - CloseTime: 0ns - ExecTime: 606.445us - InputRows: 3.852K (3852) - MemoryUsage: - BuildBlocks: 176.79 KB - BuildKeyArena: 136.00 KB - HashTable: 47.05 KB - PeakMemoryUsage: 355.84 KB - OpenTime: 24.766us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.501us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 147.621us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 258.00 KB - MemoryUsage: - Blocks: 107.00 KB - PeakMemoryUsage: 107.00 KB - OpenTime: 22.939us - ProjectionTime: 0ns - RowsProduced: 3.852K (3852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s975ms PipelineXTask (index=6):(Active: 833.193us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 773.522us - CloseTime: 8.200us - GetBlockTime: 106.202us - OpenTime: 2.186us - PrepareTime: 44.804us - SinkTime: 596.250us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 811.708us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 190.408ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.212us - BuildRows: 4.186K (4186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 312.894us - BuildTableInsertTime: 233.16us - BuildTableTime: 243.555us - CloseTime: 0ns - ExecTime: 602.926us - InputRows: 4.185K (4185) - MemoryUsage: - BuildBlocks: 192.07 KB - BuildKeyArena: 148.00 KB - HashTable: 48.36 KB - PeakMemoryUsage: 384.42 KB - OpenTime: 9.130us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.527us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.215us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 276.00 KB - MemoryUsage: - Blocks: 119.00 KB - PeakMemoryUsage: 119.00 KB - OpenTime: 11.396us - ProjectionTime: 0ns - RowsProduced: 4.185K (4185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s986ms PipelineXTask (index=11):(Active: 1.245ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.129ms - CloseTime: 14.63us - GetBlockTime: 152.270us - OpenTime: 1.970us - PrepareTime: 93.80us - SinkTime: 908.815us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.215ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.75ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.991us - BuildRows: 6.289K (6289) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 450.744us - BuildTableInsertTime: 390.992us - BuildTableTime: 406.132us - CloseTime: 0ns - ExecTime: 944.136us - InputRows: 6.288K (6288) - MemoryUsage: - BuildBlocks: 288.58 KB - BuildKeyArena: 220.00 KB - HashTable: 56.57 KB - PeakMemoryUsage: 561.14 KB - OpenTime: 40.128us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.513us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 482.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 23.353us - ProjectionTime: 0ns - RowsProduced: 6.288K (6288) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s63ms PipelineXTask (index=16):(Active: 898.588us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 828.357us - CloseTime: 15.348us - GetBlockTime: 105.843us - OpenTime: 3.925us - PrepareTime: 46.0us - SinkTime: 667.922us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 870.844us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 156.70ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.451us - BuildRows: 5.708K (5708) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 351.414us - BuildTableInsertTime: 257.407us - BuildTableTime: 271.109us - CloseTime: 0ns - ExecTime: 681.705us - InputRows: 5.707K (5707) - MemoryUsage: - BuildBlocks: 261.94 KB - BuildKeyArena: 200.00 KB - HashTable: 54.30 KB - PeakMemoryUsage: 512.23 KB - OpenTime: 17.194us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.965us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 126.99us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 344.00 KB - MemoryUsage: - Blocks: 234.00 KB - PeakMemoryUsage: 234.00 KB - OpenTime: 13.318us - ProjectionTime: 0ns - RowsProduced: 5.707K (5707) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s951ms PipelineXTask (index=21):(Active: 758.749us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 691.371us - CloseTime: 11.679us - GetBlockTime: 117.779us - OpenTime: 2.526us - PrepareTime: 48.1us - SinkTime: 496.194us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 727.169us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.753ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.355us - BuildRows: 4.05K (4050) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 233.520us - BuildTableInsertTime: 193.719us - BuildTableTime: 203.996us - CloseTime: 0ns - ExecTime: 498.264us - InputRows: 4.049K (4049) - MemoryUsage: - BuildBlocks: 185.84 KB - BuildKeyArena: 144.00 KB - HashTable: 47.82 KB - PeakMemoryUsage: 373.66 KB - OpenTime: 8.591us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.591us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 135.146us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 113.00 KB - PeakMemoryUsage: 113.00 KB - OpenTime: 16.243us - ProjectionTime: 0ns - RowsProduced: 4.049K (4049) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s987ms PipelineXTask (index=26):(Active: 736.443us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 673.655us - CloseTime: 6.478us - GetBlockTime: 125.627us - OpenTime: 3.12us - PrepareTime: 48.895us - SinkTime: 488.460us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 714.819us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.759ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.933us - BuildRows: 4.021K (4021) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 212.175us - BuildTableInsertTime: 228.102us - BuildTableTime: 237.322us - CloseTime: 0ns - ExecTime: 499.629us - InputRows: 4.02K (4020) - MemoryUsage: - BuildBlocks: 184.50 KB - BuildKeyArena: 144.00 KB - HashTable: 47.71 KB - PeakMemoryUsage: 372.20 KB - OpenTime: 14.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.355us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 132.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 262.00 KB - MemoryUsage: - Blocks: 109.00 KB - PeakMemoryUsage: 109.00 KB - OpenTime: 13.857us - ProjectionTime: 0ns - RowsProduced: 4.02K (4020) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s988ms PipelineXTask (index=31):(Active: 7.509ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.439ms - CloseTime: 4.470us - GetBlockTime: 6.924ms - OpenTime: 1.400us - PrepareTime: 60.478us - SinkTime: 459.763us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 702.363us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.589ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.95us - BuildRows: 3.994K (3994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 219.115us - BuildTableInsertTime: 199.207us - BuildTableTime: 206.881us - CloseTime: 0ns - ExecTime: 465.213us - InputRows: 3.993K (3993) - MemoryUsage: - BuildBlocks: 183.26 KB - BuildKeyArena: 144.00 KB - HashTable: 47.61 KB - PeakMemoryUsage: 370.86 KB - OpenTime: 8.781us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.992us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 6.933ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 111.00 KB - PeakMemoryUsage: 111.00 KB - OpenTime: 13.579us - ProjectionTime: 0ns - RowsProduced: 3.993K (3993) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s978ms PipelineXTask (index=36):(Active: 828.973us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 761.541us - CloseTime: 19.209us - GetBlockTime: 130.86us - OpenTime: 3.470us - PrepareTime: 38.901us - SinkTime: 570.843us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 798.377us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.397ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.910us - BuildRows: 4.285K (4285) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 289.979us - BuildTableInsertTime: 216.238us - BuildTableTime: 238.979us - CloseTime: 0ns - ExecTime: 578.906us - InputRows: 4.284K (4284) - MemoryUsage: - BuildBlocks: 196.62 KB - BuildKeyArena: 152.00 KB - HashTable: 48.74 KB - PeakMemoryUsage: 393.36 KB - OpenTime: 10.253us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 18.549us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 153.523us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 284.00 KB - MemoryUsage: - Blocks: 190.00 KB - PeakMemoryUsage: 190.00 KB - OpenTime: 12.908us - ProjectionTime: 0ns - RowsProduced: 4.284K (4284) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s4ms PipelineXTask (index=41):(Active: 672.937us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 614.80us - CloseTime: 7.922us - GetBlockTime: 141.21us - OpenTime: 2.857us - PrepareTime: 43.181us - SinkTime: 422.447us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.507us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 156.949ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.857us - BuildRows: 3.929K (3929) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 207.913us - BuildTableInsertTime: 170.936us - BuildTableTime: 179.575us - CloseTime: 0ns - ExecTime: 429.438us - InputRows: 3.928K (3928) - MemoryUsage: - BuildBlocks: 180.28 KB - BuildKeyArena: 140.00 KB - HashTable: 47.35 KB - PeakMemoryUsage: 363.62 KB - OpenTime: 9.604us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 155.164us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 260.00 KB - MemoryUsage: - Blocks: 172.00 KB - PeakMemoryUsage: 172.00 KB - OpenTime: 14.343us - ProjectionTime: 0ns - RowsProduced: 3.928K (3928) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s951ms PipelineXTask (index=46):(Active: 732.547us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 679.711us - CloseTime: 4.652us - GetBlockTime: 147.728us - OpenTime: 3.174us - PrepareTime: 39.314us - SinkTime: 484.528us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 716.631us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 127.157ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.589us - BuildRows: 3.79K (3790) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 252.325us - BuildTableInsertTime: 194.342us - BuildTableTime: 201.692us - CloseTime: 0ns - ExecTime: 494.799us - InputRows: 3.789K (3789) - MemoryUsage: - BuildBlocks: 173.90 KB - BuildKeyArena: 136.00 KB - HashTable: 46.81 KB - PeakMemoryUsage: 352.70 KB - OpenTime: 12.460us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.199us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 152.101us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 252.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 8.217us - ProjectionTime: 0ns - RowsProduced: 3.789K (3789) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s4ms PipelineXTask (index=51):(Active: 782.52us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 725.736us - CloseTime: 5.169us - GetBlockTime: 103.490us - OpenTime: 1.970us - PrepareTime: 45.639us - SinkTime: 567.668us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 764.362us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 186.264ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.183us - BuildRows: 4.506K (4506) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 268.274us - BuildTableInsertTime: 242.19us - BuildTableTime: 252.992us - CloseTime: 0ns - ExecTime: 576.340us - InputRows: 4.505K (4505) - MemoryUsage: - BuildBlocks: 206.76 KB - BuildKeyArena: 160.00 KB - HashTable: 49.61 KB - PeakMemoryUsage: 412.36 KB - OpenTime: 11.659us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.275us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 108.417us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 306.00 KB - MemoryUsage: - Blocks: 127.00 KB - PeakMemoryUsage: 127.00 KB - OpenTime: 11.864us - ProjectionTime: 0ns - RowsProduced: 4.505K (4505) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s978ms PipelineXTask (index=56):(Active: 751.498us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 681.708us - CloseTime: 6.763us - GetBlockTime: 114.379us - OpenTime: 2.980us - PrepareTime: 55.235us - SinkTime: 505.815us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 728.938us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.744ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.826us - BuildRows: 3.988K (3988) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 228.919us - BuildTableInsertTime: 227.685us - BuildTableTime: 237.238us - CloseTime: 0ns - ExecTime: 511.235us - InputRows: 3.987K (3987) - MemoryUsage: - BuildBlocks: 182.99 KB - BuildKeyArena: 144.00 KB - HashTable: 47.58 KB - PeakMemoryUsage: 370.56 KB - OpenTime: 8.134us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.687us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 121.177us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 262.00 KB - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 84.00 KB - OpenTime: 11.770us - ProjectionTime: 0ns - RowsProduced: 3.987K (3987) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s63ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 2.124ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.34ms - CloseTime: 3.237us - GetBlockTime: 642.757us - OpenTime: 2.458us - PrepareTime: 80.793us - SinkTime: 1.356ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.112ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.591ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.206us - BuildRows: 12.817K (12817) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 579.997us - BuildTableInsertTime: 727.253us - BuildTableTime: 743.606us - CloseTime: 0ns - ExecTime: 1.361ms - InputRows: 12.816K (12816) - MemoryUsage: - BuildBlocks: 488.11 KB - BuildKeyArena: 256.00 KB - HashTable: 114.07 KB - PeakMemoryUsage: 854.17 KB - OpenTime: 6.585us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 681ns - DeserializeAndMergeTime: 0ns - ExecTime: 652.372us - GetResultsTime: 612.897us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 76.53us - HashTableSize: 12.816K (12816) - InsertKeysToColumnTime: 332.691us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.35us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 452.285ms PipelineXTask (index=7):(Active: 2.674ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.549ms - CloseTime: 3.3us - GetBlockTime: 994.765us - OpenTime: 846ns - PrepareTime: 117.624us - SinkTime: 1.535ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.648ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.538ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.693us - BuildRows: 12.635K (12635) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 768.492us - BuildTableInsertTime: 724.372us - BuildTableTime: 741.327us - CloseTime: 0ns - ExecTime: 1.611ms - InputRows: 12.634K (12634) - MemoryUsage: - BuildBlocks: 481.18 KB - BuildKeyArena: 252.00 KB - HashTable: 113.36 KB - PeakMemoryUsage: 842.53 KB - OpenTime: 78.11us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 468ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.0ms - GetResultsTime: 957.188us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 104.331us - HashTableSize: 12.634K (12634) - InsertKeysToColumnTime: 424.148us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.775us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 431.55ms PipelineXTask (index=12):(Active: 1.508ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.459ms - CloseTime: 2.914us - GetBlockTime: 645.372us - OpenTime: 3.425us - PrepareTime: 37.30us - SinkTime: 778.755us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.468ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.984ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.958us - BuildRows: 12.7K (12700) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 446.617us - BuildTableInsertTime: 290.47us - BuildTableTime: 307.817us - CloseTime: 0ns - ExecTime: 783.342us - InputRows: 12.699K (12699) - MemoryUsage: - BuildBlocks: 483.65 KB - BuildKeyArena: 256.00 KB - HashTable: 113.61 KB - PeakMemoryUsage: 849.26 KB - OpenTime: 5.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 900ns - DeserializeAndMergeTime: 0ns - ExecTime: 651.521us - GetResultsTime: 621.197us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 85.551us - HashTableSize: 12.699K (12699) - InsertKeysToColumnTime: 325.909us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.337us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 399.660ms PipelineXTask (index=17):(Active: 2.524ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.471ms - CloseTime: 2.181us - GetBlockTime: 991.430us - OpenTime: 1.874us - PrepareTime: 43.155us - SinkTime: 1.452ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.479ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.165ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.331us - BuildRows: 12.762K (12762) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 694.274us - BuildTableInsertTime: 693.262us - BuildTableTime: 721.886us - CloseTime: 0ns - ExecTime: 1.454ms - InputRows: 12.761K (12761) - MemoryUsage: - BuildBlocks: 486.01 KB - BuildKeyArena: 256.00 KB - HashTable: 113.86 KB - PeakMemoryUsage: 851.86 KB - OpenTime: 6.744us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 450ns - DeserializeAndMergeTime: 0ns - ExecTime: 997.471us - GetResultsTime: 961.262us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 138.694us - HashTableSize: 12.761K (12761) - InsertKeysToColumnTime: 404.332us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.511us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 430.766ms PipelineXTask (index=22):(Active: 1.724ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.594ms - CloseTime: 2.263us - GetBlockTime: 824.701us - OpenTime: 2.416us - PrepareTime: 118.704us - SinkTime: 741.255us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.713ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.36ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.860us - BuildRows: 12.662K (12662) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 313.70us - BuildTableInsertTime: 373.76us - BuildTableTime: 389.896us - CloseTime: 0ns - ExecTime: 820.862us - InputRows: 12.661K (12661) - MemoryUsage: - BuildBlocks: 482.21 KB - BuildKeyArena: 252.00 KB - HashTable: 113.46 KB - PeakMemoryUsage: 843.66 KB - OpenTime: 82.25us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 536ns - DeserializeAndMergeTime: 0ns - ExecTime: 837.279us - GetResultsTime: 791.929us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 78.820us - HashTableSize: 12.661K (12661) - InsertKeysToColumnTime: 377.692us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.37us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 396.140ms PipelineXTask (index=27):(Active: 1.982ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.939ms - CloseTime: 3.650us - GetBlockTime: 908.121us - OpenTime: 2.529us - PrepareTime: 32.249us - SinkTime: 1.4ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.951ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.767ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.368us - BuildRows: 12.575K (12575) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 246.995us - BuildTableInsertTime: 705.146us - BuildTableTime: 722.922us - CloseTime: 0ns - ExecTime: 1.8ms - InputRows: 12.574K (12574) - MemoryUsage: - BuildBlocks: 478.89 KB - BuildKeyArena: 252.00 KB - HashTable: 113.13 KB - PeakMemoryUsage: 840.01 KB - OpenTime: 5.533us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 819ns - DeserializeAndMergeTime: 0ns - ExecTime: 911.184us - GetResultsTime: 876.933us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 117.376us - HashTableSize: 12.574K (12574) - InsertKeysToColumnTime: 408.617us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.32us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 468.695ms PipelineXTask (index=32):(Active: 2.328ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.269ms - CloseTime: 2.472us - GetBlockTime: 789.724us - OpenTime: 2.986us - PrepareTime: 50.624us - SinkTime: 1.449ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.315ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.913ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.364us - BuildRows: 12.789K (12789) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 705.522us - BuildTableInsertTime: 698.750us - BuildTableTime: 713.226us - CloseTime: 0ns - ExecTime: 1.453ms - InputRows: 12.788K (12788) - MemoryUsage: - BuildBlocks: 487.04 KB - BuildKeyArena: 256.00 KB - HashTable: 113.96 KB - PeakMemoryUsage: 853.00 KB - OpenTime: 5.3us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 461ns - DeserializeAndMergeTime: 0ns - ExecTime: 793.901us - GetResultsTime: 755.59us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 83.431us - HashTableSize: 12.788K (12788) - InsertKeysToColumnTime: 327.218us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.146us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 399.942ms PipelineXTask (index=37):(Active: 1.972ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.908ms - CloseTime: 2.621us - GetBlockTime: 668.863us - OpenTime: 1.959us - PrepareTime: 54.476us - SinkTime: 1.207ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.962ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.823ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.741us - BuildRows: 12.578K (12578) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 473.803us - BuildTableInsertTime: 678.717us - BuildTableTime: 701.981us - CloseTime: 0ns - ExecTime: 1.216ms - InputRows: 12.577K (12577) - MemoryUsage: - BuildBlocks: 479.01 KB - BuildKeyArena: 252.00 KB - HashTable: 113.14 KB - PeakMemoryUsage: 840.14 KB - OpenTime: 10.422us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 608ns - DeserializeAndMergeTime: 0ns - ExecTime: 672.726us - GetResultsTime: 639.864us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 83.900us - HashTableSize: 12.577K (12577) - InsertKeysToColumnTime: 326.59us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.816us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 410.837ms PipelineXTask (index=42):(Active: 1.790ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.737ms - CloseTime: 3.577us - GetBlockTime: 821.31us - OpenTime: 1.865us - PrepareTime: 43.602us - SinkTime: 888.950us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.778ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.135ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.493us - BuildRows: 12.844K (12844) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 349.514us - BuildTableInsertTime: 482.28us - BuildTableTime: 507.679us - CloseTime: 0ns - ExecTime: 893.602us - InputRows: 12.843K (12843) - MemoryUsage: - BuildBlocks: 489.14 KB - BuildKeyArena: 256.00 KB - HashTable: 114.18 KB - PeakMemoryUsage: 855.31 KB - OpenTime: 6.692us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 857ns - DeserializeAndMergeTime: 0ns - ExecTime: 831.203us - GetResultsTime: 779.828us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 101.521us - HashTableSize: 12.843K (12843) - InsertKeysToColumnTime: 338.613us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.440us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 450.63ms PipelineXTask (index=47):(Active: 1.576ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.530ms - CloseTime: 1.958us - GetBlockTime: 712.171us - OpenTime: 2.37us - PrepareTime: 37.646us - SinkTime: 790.14us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.566ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.576ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.126us - BuildRows: 12.729K (12729) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 379.867us - BuildTableInsertTime: 366.218us - BuildTableTime: 381.609us - CloseTime: 0ns - ExecTime: 795.620us - InputRows: 12.728K (12728) - MemoryUsage: - BuildBlocks: 484.76 KB - BuildKeyArena: 256.00 KB - HashTable: 113.73 KB - PeakMemoryUsage: 850.48 KB - OpenTime: 7.902us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 503ns - DeserializeAndMergeTime: 0ns - ExecTime: 715.491us - GetResultsTime: 674.865us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 87.437us - HashTableSize: 12.728K (12728) - InsertKeysToColumnTime: 351.922us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.533us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 409.833ms PipelineXTask (index=52):(Active: 2.472ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.429ms - CloseTime: 4.94us - GetBlockTime: 902.464us - OpenTime: 1.633us - PrepareTime: 34.910us - SinkTime: 1.505ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.462ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.290ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.458us - BuildRows: 12.776K (12776) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 767.7us - BuildTableInsertTime: 680.77us - BuildTableTime: 701.537us - CloseTime: 0ns - ExecTime: 1.507ms - InputRows: 12.775K (12775) - MemoryUsage: - BuildBlocks: 486.55 KB - BuildKeyArena: 256.00 KB - HashTable: 113.91 KB - PeakMemoryUsage: 852.45 KB - OpenTime: 4.691us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 682ns - DeserializeAndMergeTime: 0ns - ExecTime: 907.219us - GetResultsTime: 867.947us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 115.53us - HashTableSize: 12.775K (12775) - InsertKeysToColumnTime: 382.208us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.63us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 460.886ms PipelineXTask (index=57):(Active: 1.391ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.348ms - CloseTime: 3.127us - GetBlockTime: 617.165us - OpenTime: 1.722us - PrepareTime: 34.415us - SinkTime: 706.405us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.382ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.912ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.249us - BuildRows: 12.564K (12564) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 237.503us - BuildTableInsertTime: 417.284us - BuildTableTime: 435.351us - CloseTime: 0ns - ExecTime: 710.400us - InputRows: 12.563K (12563) - MemoryUsage: - BuildBlocks: 478.47 KB - BuildKeyArena: 252.00 KB - HashTable: 113.08 KB - PeakMemoryUsage: 839.55 KB - OpenTime: 5.663us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 829ns - DeserializeAndMergeTime: 0ns - ExecTime: 623.830us - GetResultsTime: 585.682us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 78.364us - HashTableSize: 12.563K (12563) - InsertKeysToColumnTime: 325.85us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.230us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 389.569ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 20.275ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.178ms - CloseTime: 20.964us - GetBlockTime: 783.489us - OpenTime: 3.91us - PrepareTime: 67.282us - SinkTime: 19.239ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.172ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 828.697ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.719us - BuildRows: 128.005K (128005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.294ms - BuildTableInsertTime: 4.666ms - BuildTableTime: 4.845ms - CloseTime: 0ns - ExecTime: 19.249ms - InputRows: 128.004K (128004) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.84 MB - OpenTime: 21.147us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 17.153us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 792.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.54 MB - MemoryUsage: - Blocks: 3.55 MB - PeakMemoryUsage: 3.55 MB - OpenTime: 16.490us - ProjectionTime: 0ns - RowsProduced: 128.004K (128004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s809ms PipelineXTask (index=8):(Active: 10.766ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 10.693ms - CloseTime: 15.158us - GetBlockTime: 688.458us - OpenTime: 3.487us - PrepareTime: 50.556us - SinkTime: 9.806ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.718ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 839.272ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 24.334us - BuildRows: 128.654K (128654) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.119ms - BuildTableInsertTime: 6.360ms - BuildTableTime: 6.581ms - CloseTime: 0ns - ExecTime: 9.806ms - InputRows: 128.653K (128653) - MemoryUsage: - BuildBlocks: 3.93 MB - BuildKeyArena: 2.46 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.87 MB - OpenTime: 13.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 11.417us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 677.58us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.28 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 15.812us - ProjectionTime: 0ns - RowsProduced: 128.653K (128653) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s824ms PipelineXTask (index=13):(Active: 11.404ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 11.342ms - CloseTime: 12.643us - GetBlockTime: 676.45us - OpenTime: 2.580us - PrepareTime: 38.346us - SinkTime: 10.475ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.353ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 557.827ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.0us - BuildRows: 127.532K (127532) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.920ms - BuildTableInsertTime: 5.244ms - BuildTableTime: 5.432ms - CloseTime: 0ns - ExecTime: 10.464ms - InputRows: 127.531K (127531) - MemoryUsage: - BuildBlocks: 3.89 MB - BuildKeyArena: 2.44 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.81 MB - OpenTime: 6.48us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 9.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 665.448us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.55 MB - MemoryUsage: - Blocks: 1.00 MB - PeakMemoryUsage: 1.00 MB - OpenTime: 12.890us - ProjectionTime: 0ns - RowsProduced: 127.531K (127531) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s92ms PipelineXTask (index=18):(Active: 11.204ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 11.142ms - CloseTime: 12.90us - GetBlockTime: 679.404us - OpenTime: 2.204us - PrepareTime: 39.840us - SinkTime: 10.305ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.131ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 523.263ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.112us - BuildRows: 128.363K (128363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.453ms - BuildTableInsertTime: 5.525ms - BuildTableTime: 5.704ms - CloseTime: 0ns - ExecTime: 10.298ms - InputRows: 128.362K (128362) - MemoryUsage: - BuildBlocks: 3.92 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.86 MB - OpenTime: 6.219us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 10.188us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 667.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.28 MB - MemoryUsage: - Blocks: 1.17 MB - PeakMemoryUsage: 1.17 MB - OpenTime: 14.461us - ProjectionTime: 0ns - RowsProduced: 128.362K (128362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s133ms PipelineXTask (index=23):(Active: 9.735ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 9.648ms - CloseTime: 16.308us - GetBlockTime: 666.617us - OpenTime: 3.115us - PrepareTime: 45.327us - SinkTime: 8.800ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.671ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 593.407ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.352us - BuildRows: 127.865K (127865) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.15ms - BuildTableInsertTime: 4.489ms - BuildTableTime: 4.663ms - CloseTime: 0ns - ExecTime: 8.790ms - InputRows: 127.864K (127864) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 7.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 12.493us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 669.374us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.51 MB - MemoryUsage: - Blocks: 1.00 MB - PeakMemoryUsage: 1.00 MB - OpenTime: 19.795us - ProjectionTime: 0ns - RowsProduced: 127.864K (127864) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s122ms PipelineXTask (index=28):(Active: 9.250ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.188ms - CloseTime: 14.577us - GetBlockTime: 680.76us - OpenTime: 2.86us - PrepareTime: 41.438us - SinkTime: 8.359ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.149ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 858.45ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.670us - BuildRows: 128.03K (128030) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.273ms - BuildTableInsertTime: 4.824ms - BuildTableTime: 4.991ms - CloseTime: 0ns - ExecTime: 8.352ms - InputRows: 128.029K (128029) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.84 MB - OpenTime: 4.290us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 10.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 678.277us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.36 MB - MemoryUsage: - Blocks: 1.17 MB - PeakMemoryUsage: 1.17 MB - OpenTime: 16.196us - ProjectionTime: 0ns - RowsProduced: 128.029K (128029) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s808ms PipelineXTask (index=33):(Active: 11.675ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.586ms - CloseTime: 12.894us - GetBlockTime: 775.397us - OpenTime: 4.604us - PrepareTime: 63.556us - SinkTime: 10.655ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.466ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 653.713ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.138us - BuildRows: 128.241K (128241) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.572ms - BuildTableInsertTime: 5.783ms - BuildTableTime: 5.960ms - CloseTime: 0ns - ExecTime: 10.658ms - InputRows: 128.24K (128240) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 16.881us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 9.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 779.217us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.20 MB - MemoryUsage: - Blocks: 1.72 MB - PeakMemoryUsage: 1.72 MB - OpenTime: 20.173us - ProjectionTime: 0ns - RowsProduced: 128.24K (128240) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s994ms PipelineXTask (index=38):(Active: 19.997ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 19.936ms - CloseTime: 12.107us - GetBlockTime: 9.875ms - OpenTime: 2.366us - PrepareTime: 40.396us - SinkTime: 9.891ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.937ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 545.394ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.330us - BuildRows: 127.837K (127837) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.898ms - BuildTableInsertTime: 4.684ms - BuildTableTime: 4.882ms - CloseTime: 0ns - ExecTime: 9.878ms - InputRows: 127.836K (127836) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 8.518us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 9.43us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 838.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.48 MB - MemoryUsage: - Blocks: 1.05 MB - PeakMemoryUsage: 1.05 MB - OpenTime: 15.284us - ProjectionTime: 0ns - RowsProduced: 127.836K (127836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s117ms PipelineXTask (index=43):(Active: 35.313ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 35.212ms - CloseTime: 20.689us - GetBlockTime: 25.538ms - OpenTime: 1.994us - PrepareTime: 70.606us - SinkTime: 9.498ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.455ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 609.649ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.111us - BuildRows: 127.388K (127388) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.792ms - BuildTableInsertTime: 4.435ms - BuildTableTime: 4.605ms - CloseTime: 0ns - ExecTime: 9.503ms - InputRows: 127.387K (127387) - MemoryUsage: - BuildBlocks: 3.89 MB - BuildKeyArena: 2.44 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.81 MB - OpenTime: 19.699us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 16.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.552ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.40 MB - MemoryUsage: - Blocks: 1.11 MB - PeakMemoryUsage: 1.11 MB - OpenTime: 27.96us - ProjectionTime: 0ns - RowsProduced: 127.387K (127387) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s110ms PipelineXTask (index=48):(Active: 8.689ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.619ms - CloseTime: 11.738us - GetBlockTime: 650.224us - OpenTime: 2.404us - PrepareTime: 50.363us - SinkTime: 7.872ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.657ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 975.136ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.843us - BuildRows: 127.916K (127916) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.869ms - BuildTableInsertTime: 4.759ms - BuildTableTime: 4.917ms - CloseTime: 0ns - ExecTime: 7.866ms - InputRows: 127.915K (127915) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 4.136us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 8.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 668.944us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.38 MB - MemoryUsage: - Blocks: 3.52 MB - PeakMemoryUsage: 3.52 MB - OpenTime: 27.899us - ProjectionTime: 0ns - RowsProduced: 127.915K (127915) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s711ms PipelineXTask (index=53):(Active: 14.986ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 14.844ms - CloseTime: 24.649us - GetBlockTime: 5.838ms - OpenTime: 1.321us - PrepareTime: 110.881us - SinkTime: 8.878ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.817ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 853.663ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.325us - BuildRows: 128.235K (128235) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.538ms - BuildTableInsertTime: 5.76ms - BuildTableTime: 5.249ms - CloseTime: 0ns - ExecTime: 8.875ms - InputRows: 128.234K (128234) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 10.101us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 20.310us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.842ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.94 MB - MemoryUsage: - Blocks: 1.02 MB - PeakMemoryUsage: 1.02 MB - OpenTime: 18.118us - ProjectionTime: 0ns - RowsProduced: 128.234K (128234) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s809ms PipelineXTask (index=58):(Active: 18.877ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 18.742ms - CloseTime: 13.822us - GetBlockTime: 720.48us - OpenTime: 1.359us - PrepareTime: 107.730us - SinkTime: 17.883ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.68ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 867.663ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.751us - BuildRows: 128.325K (128325) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.852ms - BuildTableInsertTime: 13.760ms - BuildTableTime: 13.939ms - CloseTime: 0ns - ExecTime: 17.882ms - InputRows: 128.324K (128324) - MemoryUsage: - BuildBlocks: 3.92 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 9.957us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 10.631us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 722.911us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.58 MB - MemoryUsage: - Blocks: 1.17 MB - PeakMemoryUsage: 1.17 MB - OpenTime: 20.7us - ProjectionTime: 0ns - RowsProduced: 128.324K (128324) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s801ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 4.486ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.396ms - CloseTime: 31.391us - GetBlockTime: 71.246us - OpenTime: 2.670us - PrepareTime: 51.684us - SinkTime: 4.256ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.440ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 142.541ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.804us - DeserializeAndMergeTime: 134.872us - ExecTime: 4.270ms - ExprTime: 0ns - HashTableComputeTime: 3.963ms - HashTableEmplaceTime: 3.511ms - HashTableInputCount: 12.816K (12816) - InputRows: 12.816K (12816) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.234ms - OpenTime: 15.875us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 26.549us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 17.629us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 315.831ms PipelineXTask (index=9):(Active: 5.329ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.253ms - CloseTime: 10.91us - GetBlockTime: 63.291us - OpenTime: 2.530us - PrepareTime: 59.693us - SinkTime: 5.134ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.784ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.217us - DeserializeAndMergeTime: 129.720us - ExecTime: 5.166ms - ExprTime: 0ns - HashTableComputeTime: 4.846ms - HashTableEmplaceTime: 4.326ms - HashTableInputCount: 12.634K (12634) - InputRows: 12.634K (12634) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.117ms - OpenTime: 32.812us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 7.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.107us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.50 KB - OpenTime: 10.469us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 317.619ms PipelineXTask (index=14):(Active: 26.142ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.47ms - CloseTime: 31.280us - GetBlockTime: 92.431us - OpenTime: 3.427us - PrepareTime: 53.442us - SinkTime: 25.883ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.694ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.404ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 18.100us - DeserializeAndMergeTime: 142.40us - ExecTime: 25.920ms - ExprTime: 0ns - HashTableComputeTime: 25.562ms - HashTableEmplaceTime: 3.516ms - HashTableInputCount: 12.699K (12699) - InputRows: 12.699K (12699) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 25.859ms - OpenTime: 23.185us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.941us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 12.607us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 315.733ms PipelineXTask (index=19):(Active: 90.210ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 90.149ms - CloseTime: 13.410us - GetBlockTime: 70.924us - OpenTime: 2.643us - PrepareTime: 40.105us - SinkTime: 90.24ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.181ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.854ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.899us - DeserializeAndMergeTime: 121.653us - ExecTime: 90.38ms - ExprTime: 0ns - HashTableComputeTime: 89.741ms - HashTableEmplaceTime: 89.165ms - HashTableInputCount: 12.761K (12761) - InputRows: 12.761K (12761) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 90.5ms - OpenTime: 15.375us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.601us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.768us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 9.897us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 281.630ms PipelineXTask (index=24):(Active: 5.998ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.931ms - CloseTime: 8.781us - GetBlockTime: 104.346us - OpenTime: 3.182us - PrepareTime: 50.433us - SinkTime: 5.763ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.687ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.420ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.455us - DeserializeAndMergeTime: 130.457us - ExecTime: 5.782ms - ExprTime: 0ns - HashTableComputeTime: 5.533ms - HashTableEmplaceTime: 4.612ms - HashTableInputCount: 12.661K (12661) - InputRows: 12.661K (12661) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.745ms - OpenTime: 20.630us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 5.401us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.716us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 16.772us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 299.892ms PipelineXTask (index=29):(Active: 13.497ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 13.402ms - CloseTime: 14.207us - GetBlockTime: 84.884us - OpenTime: 2.76us - PrepareTime: 72.772us - SinkTime: 13.254ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.463ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.689ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 3.350us - DeserializeAndMergeTime: 109.861us - ExecTime: 13.287ms - ExprTime: 0ns - HashTableComputeTime: 12.981ms - HashTableEmplaceTime: 12.508ms - HashTableInputCount: 12.574K (12574) - InputRows: 12.574K (12574) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 13.237ms - OpenTime: 34.16us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.337us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 94.458us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 14.946us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 312.500ms PipelineXTask (index=34):(Active: 5.62ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.991ms - CloseTime: 11.657us - GetBlockTime: 98.186us - OpenTime: 4.935us - PrepareTime: 49.257us - SinkTime: 4.815ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.22ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.563ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 3.722us - DeserializeAndMergeTime: 136.137us - ExecTime: 4.832ms - ExprTime: 0ns - HashTableComputeTime: 4.587ms - HashTableEmplaceTime: 4.61ms - HashTableInputCount: 12.788K (12788) - InputRows: 12.788K (12788) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.792ms - OpenTime: 17.669us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.976us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.791us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 14.767us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 299.701ms PipelineXTask (index=39):(Active: 4.176ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.110ms - CloseTime: 14.358us - GetBlockTime: 91.205us - OpenTime: 3.181us - PrepareTime: 43.259us - SinkTime: 3.961ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.147ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.201ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.511us - DeserializeAndMergeTime: 107.994us - ExecTime: 3.976ms - ExprTime: 0ns - HashTableComputeTime: 3.803ms - HashTableEmplaceTime: 3.370ms - HashTableInputCount: 12.577K (12577) - InputRows: 12.577K (12577) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.944ms - OpenTime: 16.344us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.31us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.804us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 13.510us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 324.882ms PipelineXTask (index=44):(Active: 4.364ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.284ms - CloseTime: 13.131us - GetBlockTime: 87.580us - OpenTime: 3.343us - PrepareTime: 58.190us - SinkTime: 4.144ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.325ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.977ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 3.727us - DeserializeAndMergeTime: 108.979us - ExecTime: 4.175ms - ExprTime: 0ns - HashTableComputeTime: 3.947ms - HashTableEmplaceTime: 3.545ms - HashTableInputCount: 12.843K (12843) - InputRows: 12.843K (12843) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.123ms - OpenTime: 30.160us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 8.283us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.51us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.50 KB - OpenTime: 11.389us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.676ms PipelineXTask (index=49):(Active: 3.859ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.783ms - CloseTime: 8.480us - GetBlockTime: 76.727us - OpenTime: 3.472us - PrepareTime: 57.118us - SinkTime: 3.656ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.837ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.784ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 1.714us - DeserializeAndMergeTime: 93.180us - ExecTime: 3.677ms - ExprTime: 0ns - HashTableComputeTime: 3.414ms - HashTableEmplaceTime: 2.981ms - HashTableInputCount: 12.728K (12728) - InputRows: 12.728K (12728) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.643ms - OpenTime: 21.368us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.182us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.590us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.50 KB - OpenTime: 15.470us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 299.532ms PipelineXTask (index=54):(Active: 4.663ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.597ms - CloseTime: 9.998us - GetBlockTime: 74.195us - OpenTime: 2.77us - PrepareTime: 50.645us - SinkTime: 4.472ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.640ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.938ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.170us - DeserializeAndMergeTime: 146.116us - ExecTime: 4.488ms - ExprTime: 0ns - HashTableComputeTime: 4.153ms - HashTableEmplaceTime: 3.651ms - HashTableInputCount: 12.775K (12775) - InputRows: 12.775K (12775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.458ms - OpenTime: 16.933us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 7.16us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 13.394us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 312.874ms PipelineXTask (index=59):(Active: 5.449ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.381ms - CloseTime: 9.729us - GetBlockTime: 77.991us - OpenTime: 4.548us - PrepareTime: 48.621us - SinkTime: 5.247ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.424ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 125.744ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.506us - DeserializeAndMergeTime: 122.349us - ExecTime: 5.265ms - ExprTime: 0ns - HashTableComputeTime: 5.7ms - HashTableEmplaceTime: 4.454ms - HashTableInputCount: 12.563K (12563) - InputRows: 12.563K (12563) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.232ms - OpenTime: 18.99us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.416us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.50 KB - OpenTime: 8.167us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 271.29ms Fragment 102: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 240.890us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 75.585us - CloseTime: 27.51us - GetBlockTime: 4.235us - OpenTime: 6.623us - PrepareTime: 124.681us - SinkTime: 38.689us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 205.91us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.942ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.554us - CompressTime: 0ns - ExecTime: 117.382us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.403us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.655us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 520ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 231ns - ExecTime: 5.567us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.142us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.277us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.322us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.598us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=1):(Active: 266.55us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.378us - CloseTime: 18.712us - GetBlockTime: 1.783us - OpenTime: 3.310us - PrepareTime: 202.511us - SinkTime: 14.242us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 239.810us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.45ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.18us - CompressTime: 0ns - ExecTime: 89.313us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.400us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 221ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 302ns - ExecTime: 5.110us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.240us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.93us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.369us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.788us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=2):(Active: 190.912us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.440us - CloseTime: 18.841us - GetBlockTime: 1.974us - OpenTime: 3.93us - PrepareTime: 118.606us - SinkTime: 23.360us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 164.594us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.100ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.730us - CompressTime: 0ns - ExecTime: 100.878us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.766us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.964us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 367ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 234ns - ExecTime: 4.310us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.596us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.91us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.163us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=3):(Active: 238.311us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.671us - CloseTime: 14.680us - GetBlockTime: 2.539us - OpenTime: 3.450us - PrepareTime: 166.548us - SinkTime: 22.680us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.83us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.163ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.294us - CompressTime: 0ns - ExecTime: 101.76us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.6us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.395us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 300ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 198ns - ExecTime: 9.370us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.650us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.100us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.882us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.227us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=4):(Active: 186.348us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.456us - CloseTime: 22.937us - GetBlockTime: 2.188us - OpenTime: 3.285us - PrepareTime: 109.774us - SinkTime: 20.650us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 155.718us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.227ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.585us - CompressTime: 0ns - ExecTime: 94.324us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.874us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 62.589us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 474ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 158ns - ExecTime: 4.130us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.414us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.766us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.940us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.615us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=5):(Active: 190.557us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.665us - CloseTime: 9.978us - GetBlockTime: 1.982us - OpenTime: 3.640us - PrepareTime: 138.717us - SinkTime: 12.395us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 173.738us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.296ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.138us - CompressTime: 0ns - ExecTime: 94.14us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 3.398us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.737us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 311ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 177ns - ExecTime: 3.524us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.845us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.735us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.347us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.159us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=6):(Active: 193.570us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.103us - CloseTime: 18.762us - GetBlockTime: 2.7us - OpenTime: 3.457us - PrepareTime: 129.598us - SinkTime: 15.859us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.680us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.340ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.783us - CompressTime: 0ns - ExecTime: 110.962us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.653us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.536us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 452ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 182ns - ExecTime: 5.500us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.858us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.711us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.517us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.254us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s141ms PipelineXTask (index=7):(Active: 222.574us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 77.953us - CloseTime: 22.895us - GetBlockTime: 3.214us - OpenTime: 6.932us - PrepareTime: 109.245us - SinkTime: 40.842us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 190.530us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.582ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.362us - CompressTime: 0ns - ExecTime: 122.507us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.545us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 68.674us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 607ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 268ns - ExecTime: 6.484us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.505us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.27us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.976us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s132ms PipelineXTask (index=8):(Active: 209.394us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.944us - CloseTime: 15.820us - GetBlockTime: 2.238us - OpenTime: 4.741us - PrepareTime: 132.698us - SinkTime: 22.63us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 186.142us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.598ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.473us - CompressTime: 0ns - ExecTime: 102.255us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 7.836us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 462ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 213ns - ExecTime: 6.365us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.467us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.352us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.477us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.531us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s132ms PipelineXTask (index=9):(Active: 211.779us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.503us - CloseTime: 13.487us - GetBlockTime: 2.255us - OpenTime: 3.885us - PrepareTime: 141.146us - SinkTime: 13.758us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.589us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.693ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.739us - CompressTime: 0ns - ExecTime: 111.363us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 3.859us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 89.59us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 323ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 117ns - ExecTime: 4.682us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.81us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.593us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.824us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.417us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s132ms PipelineXTask (index=10):(Active: 217.864us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.838us - CloseTime: 13.238us - GetBlockTime: 1.905us - OpenTime: 10.911us - PrepareTime: 127.811us - SinkTime: 22.379us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 192.940us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.662ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.467us - CompressTime: 0ns - ExecTime: 91.410us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.817us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 59.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 569ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 151ns - ExecTime: 17.681us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 17.9us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.491us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.838us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.765us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s132ms PipelineXTask (index=11):(Active: 268.541us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 54.720us - CloseTime: 12.620us - GetBlockTime: 2.428us - OpenTime: 3.965us - PrepareTime: 190.566us - SinkTime: 33.83us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.237us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.755ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.331us - CompressTime: 0ns - ExecTime: 100.440us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.217us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.639us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 213ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 182ns - ExecTime: 6.146us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.480us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.60us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s132ms Fragment 103: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 5.941ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.611ms - CloseTime: 58.607us - GetBlockTime: 5.437ms - OpenTime: 8.477us - PrepareTime: 255.470us - SinkTime: 35.642us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 527.982ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.765us - CompressTime: 0ns - ExecTime: 134.123us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 16.687us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.122us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 661ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 265ns - ExecTime: 6.454us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.888us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 25.766us - ExecTime: 4.848ms - InitProbeSideTime: 3.686ms - JoinFilterTimer: 3.418us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 17.810us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.625us - ProbeFindNextTime: 0ns - ProbeRows: 152.572K (152572) - ProbeTime: 4.610ms - ProbeWhenBuildSideOutputTime: 1.560us - ProbeWhenProbeSideOutputTime: 35.849us - ProbeWhenProcessHashTableTime: 927ns - ProbeWhenSearchHashTableTime: 490.363us - ProjectionTime: 56.818us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 11.505us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 597.501us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.91 MB - MemoryUsage: - Blocks: 10.29 MB - PeakMemoryUsage: 10.29 MB - OpenTime: 20.4us - ProjectionTime: 0ns - RowsProduced: 152.572K (152572) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s586ms PipelineXTask (index=2):(Active: 6.115ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.867ms - CloseTime: 67.729us - GetBlockTime: 5.376ms - OpenTime: 9.364us - PrepareTime: 165.825us - SinkTime: 36.94us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 569.847ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.683us - CompressTime: 0ns - ExecTime: 153.977us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.171us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 99.569us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 375ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 351ns - ExecTime: 4.501us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.958us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 33.753us - ExecTime: 4.797ms - InitProbeSideTime: 3.662ms - JoinFilterTimer: 3.542us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.763us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.911us - ProbeFindNextTime: 0ns - ProbeRows: 151.41K (151410) - ProbeTime: 4.552ms - ProbeWhenBuildSideOutputTime: 1.600us - ProbeWhenProbeSideOutputTime: 39.892us - ProbeWhenProcessHashTableTime: 833ns - ProbeWhenSearchHashTableTime: 415.618us - ProjectionTime: 67.114us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 10.706us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 568.142us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.20 MB - MemoryUsage: - Blocks: 9.38 MB - PeakMemoryUsage: 9.38 MB - OpenTime: 12.563us - ProjectionTime: 0ns - RowsProduced: 151.41K (151410) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s541ms PipelineXTask (index=4):(Active: 5.609ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.379ms - CloseTime: 52.71us - GetBlockTime: 5.168ms - OpenTime: 7.917us - PrepareTime: 164.320us - SinkTime: 41.523us - GetBlockCounter: 40 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.540ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 563.509ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.276us - CompressTime: 0ns - ExecTime: 136.712us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.647us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 80.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 464ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 366ns - ExecTime: 10.297us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.80us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 19.154us - ExecTime: 4.602ms - InitProbeSideTime: 3.449ms - JoinFilterTimer: 3.829us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.179us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.612us - ProbeFindNextTime: 0ns - ProbeRows: 152.828K (152828) - ProbeTime: 4.345ms - ProbeWhenBuildSideOutputTime: 1.722us - ProbeWhenProbeSideOutputTime: 41.300us - ProbeWhenProcessHashTableTime: 702ns - ProbeWhenSearchHashTableTime: 386.885us - ProjectionTime: 69.343us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 39 - BytesReceived: 0.00 - CloseTime: 12.571us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 529.435us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.19 MB - MemoryUsage: - Blocks: 6.53 MB - PeakMemoryUsage: 6.53 MB - OpenTime: 19.741us - ProjectionTime: 0ns - RowsProduced: 152.828K (152828) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s559ms PipelineXTask (index=6):(Active: 5.484ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.230ms - CloseTime: 70.874us - GetBlockTime: 5.39ms - OpenTime: 3.914us - PrepareTime: 174.100us - SinkTime: 58.963us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.395ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 559.26ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.156us - CompressTime: 0ns - ExecTime: 158.570us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.380us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.968us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 489ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 228ns - ExecTime: 5.930us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.516us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 32.304us - ExecTime: 4.564ms - InitProbeSideTime: 3.477ms - JoinFilterTimer: 3.536us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 9.719us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.611us - ProbeFindNextTime: 0ns - ProbeRows: 151.236K (151236) - ProbeTime: 4.321ms - ProbeWhenBuildSideOutputTime: 1.509us - ProbeWhenProbeSideOutputTime: 29.930us - ProbeWhenProcessHashTableTime: 982ns - ProbeWhenSearchHashTableTime: 380.307us - ProjectionTime: 59.554us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 13.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 492.956us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.62 MB - MemoryUsage: - Blocks: 5.59 MB - PeakMemoryUsage: 5.59 MB - OpenTime: 36.827us - ProjectionTime: 0ns - RowsProduced: 151.236K (151236) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s566ms PipelineXTask (index=8):(Active: 5.836ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.630ms - CloseTime: 37.600us - GetBlockTime: 5.469ms - OpenTime: 4.112us - PrepareTime: 158.980us - SinkTime: 30.0us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.749ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 551.521ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.697us - CompressTime: 0ns - ExecTime: 122.7us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.946us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 83.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 386ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 207ns - ExecTime: 4.725us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.867us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 21.71us - ExecTime: 4.965ms - InitProbeSideTime: 3.867ms - JoinFilterTimer: 3.161us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.68us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.466us - ProbeFindNextTime: 0ns - ProbeRows: 151.875K (151875) - ProbeTime: 4.725ms - ProbeWhenBuildSideOutputTime: 5.539us - ProbeWhenProbeSideOutputTime: 39.259us - ProbeWhenProcessHashTableTime: 231ns - ProbeWhenSearchHashTableTime: 379.20us - ProjectionTime: 69.638us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 5.479us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 465.238us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.13 MB - MemoryUsage: - Blocks: 5.29 MB - PeakMemoryUsage: 5.29 MB - OpenTime: 12.196us - ProjectionTime: 0ns - RowsProduced: 151.875K (151875) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s573ms PipelineXTask (index=10):(Active: 5.854ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.651ms - CloseTime: 27.438us - GetBlockTime: 5.489ms - OpenTime: 4.523us - PrepareTime: 165.369us - SinkTime: 19.75us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.809ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 573.654ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.825us - CompressTime: 0ns - ExecTime: 106.991us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.229us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 566ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 215ns - ExecTime: 4.502us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.771us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 12.116us - ExecTime: 4.973ms - InitProbeSideTime: 3.871ms - JoinFilterTimer: 3.691us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 15.550us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.718us - ProbeFindNextTime: 0ns - ProbeRows: 151.744K (151744) - ProbeTime: 4.753ms - ProbeWhenBuildSideOutputTime: 1.209us - ProbeWhenProbeSideOutputTime: 41.288us - ProbeWhenProcessHashTableTime: 260ns - ProbeWhenSearchHashTableTime: 395.296us - ProjectionTime: 53.361us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 4.434us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 493.578us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.55 MB - MemoryUsage: - Blocks: 6.11 MB - PeakMemoryUsage: 6.11 MB - OpenTime: 12.67us - ProjectionTime: 0ns - RowsProduced: 151.744K (151744) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s551ms PipelineXTask (index=12):(Active: 5.543ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.295ms - CloseTime: 48.591us - GetBlockTime: 5.130ms - OpenTime: 4.37us - PrepareTime: 189.527us - SinkTime: 30.320us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.476ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 567.121ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.872us - CompressTime: 0ns - ExecTime: 105.963us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.60us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.18us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 4.353us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 187ns - ExecTime: 10.420us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.358us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 32.769us - ExecTime: 4.619ms - InitProbeSideTime: 3.493ms - JoinFilterTimer: 3.534us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.57us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.736us - ProbeFindNextTime: 0ns - ProbeRows: 152.033K (152033) - ProbeTime: 4.363ms - ProbeWhenBuildSideOutputTime: 1.359us - ProbeWhenProbeSideOutputTime: 37.427us - ProbeWhenProcessHashTableTime: 66ns - ProbeWhenSearchHashTableTime: 396.559us - ProjectionTime: 66.26us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 38 - BytesReceived: 0.00 - CloseTime: 4.522us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 502.415us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.30 MB - MemoryUsage: - Blocks: 5.31 MB - PeakMemoryUsage: 5.31 MB - OpenTime: 12.370us - ProjectionTime: 0ns - RowsProduced: 152.033K (152033) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s559ms PipelineXTask (index=14):(Active: 5.707ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.475ms - CloseTime: 42.903us - GetBlockTime: 5.296ms - OpenTime: 3.836us - PrepareTime: 176.233us - SinkTime: 38.666us - GetBlockCounter: 40 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 553.214ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.749us - CompressTime: 0ns - ExecTime: 116.309us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 14.508us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.310us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 709ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 239ns - ExecTime: 10.95us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.239us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 23.171us - ExecTime: 4.776ms - InitProbeSideTime: 3.592ms - JoinFilterTimer: 3.982us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 26.696us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.204us - ProbeFindNextTime: 0ns - ProbeRows: 152.031K (152031) - ProbeTime: 4.490ms - ProbeWhenBuildSideOutputTime: 1.490us - ProbeWhenProbeSideOutputTime: 47.685us - ProbeWhenProcessHashTableTime: 336ns - ProbeWhenSearchHashTableTime: 380.454us - ProjectionTime: 83.670us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 39 - BytesReceived: 0.00 - CloseTime: 4.926us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 525.377us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.60 MB - MemoryUsage: - Blocks: 6.58 MB - PeakMemoryUsage: 6.58 MB - OpenTime: 28.727us - ProjectionTime: 0ns - RowsProduced: 152.031K (152031) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s572ms PipelineXTask (index=16):(Active: 5.741ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.558ms - CloseTime: 17.273us - GetBlockTime: 5.400ms - OpenTime: 4.277us - PrepareTime: 157.166us - SinkTime: 24.408us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.708ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 569.551ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.666us - CompressTime: 0ns - ExecTime: 98.282us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.530us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.494us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 421ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 185ns - ExecTime: 4.437us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.622us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.277us - ExecTime: 4.898ms - InitProbeSideTime: 3.841ms - JoinFilterTimer: 3.433us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.908us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.866us - ProbeFindNextTime: 0ns - ProbeRows: 151.454K (151454) - ProbeTime: 4.682ms - ProbeWhenBuildSideOutputTime: 1.238us - ProbeWhenProbeSideOutputTime: 52.203us - ProbeWhenProcessHashTableTime: 339ns - ProbeWhenSearchHashTableTime: 381.594us - ProjectionTime: 50.791us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 37 - BytesReceived: 0.00 - CloseTime: 2.318us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 468.763us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.49 MB - MemoryUsage: - Blocks: 5.45 MB - PeakMemoryUsage: 5.45 MB - OpenTime: 14.331us - ProjectionTime: 0ns - RowsProduced: 151.454K (151454) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s556ms PipelineXTask (index=18):(Active: 5.526ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.320ms - CloseTime: 38.792us - GetBlockTime: 5.134ms - OpenTime: 11.302us - PrepareTime: 149.399us - SinkTime: 46.453us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.474ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 797.119ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.479us - CompressTime: 0ns - ExecTime: 134.51us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.688us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.512us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 667ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 314ns - ExecTime: 4.575us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.303us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.411us - ExecTime: 4.608ms - InitProbeSideTime: 3.590ms - JoinFilterTimer: 2.975us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 15.19us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.187us - ProbeFindNextTime: 0ns - ProbeRows: 151.76K (151760) - ProbeTime: 4.404ms - ProbeWhenBuildSideOutputTime: 1.635us - ProbeWhenProbeSideOutputTime: 40.583us - ProbeWhenProcessHashTableTime: 904ns - ProbeWhenSearchHashTableTime: 391.902us - ProjectionTime: 55.426us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 38 - BytesReceived: 0.00 - CloseTime: 10.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 527.756us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.76 MB - MemoryUsage: - Blocks: 11.67 MB - PeakMemoryUsage: 11.67 MB - OpenTime: 12.653us - ProjectionTime: 0ns - RowsProduced: 151.76K (151760) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s339ms PipelineXTask (index=20):(Active: 4.818ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.533ms - CloseTime: 53.775us - GetBlockTime: 4.372ms - OpenTime: 6.600us - PrepareTime: 217.435us - SinkTime: 45.726us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 759.580ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.225us - CompressTime: 0ns - ExecTime: 149.309us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.849us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 87.698us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 888ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 525ns - ExecTime: 6.826us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.915us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 15.505us - ExecTime: 3.895ms - InitProbeSideTime: 2.916ms - JoinFilterTimer: 2.499us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 19.710us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.298us - ProbeFindNextTime: 0ns - ProbeRows: 150.982K (150982) - ProbeTime: 3.671ms - ProbeWhenBuildSideOutputTime: 1.515us - ProbeWhenProbeSideOutputTime: 30.245us - ProbeWhenProcessHashTableTime: 745ns - ProbeWhenSearchHashTableTime: 398.975us - ProjectionTime: 63.383us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 38 - BytesReceived: 0.00 - CloseTime: 8.997us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 486.13us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.02 MB - MemoryUsage: - Blocks: 10.97 MB - PeakMemoryUsage: 10.97 MB - OpenTime: 15.868us - ProjectionTime: 0ns - RowsProduced: 150.982K (150982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s338ms PipelineXTask (index=22):(Active: 4.694ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.453ms - CloseTime: 25.517us - GetBlockTime: 4.335ms - OpenTime: 6.406us - PrepareTime: 201.796us - SinkTime: 24.824us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.655ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 762.841ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.654us - CompressTime: 0ns - ExecTime: 114.121us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.333us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.25us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 363ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 197ns - ExecTime: 4.180us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.383us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.526us - ExecTime: 3.796ms - InitProbeSideTime: 2.886ms - JoinFilterTimer: 2.341us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 18.309us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.179us - ProbeFindNextTime: 0ns - ProbeRows: 150.747K (150747) - ProbeTime: 3.613ms - ProbeWhenBuildSideOutputTime: 1.354us - ProbeWhenProbeSideOutputTime: 21.111us - ProbeWhenProcessHashTableTime: 270ns - ProbeWhenSearchHashTableTime: 393.766us - ProjectionTime: 43.558us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 38 - BytesReceived: 0.00 - CloseTime: 4.815us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 545.353us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.74 MB - MemoryUsage: - Blocks: 11.70 MB - PeakMemoryUsage: 11.70 MB - OpenTime: 15.153us - ProjectionTime: 0ns - RowsProduced: 150.747K (150747) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s335ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.958ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.869ms - CloseTime: 16.290us - GetBlockTime: 3.253us - OpenTime: 4.847us - PrepareTime: 64.366us - SinkTime: 1.845ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.936ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.814ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.29us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.25us - BuildTableTime: 17.114us - CloseTime: 0ns - ExecTime: 1.871ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 27.164us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.203us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.562us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.152us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 17.227us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s127ms PipelineXTask (index=3):(Active: 1.919ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.852ms - CloseTime: 15.603us - GetBlockTime: 3.28us - OpenTime: 2.237us - PrepareTime: 45.362us - SinkTime: 1.828ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.895ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 295.578ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.125us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.477us - BuildTableTime: 16.960us - CloseTime: 0ns - ExecTime: 1.840ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 13.273us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.185us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.413us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 12.997us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s134ms PipelineXTask (index=5):(Active: 1.927ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.851ms - CloseTime: 13.843us - GetBlockTime: 3.655us - OpenTime: 2.26us - PrepareTime: 53.803us - SinkTime: 1.834ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.905ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 351.274ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.93us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.75us - BuildTableTime: 16.832us - CloseTime: 0ns - ExecTime: 1.854ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 20.984us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.980us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.624us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.741us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 14.233us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=7):(Active: 1.913ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.824ms - CloseTime: 4.682us - GetBlockTime: 1.535us - OpenTime: 1.483us - PrepareTime: 78.972us - SinkTime: 1.811ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.903ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 353.156ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 828ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 11.841us - BuildTableTime: 13.790us - CloseTime: 0ns - ExecTime: 1.841ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 29.588us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.936us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.646us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 19.990us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=9):(Active: 1.867ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.806ms - CloseTime: 7.100us - GetBlockTime: 1.457us - OpenTime: 1.238us - PrepareTime: 49.374us - SinkTime: 1.793ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.855ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 354.993ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 612ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 19.403us - BuildTableTime: 21.824us - CloseTime: 0ns - ExecTime: 1.806ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 13.430us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.719us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.385us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 14.776us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=11):(Active: 1.847ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.791ms - CloseTime: 5.402us - GetBlockTime: 1.813us - OpenTime: 1.656us - PrepareTime: 46.63us - SinkTime: 1.779ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.838ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.807ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 584ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.290us - BuildTableTime: 15.212us - CloseTime: 0ns - ExecTime: 1.795ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 16.795us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.730us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.875us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 8.700us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=13):(Active: 1.801ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.742ms - CloseTime: 5.422us - GetBlockTime: 1.652us - OpenTime: 1.508us - PrepareTime: 48.723us - SinkTime: 1.729ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.791ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 358.608ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 563ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 20.202us - BuildTableTime: 22.303us - CloseTime: 0ns - ExecTime: 1.744ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 16.67us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.130us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.603us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.705us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 10.724us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=15):(Active: 41.963ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 41.886ms - CloseTime: 13.758us - GetBlockTime: 2.406us - OpenTime: 1.852us - PrepareTime: 58.333us - SinkTime: 41.867ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.904ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 360.369ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 773ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 17.350us - BuildTableTime: 24.353us - CloseTime: 0ns - ExecTime: 41.892ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 25.520us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.764us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.183us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.801us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 9.793us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=17):(Active: 1.859ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.785ms - CloseTime: 8.925us - GetBlockTime: 2.505us - OpenTime: 1.194us - PrepareTime: 60.950us - SinkTime: 1.770ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.845ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 402.279ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.133us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.733us - BuildTableTime: 16.816us - CloseTime: 0ns - ExecTime: 1.800ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 30.717us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.977us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.384us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.614us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 10.171us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=19):(Active: 595.698us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 502.746us - CloseTime: 15.28us - GetBlockTime: 4.118us - OpenTime: 2.636us - PrepareTime: 70.148us - SinkTime: 476.528us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 572.330us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 256.611ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.496us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 22.858us - BuildTableTime: 26.927us - CloseTime: 0ns - ExecTime: 497.950us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 22.158us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.582us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.334us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.707us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 28.19us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s142ms PipelineXTask (index=21):(Active: 1.814ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.732ms - CloseTime: 9.400us - GetBlockTime: 2.579us - OpenTime: 2.368us - PrepareTime: 66.572us - SinkTime: 1.716ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.799ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 404.62ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 740ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.160us - BuildTableTime: 14.35us - CloseTime: 0ns - ExecTime: 1.737ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 21.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.435us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.212us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.543us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 12.558us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s136ms PipelineXTask (index=23):(Active: 4.398ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.317ms - CloseTime: 14.558us - GetBlockTime: 3.70us - OpenTime: 4.108us - PrepareTime: 57.50us - SinkTime: 4.285ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.374ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 531.592ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.478us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 20.437us - BuildTableTime: 26.820us - CloseTime: 0ns - ExecTime: 4.311ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 26.88us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.431ms - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.913us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.21 KB - OpenTime: 14.45us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s149ms Fragment 104: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 155.401ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 154.975ms - CloseTime: 87.50us - GetBlockTime: 1.35ms - OpenTime: 118.335us - PrepareTime: 210.349us - SinkTime: 153.407ms - GetBlockCounter: 114 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 70.776ms - WaitBfTime: 1s103ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 749.653ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 114 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.772us - CompressTime: 0ns - ExecTime: 153.448ms - InputRows: 455.168K (455168) - LocalBytesSent: 19.97 MB - LocalSendTime: 1.86ms - LocalSentRows: 455.168K (455168) - MemoryUsage: - PeakMemoryUsage: 33.53 MB - MergeBlockTime: 0ns - OpenTime: 65.826us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 455.168K (455168) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 134.736ms - SplitBlockHashComputeTime: 12.927ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 42, type = minmax), RuntimeFilter: (id = 43, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.523us - BlocksProduced: 112 - CloseTime: 61.672us - ExecTime: 289.575ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 211.936us - ProcessConjunctTime: 33.551us - ProjectionTime: 0ns - RowsProduced: 455.168K (455168) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 107.573ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 288.316ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 42, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.521655M (6521655) - expr_input_rows: 6.521655M (6521655) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [178.269ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [107.573ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 154.86ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 578.943us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.126us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 118.429ms - ScannerCtxSchedTime: 107.563ms - ScannerFilterTime: 21.583ms - ScannerGetBlockTime: 156.354ms - ScannerInitTime: 62.168us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.251us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.842us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 22.197us - BlockInitTime: 132.564us - BlockLoadTime: 154.772ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 917.489us - FirstReadTime: 144.526ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.551us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 231.854us - OutputIndexResultColumnTimer: 119.982us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 139.63ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 138.443ms - CloseTime: 68.989us - GetBlockTime: 2.841ms - OpenTime: 238.62us - PrepareTime: 303.421us - SinkTime: 134.944ms - GetBlockCounter: 114 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.286ms - WaitBfTime: 1s44ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 567.262ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 114 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.328us - CompressTime: 0ns - ExecTime: 134.992ms - InputRows: 455.168K (455168) - LocalBytesSent: 19.97 MB - LocalSendTime: 1.29ms - LocalSentRows: 455.168K (455168) - MemoryUsage: - PeakMemoryUsage: 34.88 MB - MergeBlockTime: 0ns - OpenTime: 85.487us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 455.168K (455168) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 55.170ms - SplitBlockHashComputeTime: 74.5ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 42, type = minmax), RuntimeFilter: (id = 43, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.176us - BlocksProduced: 112 - CloseTime: 51.63us - ExecTime: 313.95ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 396.19us - ProcessConjunctTime: 39.954us - ProjectionTime: 0ns - RowsProduced: 455.168K (455168) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 151.279ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 309.847ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 42, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.521655M (6521655) - expr_input_rows: 6.521655M (6521655) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [157.051ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [151.279ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.132ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 881.377us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.146us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 83.747ms - ScannerCtxSchedTime: 151.270ms - ScannerFilterTime: 27.910ms - ScannerGetBlockTime: 128.948ms - ScannerInitTime: 154.801us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 924ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.305us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 15.288us - BlockInitTime: 102.515us - BlockLoadTime: 128.463ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.307ms - FirstReadTime: 126.554ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.307us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 153.752us - OutputIndexResultColumnTimer: 62.245us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 44.752ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.391ms - CloseTime: 59.85us - GetBlockTime: 749.210us - OpenTime: 100.558us - PrepareTime: 192.538us - SinkTime: 43.223ms - GetBlockCounter: 58 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.516ms - WaitBfTime: 1s103ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 767.823ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.143us - CompressTime: 0ns - ExecTime: 43.284ms - InputRows: 227.584K (227584) - LocalBytesSent: 9.98 MB - LocalSendTime: 685.852us - LocalSentRows: 227.584K (227584) - MemoryUsage: - PeakMemoryUsage: 17.91 MB - MergeBlockTime: 0ns - OpenTime: 75.526us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 227.584K (227584) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 29.842ms - SplitBlockHashComputeTime: 8.814ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 42, type = minmax), RuntimeFilter: (id = 43, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.499us - BlocksProduced: 56 - CloseTime: 44.167us - ExecTime: 339.208ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 173.1us - ProcessConjunctTime: 18.784us - ProjectionTime: 0ns - RowsProduced: 227.584K (227584) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 108.320ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 338.273ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 42, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.521655M (6521655) - expr_input_rows: 6.521655M (6521655) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [227.031ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [108.320ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 198.325ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.231ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.974us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 87.602ms - ScannerCtxSchedTime: 108.315ms - ScannerFilterTime: 13.999ms - ScannerGetBlockTime: 212.831ms - ScannerInitTime: 62.478us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.291us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.249us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.616us - BlockInitTime: 115.930us - BlockLoadTime: 199.609ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.82ms - FirstReadTime: 197.451ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.607us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 160.428us - OutputIndexResultColumnTimer: 60.245us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 166.86ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 146.992ms - CloseTime: 73.149us - GetBlockTime: 1.258ms - OpenTime: 18.855ms - PrepareTime: 158.433us - SinkTime: 126.283ms - GetBlockCounter: 170 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.57ms - WaitBfTime: 1s45ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 876.395ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 168 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.400us - CompressTime: 0ns - ExecTime: 126.297ms - InputRows: 682.752K (682752) - LocalBytesSent: 29.95 MB - LocalSendTime: 1.627ms - LocalSentRows: 682.752K (682752) - MemoryUsage: - PeakMemoryUsage: 52.19 MB - MergeBlockTime: 0ns - OpenTime: 59.45us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 682.752K (682752) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 89.377ms - SplitBlockHashComputeTime: 27.960ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 42, type = minmax), RuntimeFilter: (id = 43, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.220us - BlocksProduced: 168 - CloseTime: 56.511us - ExecTime: 270.30ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 18.912ms - ProcessConjunctTime: 15.819us - ProjectionTime: 0ns - RowsProduced: 682.752K (682752) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.918ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 249.884ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 42, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 6.521655M (6521655) - expr_input_rows: 6.521655M (6521655) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 2 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [122.428ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [125.918ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 108.795ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 583.507us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.671us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 84.128ms - ScannerCtxSchedTime: 125.909ms - ScannerFilterTime: 11.779ms - ScannerGetBlockTime: 110.420ms - ScannerInitTime: 18.801ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 858ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.881us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 14.80us - BlockInitTime: 85.802us - BlockLoadTime: 109.487ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 818.405us - FirstReadTime: 107.283ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.167us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 178.726us - OutputIndexResultColumnTimer: 65.839us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 105: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 642.16us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 278.572us - CloseTime: 57.109us - GetBlockTime: 37.824us - OpenTime: 85.258us - PrepareTime: 214.125us - SinkTime: 138.97us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 577.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.877ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.94us - CompressTime: 0ns - ExecTime: 220.853us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 53.825us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.489us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.513us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 588ns - BlocksProduced: 0 - CloseTime: 37.595us - ExecTime: 133.860ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 153.396us - ProcessConjunctTime: 29.973us - ProjectionTime: 1.662us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.221ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 133.630ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.519us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [99.221ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.322ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 172ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.581ms - ScannerCtxSchedTime: 99.207ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.337us - ScannerInitTime: 31.15us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 268ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.358us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 23.558us - BlockInitTime: 47.939us - BlockLoadTime: 34.205ms - BlocksLoad: 139 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 19.814ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 76.822us - FirstReadTime: 13.758ms - IOTimer: 0ns - InvertedIndexFilterTime: 538ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 15.327us - OutputIndexResultColumnTimer: 9.213us - RawRowsRead: 556.885K (556885) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 104 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 849.666us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 362.926us - CloseTime: 39.364us - GetBlockTime: 25.14us - OpenTime: 243.926us - PrepareTime: 195.525us - SinkTime: 68.167us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 799.273us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.207ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.162us - CompressTime: 0ns - ExecTime: 140.752us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.400us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 757ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 647ns - BlocksProduced: 0 - CloseTime: 28.819us - ExecTime: 232.913ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 326.30us - ProcessConjunctTime: 69.716us - ProjectionTime: 1.374us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.294ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 232.532ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.380us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [205.294ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 27.177ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 111ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.210ms - ScannerCtxSchedTime: 205.293ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.826us - ScannerInitTime: 116.279us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 583ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.763us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 327.233us - BlockInitTime: 441.488us - BlockLoadTime: 26.807ms - BlocksLoad: 152 - CachedPagesNum: 126 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 20.903ms - FirstReadSeekCount: 294 - FirstReadSeekTime: 146.426us - FirstReadTime: 4.755ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.237us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 18.670us - OutputIndexResultColumnTimer: 9.977us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 126 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 839.510us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 364.485us - CloseTime: 50.353us - GetBlockTime: 25.412us - OpenTime: 206.278us - PrepareTime: 210.421us - SinkTime: 104.549us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 778.702us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.742ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.47us - CompressTime: 0ns - ExecTime: 190.777us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.784us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 631ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 658ns - BlocksProduced: 0 - CloseTime: 32.868us - ExecTime: 205.460ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 259.721us - ProcessConjunctTime: 66.267us - ProjectionTime: 2.202us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.96ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 205.140ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [10.664us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [109.096ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 95.952ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 162ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 93.833ms - ScannerCtxSchedTime: 109.94ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.417us - ScannerInitTime: 108.591us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 861ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.363us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 20.268us - BlockInitTime: 106.963us - BlockLoadTime: 95.637ms - BlocksLoad: 367 - CachedPagesNum: 588 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 77.82ms - FirstReadSeekCount: 730 - FirstReadSeekTime: 1.576ms - FirstReadTime: 16.66ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.365us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 64.11us - OutputIndexResultColumnTimer: 43.994us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 588 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 734.134us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 335.273us - CloseTime: 56.920us - GetBlockTime: 30.926us - OpenTime: 163.107us - PrepareTime: 171.214us - SinkTime: 120.321us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 669.427us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.96ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.907us - CompressTime: 0ns - ExecTime: 188.814us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 56.458us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.271us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 638ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1000ns - BlocksProduced: 0 - CloseTime: 43.208us - ExecTime: 500.46ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 227.126us - ProcessConjunctTime: 63.101us - ProjectionTime: 1.676us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 204.596ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 499.744ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.696us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [204.596ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 295.49ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 153ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 80.118ms - ScannerCtxSchedTime: 204.594ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.14us - ScannerInitTime: 75.219us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.117us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.288us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 27.267us - BlockInitTime: 161.675us - BlockLoadTime: 294.613ms - BlocksLoad: 405 - CachedPagesNum: 614 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 200.309ms - FirstReadSeekCount: 804 - FirstReadSeekTime: 2.138ms - FirstReadTime: 92.27ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.848us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 45.819us - OutputIndexResultColumnTimer: 30.453us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 614 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 620.343us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 238.792us - CloseTime: 47.12us - GetBlockTime: 41.362us - OpenTime: 84.99us - PrepareTime: 245.103us - SinkTime: 97.701us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 567.193us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.862ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.757us - CompressTime: 0ns - ExecTime: 220.39us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.48us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 110.826us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 613ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 533ns - BlocksProduced: 0 - CloseTime: 32.470us - ExecTime: 179.877ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 162.263us - ProcessConjunctTime: 18.528us - ProjectionTime: 1.430us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.366ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 179.639ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.207us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [99.366ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 80.180ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 146ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 71.233ms - ScannerCtxSchedTime: 99.365ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.677us - ScannerInitTime: 44.327us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 837ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.132us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 22.637us - BlockInitTime: 130.488us - BlockLoadTime: 79.815ms - BlocksLoad: 384 - CachedPagesNum: 517 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 64.174ms - FirstReadSeekCount: 762 - FirstReadSeekTime: 1.978ms - FirstReadTime: 13.882ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.407us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 45.578us - OutputIndexResultColumnTimer: 24.144us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 517 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 722.593us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 311.690us - CloseTime: 48.546us - GetBlockTime: 38.107us - OpenTime: 155.140us - PrepareTime: 200.279us - SinkTime: 97.649us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 666.702us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 615.158ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.7us - CompressTime: 0ns - ExecTime: 191.213us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.426us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.952us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 775ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 560ns - BlocksProduced: 0 - CloseTime: 35.724us - ExecTime: 534.318ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 222.423us - ProcessConjunctTime: 41.412us - ProjectionTime: 1.450us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 114.401ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 534.20ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [7.598us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [114.401ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 419.510ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 100.284ms - ScannerCtxSchedTime: 114.399ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.799us - ScannerInitTime: 95.283us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.681us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.439us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 31 - BlockInitSeekTime: 34.631us - BlockInitTime: 209.87us - BlockLoadTime: 418.763ms - BlocksLoad: 410 - CachedPagesNum: 530 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 291.626ms - FirstReadSeekCount: 812 - FirstReadSeekTime: 42.806ms - FirstReadTime: 111.942ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.556us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 74.571us - OutputIndexResultColumnTimer: 40.517us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 530 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 667.196us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 263.471us - CloseTime: 53.165us - GetBlockTime: 30.459us - OpenTime: 133.673us - PrepareTime: 209.347us - SinkTime: 79.867us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 606.247us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.748ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.424us - CompressTime: 0ns - ExecTime: 175.456us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.843us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 85.413us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 646ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 647ns - BlocksProduced: 0 - CloseTime: 40.637us - ExecTime: 344.556ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 203.905us - ProcessConjunctTime: 52.440us - ProjectionTime: 1.592us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.536ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 344.280ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [7.583us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [205.536ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 138.624ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 91ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 80.896ms - ScannerCtxSchedTime: 205.534ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.939us - ScannerInitTime: 62.894us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.21us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.112us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 37.900us - BlockInitTime: 214.396us - BlockLoadTime: 138.1ms - BlocksLoad: 345 - CachedPagesNum: 405 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 61.247ms - FirstReadSeekCount: 682 - FirstReadSeekTime: 2.286ms - FirstReadTime: 74.299ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.235us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 98.154us - OutputIndexResultColumnTimer: 28.127us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 405 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 491.850us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 180.508us - CloseTime: 39.474us - GetBlockTime: 16.318us - OpenTime: 91.451us - PrepareTime: 175.80us - SinkTime: 59.647us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 446.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.771ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.728us - CompressTime: 0ns - ExecTime: 145.619us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.256us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 77.619us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 485ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 450ns - BlocksProduced: 0 - CloseTime: 29.740us - ExecTime: 189.99ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 149.703us - ProcessConjunctTime: 17.185us - ProjectionTime: 1.460us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 100.897ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 188.902ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.561us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [100.897ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 87.917ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 152ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 73.697ms - ScannerCtxSchedTime: 100.895ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.964us - ScannerInitTime: 55.178us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.79us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.166us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 35.253us - BlockInitTime: 180.12us - BlockLoadTime: 87.375ms - BlocksLoad: 382 - CachedPagesNum: 432 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 55.619ms - FirstReadSeekCount: 756 - FirstReadSeekTime: 2.528ms - FirstReadTime: 29.753ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.563us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 66.992us - OutputIndexResultColumnTimer: 30.973us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 432 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 718.424us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 305.477us - CloseTime: 69.227us - GetBlockTime: 45.865us - OpenTime: 130.810us - PrepareTime: 204.268us - SinkTime: 106.541us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 640.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 238.846ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.738us - CompressTime: 0ns - ExecTime: 179.144us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 42.944us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 56.328us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 612ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 577ns - BlocksProduced: 0 - CloseTime: 50.180us - ExecTime: 431.13ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 185.488us - ProcessConjunctTime: 34.723us - ProjectionTime: 1.345us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 115.768ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 430.731ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [7.180us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [115.768ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 314.894ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 127ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.183ms - ScannerCtxSchedTime: 115.767ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.323us - ScannerInitTime: 74.273us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 711ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.437us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 378.629us - BlockInitTime: 501.291us - BlockLoadTime: 288.459ms - BlocksLoad: 260 - CachedPagesNum: 325 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 189.815ms - FirstReadSeekCount: 514 - FirstReadSeekTime: 34.218ms - FirstReadTime: 96.791ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.727us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 25.81us - OutputIndexResultColumnTimer: 23.517us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 325 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 638.32us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 272.914us - CloseTime: 58.566us - GetBlockTime: 25.158us - OpenTime: 105.338us - PrepareTime: 195.634us - SinkTime: 120.123us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 569.967us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.852ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.634us - CompressTime: 0ns - ExecTime: 237.635us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.244us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 102.512us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 681ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 297ns - BlocksProduced: 0 - CloseTime: 41.72us - ExecTime: 154.649ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 158.871us - ProcessConjunctTime: 28.455us - ProjectionTime: 1.284us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 100.802ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 154.423ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.131us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [100.802ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.557ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 153ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.588ms - ScannerCtxSchedTime: 100.801ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.122us - ScannerInitTime: 52.727us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 738ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.849us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 476.118us - BlockInitTime: 561.147us - BlockLoadTime: 53.265ms - BlocksLoad: 291 - CachedPagesNum: 350 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 42.159ms - FirstReadSeekCount: 576 - FirstReadSeekTime: 1.37ms - FirstReadTime: 9.388ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.285us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 37.762us - OutputIndexResultColumnTimer: 16.208us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 350 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 725.637us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 306.618us - CloseTime: 58.850us - GetBlockTime: 26.897us - OpenTime: 141.971us - PrepareTime: 207.405us - SinkTime: 109.289us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 655.244us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.652ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.547us - CompressTime: 0ns - ExecTime: 176.192us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.754us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 54.830us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 897ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 588ns - BlocksProduced: 0 - CloseTime: 43.863us - ExecTime: 221.127ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 197.376us - ProcessConjunctTime: 42.547us - ProjectionTime: 1.448us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 208.216ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 220.857ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.722us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [208.216ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.586ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 130ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.629ms - ScannerCtxSchedTime: 208.214ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.83us - ScannerInitTime: 70.907us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 182ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 891ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 4.280us - BlockInitTime: 21.880us - BlockLoadTime: 12.449ms - BlocksLoad: 57 - CachedPagesNum: 67 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 9.197ms - FirstReadSeekCount: 112 - FirstReadSeekTime: 747.803us - FirstReadTime: 2.970ms - IOTimer: 0ns - InvertedIndexFilterTime: 252ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 5.847us - OutputIndexResultColumnTimer: 6.536us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 67 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 495.903us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 188.199us - CloseTime: 64.616us - GetBlockTime: 23.131us - OpenTime: 67.819us - PrepareTime: 170.911us - SinkTime: 84.716us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 426.179us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.521ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.659us - CompressTime: 0ns - ExecTime: 163.563us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.336us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.473us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 471ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 317ns - BlocksProduced: 0 - CloseTime: 51.699us - ExecTime: 134.423ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 125.414us - ProcessConjunctTime: 19.885us - ProjectionTime: 1.446us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 103.197ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.222ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.195us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [103.197ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 30.956ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.683ms - ScannerCtxSchedTime: 103.196ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.110us - ScannerInitTime: 34.336us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 157ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 864ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.415us - BlockInitTime: 29.528us - BlockLoadTime: 30.860ms - BlocksLoad: 61 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 27.178ms - FirstReadSeekCount: 120 - FirstReadSeekTime: 697.695us - FirstReadTime: 3.387ms - IOTimer: 0ns - InvertedIndexFilterTime: 236ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.721us - OutputIndexResultColumnTimer: 4.489us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 71 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 106: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 429.994ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 429.649ms - CloseTime: 46.364us - GetBlockTime: 403.263ms - OpenTime: 6.345us - PrepareTime: 282.879us - SinkTime: 24.849ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 17 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 286.674ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s136ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.431us - CompressTime: 0ns - ExecTime: 24.893ms - InputRows: 128.216K (128216) - LocalBytesSent: 3.91 MB - LocalSendTime: 374.448us - LocalSentRows: 128.216K (128216) - MemoryUsage: - PeakMemoryUsage: 5.98 MB - MergeBlockTime: 0ns - OpenTime: 186.145us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.216K (128216) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 15.940ms - SplitBlockHashComputeTime: 2.988ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 103.262ms - CloseTime: 5.822us - ExecTime: 125.291ms - HashTableComputeTime: 94.384ms - HashTableEmplaceTime: 87.366ms - HashTableInputCount: 131.063K (131063) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.648us - ProjectionTime: 21.476ms - RowsProduced: 128.216K (128216) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 286 - BuildOutputBlock: 0ns - CloseTime: 9.467us - ExecTime: 271.224ms - InitProbeSideTime: 98.203ms - JoinFilterTimer: 42.424us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 13.850us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 110.142us - ProbeFindNextTime: 0ns - ProbeRows: 1.172284M (1172284) - ProbeTime: 260.478ms - ProbeWhenBuildSideOutputTime: 16.496ms - ProbeWhenProbeSideOutputTime: 2.892ms - ProbeWhenProcessHashTableTime: 348.523us - ProbeWhenSearchHashTableTime: 137.645ms - ProjectionTime: 9.430ms - RowsProduced: 131.063K (131063) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 428.643ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 283 - BytesReceived: 0.00 - CloseTime: 11.343us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.30ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.35 MB - MemoryUsage: - Blocks: 19.65 MB - PeakMemoryUsage: 19.65 MB - OpenTime: 17.796us - ProjectionTime: 0ns - RowsProduced: 1.172284M (1172284) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s306ms PipelineXTask (index=2):(Active: 350.34ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 349.776ms - CloseTime: 42.526us - GetBlockTime: 321.160ms - OpenTime: 6.873us - PrepareTime: 199.585us - SinkTime: 26.904ms - GetBlockCounter: 303 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 304.781ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 911.460ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.546us - CompressTime: 0ns - ExecTime: 26.810ms - InputRows: 128.422K (128422) - LocalBytesSent: 3.92 MB - LocalSendTime: 367.178us - LocalSentRows: 128.422K (128422) - MemoryUsage: - PeakMemoryUsage: 5.99 MB - MergeBlockTime: 0ns - OpenTime: 62.436us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.422K (128422) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.849ms - SplitBlockHashComputeTime: 3.278ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 106.695ms - CloseTime: 9.763us - ExecTime: 112.67ms - HashTableComputeTime: 97.39ms - HashTableEmplaceTime: 89.575ms - HashTableInputCount: 131.26K (131260) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.619us - ProjectionTime: 4.769ms - RowsProduced: 128.422K (128422) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 303 - BuildOutputBlock: 0ns - CloseTime: 8.681us - ExecTime: 202.535ms - InitProbeSideTime: 37.173ms - JoinFilterTimer: 48.531us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 11.920us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 86.142us - ProbeFindNextTime: 0ns - ProbeRows: 1.247336M (1247336) - ProbeTime: 190.676ms - ProbeWhenBuildSideOutputTime: 32.351ms - ProbeWhenProbeSideOutputTime: 3.62ms - ProbeWhenProcessHashTableTime: 357.424us - ProbeWhenSearchHashTableTime: 112.289ms - ProjectionTime: 10.408ms - RowsProduced: 131.26K (131260) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 652.216ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 300 - BytesReceived: 0.00 - CloseTime: 7.167us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.520ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.74 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.63 MB - OpenTime: 15.925us - ProjectionTime: 0ns - RowsProduced: 1.247336M (1247336) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s381ms PipelineXTask (index=4):(Active: 356.708ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 356.417ms - CloseTime: 53.487us - GetBlockTime: 321.200ms - OpenTime: 6.826us - PrepareTime: 220.909us - SinkTime: 33.556ms - GetBlockCounter: 288 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 292.219ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 997.684ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.563us - CompressTime: 0ns - ExecTime: 33.470ms - InputRows: 128.782K (128782) - LocalBytesSent: 3.93 MB - LocalSendTime: 330.275us - LocalSentRows: 128.782K (128782) - MemoryUsage: - PeakMemoryUsage: 6.87 MB - MergeBlockTime: 0ns - OpenTime: 60.992us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.782K (128782) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.47ms - SplitBlockHashComputeTime: 3.264ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 126.424ms - CloseTime: 7.339us - ExecTime: 134.276ms - HashTableComputeTime: 117.204ms - HashTableEmplaceTime: 109.669ms - HashTableInputCount: 131.739K (131739) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.289us - ProjectionTime: 7.392ms - RowsProduced: 128.782K (128782) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 288 - BuildOutputBlock: 0ns - CloseTime: 17.105us - ExecTime: 180.585ms - InitProbeSideTime: 35.858ms - JoinFilterTimer: 45.668us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 12.5us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 87.431us - ProbeFindNextTime: 0ns - ProbeRows: 1.172631M (1172631) - ProbeTime: 169.306ms - ProbeWhenBuildSideOutputTime: 17.620ms - ProbeWhenProbeSideOutputTime: 4.391ms - ProbeWhenProcessHashTableTime: 369.344us - ProbeWhenSearchHashTableTime: 104.625ms - ProjectionTime: 9.946ms - RowsProduced: 131.739K (131739) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 444.867ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 285 - BytesReceived: 0.00 - CloseTime: 10.936us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.469ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.30 MB - MemoryUsage: - Blocks: 19.07 MB - PeakMemoryUsage: 19.07 MB - OpenTime: 19.331us - ProjectionTime: 0ns - RowsProduced: 1.172631M (1172631) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s501ms PipelineXTask (index=6):(Active: 378.666ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 378.451ms - CloseTime: 54.236us - GetBlockTime: 349.510ms - OpenTime: 6.205us - PrepareTime: 147.531us - SinkTime: 27.398ms - GetBlockCounter: 285 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 298.638ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s143ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.393us - CompressTime: 0ns - ExecTime: 27.315ms - InputRows: 127.839K (127839) - LocalBytesSent: 3.90 MB - LocalSendTime: 361.657us - LocalSentRows: 127.839K (127839) - MemoryUsage: - PeakMemoryUsage: 6.72 MB - MergeBlockTime: 0ns - OpenTime: 64.564us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.839K (127839) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.681ms - SplitBlockHashComputeTime: 3.101ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 104.879ms - CloseTime: 6.697us - ExecTime: 109.963ms - HashTableComputeTime: 95.462ms - HashTableEmplaceTime: 88.325ms - HashTableInputCount: 130.637K (130637) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.222us - ProjectionTime: 4.555ms - RowsProduced: 127.839K (127839) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 285 - BuildOutputBlock: 0ns - CloseTime: 16.922us - ExecTime: 211.387ms - InitProbeSideTime: 46.165ms - JoinFilterTimer: 42.835us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 9.688us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 79.346us - ProbeFindNextTime: 0ns - ProbeRows: 1.172387M (1172387) - ProbeTime: 200.74ms - ProbeWhenBuildSideOutputTime: 18.84ms - ProbeWhenProbeSideOutputTime: 2.904ms - ProbeWhenProcessHashTableTime: 349.470us - ProbeWhenSearchHashTableTime: 127.444ms - ProjectionTime: 9.980ms - RowsProduced: 130.637K (130637) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 475.865ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 282 - BytesReceived: 0.00 - CloseTime: 11.331us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.439ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.12 MB - MemoryUsage: - Blocks: 18.97 MB - PeakMemoryUsage: 18.97 MB - OpenTime: 22.253us - ProjectionTime: 0ns - RowsProduced: 1.172387M (1172387) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s294ms PipelineXTask (index=8):(Active: 293.785ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 293.575ms - CloseTime: 46.156us - GetBlockTime: 247.408ms - OpenTime: 7.268us - PrepareTime: 148.87us - SinkTime: 44.681ms - GetBlockCounter: 285 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.58ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s202ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.817us - CompressTime: 0ns - ExecTime: 44.628ms - InputRows: 127.446K (127446) - LocalBytesSent: 3.89 MB - LocalSendTime: 351.118us - LocalSentRows: 127.446K (127446) - MemoryUsage: - PeakMemoryUsage: 5.93 MB - MergeBlockTime: 0ns - OpenTime: 66.910us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.446K (127446) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 36.36ms - SplitBlockHashComputeTime: 3.30ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 83.897ms - CloseTime: 4.437us - ExecTime: 88.517ms - HashTableComputeTime: 75.475ms - HashTableEmplaceTime: 68.329ms - HashTableInputCount: 130.191K (130191) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.723us - ProjectionTime: 4.90ms - RowsProduced: 127.446K (127446) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 285 - BuildOutputBlock: 0ns - CloseTime: 13.580us - ExecTime: 152.850ms - InitProbeSideTime: 29.430ms - JoinFilterTimer: 41.905us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.954us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 83.738us - ProbeFindNextTime: 0ns - ProbeRows: 1.171627M (1171627) - ProbeTime: 142.228ms - ProbeWhenBuildSideOutputTime: 17.781ms - ProbeWhenProbeSideOutputTime: 2.702ms - ProbeWhenProcessHashTableTime: 348.986us - ProbeWhenSearchHashTableTime: 87.376ms - ProjectionTime: 9.412ms - RowsProduced: 130.191K (130191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 538.483ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 282 - BytesReceived: 0.00 - CloseTime: 10.204us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.493ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.62 MB - MemoryUsage: - Blocks: 19.51 MB - PeakMemoryUsage: 19.51 MB - OpenTime: 13.648us - ProjectionTime: 0ns - RowsProduced: 1.171627M (1171627) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s554ms PipelineXTask (index=10):(Active: 371.194ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 370.948ms - CloseTime: 53.899us - GetBlockTime: 346.46ms - OpenTime: 7.427us - PrepareTime: 178.783us - SinkTime: 23.481ms - GetBlockCounter: 287 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 268.128ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 867.132ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.300us - CompressTime: 0ns - ExecTime: 23.413ms - InputRows: 127.661K (127661) - LocalBytesSent: 3.90 MB - LocalSendTime: 355.437us - LocalSentRows: 127.661K (127661) - MemoryUsage: - PeakMemoryUsage: 6.16 MB - MergeBlockTime: 0ns - OpenTime: 55.748us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.661K (127661) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.690ms - SplitBlockHashComputeTime: 3.30ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 95.291ms - CloseTime: 13.881us - ExecTime: 99.807ms - HashTableComputeTime: 86.953ms - HashTableEmplaceTime: 79.944ms - HashTableInputCount: 130.473K (130473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.732us - ProjectionTime: 4.74ms - RowsProduced: 127.661K (127661) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 287 - BuildOutputBlock: 0ns - CloseTime: 10.11us - ExecTime: 240.544ms - InitProbeSideTime: 32.28ms - JoinFilterTimer: 49.521us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 18.508us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 82.67us - ProbeFindNextTime: 0ns - ProbeRows: 1.172669M (1172669) - ProbeTime: 229.833ms - ProbeWhenBuildSideOutputTime: 71.491ms - ProbeWhenProbeSideOutputTime: 2.942ms - ProbeWhenProcessHashTableTime: 329.8us - ProbeWhenSearchHashTableTime: 118.296ms - ProjectionTime: 9.421ms - RowsProduced: 130.473K (130473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 516.957ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 283 - BytesReceived: 0.00 - CloseTime: 10.497us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.1ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.48 MB - MemoryUsage: - Blocks: 19.50 MB - PeakMemoryUsage: 19.50 MB - OpenTime: 16.787us - ProjectionTime: 0ns - RowsProduced: 1.172669M (1172669) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s600ms PipelineXTask (index=12):(Active: 305.234ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 305.1ms - CloseTime: 48.257us - GetBlockTime: 280.308ms - OpenTime: 4.398us - PrepareTime: 174.483us - SinkTime: 23.242ms - GetBlockCounter: 285 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 265.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s67ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.294us - CompressTime: 0ns - ExecTime: 23.176ms - InputRows: 127.346K (127346) - LocalBytesSent: 3.89 MB - LocalSendTime: 359.979us - LocalSentRows: 127.346K (127346) - MemoryUsage: - PeakMemoryUsage: 6.79 MB - MergeBlockTime: 0ns - OpenTime: 82.125us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.346K (127346) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.685ms - SplitBlockHashComputeTime: 2.954ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 110.483ms - CloseTime: 9.386us - ExecTime: 115.146ms - HashTableComputeTime: 78.800ms - HashTableEmplaceTime: 72.115ms - HashTableInputCount: 130.102K (130102) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.326us - ProjectionTime: 4.190ms - RowsProduced: 127.346K (127346) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 285 - BuildOutputBlock: 0ns - CloseTime: 14.39us - ExecTime: 159.320ms - InitProbeSideTime: 29.816ms - JoinFilterTimer: 49.555us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 16.243us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 77.542us - ProbeFindNextTime: 0ns - ProbeRows: 1.17206M (1172060) - ProbeTime: 149.55ms - ProbeWhenBuildSideOutputTime: 17.501ms - ProbeWhenProbeSideOutputTime: 2.670ms - ProbeWhenProcessHashTableTime: 364.471us - ProbeWhenSearchHashTableTime: 94.127ms - ProjectionTime: 9.70ms - RowsProduced: 130.102K (130102) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 547.247ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 282 - BytesReceived: 0.00 - CloseTime: 4.719us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.274ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.35 MB - MemoryUsage: - Blocks: 19.25 MB - PeakMemoryUsage: 19.25 MB - OpenTime: 13.905us - ProjectionTime: 0ns - RowsProduced: 1.17206M (1172060) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s375ms PipelineXTask (index=14):(Active: 359.998ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 359.746ms - CloseTime: 53.558us - GetBlockTime: 331.556ms - OpenTime: 7.188us - PrepareTime: 184.761us - SinkTime: 26.616ms - GetBlockCounter: 287 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 310.908ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s421ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.751us - CompressTime: 0ns - ExecTime: 26.573ms - InputRows: 127.938K (127938) - LocalBytesSent: 3.90 MB - LocalSendTime: 409.883us - LocalSentRows: 127.938K (127938) - MemoryUsage: - PeakMemoryUsage: 6.37 MB - MergeBlockTime: 0ns - OpenTime: 78.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.938K (127938) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.871ms - SplitBlockHashComputeTime: 3.392ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 112.689ms - CloseTime: 8.97us - ExecTime: 118.400ms - HashTableComputeTime: 101.576ms - HashTableEmplaceTime: 93.205ms - HashTableInputCount: 130.732K (130732) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.670us - ProjectionTime: 5.157ms - RowsProduced: 127.938K (127938) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 287 - BuildOutputBlock: 0ns - CloseTime: 7.754us - ExecTime: 205.990ms - InitProbeSideTime: 65.833ms - JoinFilterTimer: 41.820us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 27.458us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 97.346us - ProbeFindNextTime: 0ns - ProbeRows: 1.174149M (1174149) - ProbeTime: 194.90ms - ProbeWhenBuildSideOutputTime: 20.298ms - ProbeWhenProbeSideOutputTime: 2.998ms - ProbeWhenProcessHashTableTime: 365.160us - ProbeWhenSearchHashTableTime: 99.438ms - ProjectionTime: 10.531ms - RowsProduced: 130.732K (130732) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 708.296ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 284 - BytesReceived: 0.00 - CloseTime: 11.521us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.381ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.12 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.55 MB - OpenTime: 12.131us - ProjectionTime: 0ns - RowsProduced: 1.174149M (1174149) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s78ms PipelineXTask (index=16):(Active: 325.717ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 325.461ms - CloseTime: 42.960us - GetBlockTime: 301.319ms - OpenTime: 33.821us - PrepareTime: 168.696us - SinkTime: 22.796ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 268.224ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s95ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.216us - CompressTime: 0ns - ExecTime: 22.763ms - InputRows: 128.608K (128608) - LocalBytesSent: 3.92 MB - LocalSendTime: 303.481us - LocalSentRows: 128.608K (128608) - MemoryUsage: - PeakMemoryUsage: 6.08 MB - MergeBlockTime: 0ns - OpenTime: 79.549us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.608K (128608) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.144ms - SplitBlockHashComputeTime: 3.24ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 102.79ms - CloseTime: 5.760us - ExecTime: 106.411ms - HashTableComputeTime: 93.802ms - HashTableEmplaceTime: 87.9ms - HashTableInputCount: 131.38K (131380) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.40us - ProjectionTime: 4.0ms - RowsProduced: 128.608K (128608) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 286 - BuildOutputBlock: 0ns - CloseTime: 8.111us - ExecTime: 188.843ms - InitProbeSideTime: 43.729ms - JoinFilterTimer: 40.409us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 15.147us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 62.298us - ProbeFindNextTime: 0ns - ProbeRows: 1.174194M (1174194) - ProbeTime: 178.501ms - ProbeWhenBuildSideOutputTime: 29.710ms - ProbeWhenProbeSideOutputTime: 2.727ms - ProbeWhenProcessHashTableTime: 344.561us - ProbeWhenSearchHashTableTime: 97.492ms - ProjectionTime: 9.111ms - RowsProduced: 131.38K (131380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 439.917ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 283 - BytesReceived: 0.00 - CloseTime: 10.92us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.653ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.49 MB - MemoryUsage: - Blocks: 19.66 MB - PeakMemoryUsage: 19.66 MB - OpenTime: 26.786us - ProjectionTime: 0ns - RowsProduced: 1.174194M (1174194) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s486ms PipelineXTask (index=18):(Active: 394.369ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 394.85ms - CloseTime: 55.640us - GetBlockTime: 343.258ms - OpenTime: 5.261us - PrepareTime: 215.948us - SinkTime: 49.394ms - GetBlockCounter: 287 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 265.134ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s32ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.316us - CompressTime: 0ns - ExecTime: 49.327ms - InputRows: 128.104K (128104) - LocalBytesSent: 3.91 MB - LocalSendTime: 347.116us - LocalSentRows: 128.104K (128104) - MemoryUsage: - PeakMemoryUsage: 6.52 MB - MergeBlockTime: 0ns - OpenTime: 66.362us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.104K (128104) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.776ms - SplitBlockHashComputeTime: 2.973ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 116.96ms - CloseTime: 10.122us - ExecTime: 120.404ms - HashTableComputeTime: 95.383ms - HashTableEmplaceTime: 72.434ms - HashTableInputCount: 130.819K (130819) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.61us - ProjectionTime: 3.952ms - RowsProduced: 128.104K (128104) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 287 - BuildOutputBlock: 0ns - CloseTime: 17.424us - ExecTime: 204.810ms - InitProbeSideTime: 31.579ms - JoinFilterTimer: 43.921us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 12.173us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 70.886us - ProbeFindNextTime: 0ns - ProbeRows: 1.173378M (1173378) - ProbeTime: 194.545ms - ProbeWhenBuildSideOutputTime: 17.632ms - ProbeWhenProbeSideOutputTime: 2.579ms - ProbeWhenProcessHashTableTime: 350.584us - ProbeWhenSearchHashTableTime: 137.683ms - ProjectionTime: 8.947ms - RowsProduced: 130.819K (130819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 505.332ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 284 - BytesReceived: 0.00 - CloseTime: 10.312us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.639ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.03 MB - MemoryUsage: - Blocks: 19.25 MB - PeakMemoryUsage: 19.25 MB - OpenTime: 32.235us - ProjectionTime: 0ns - RowsProduced: 1.173378M (1173378) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s360ms PipelineXTask (index=20):(Active: 347.31ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 346.791ms - CloseTime: 57.179us - GetBlockTime: 316.966ms - OpenTime: 8.605us - PrepareTime: 163.39us - SinkTime: 28.74ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 315.658ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s143ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.309us - CompressTime: 0ns - ExecTime: 27.964ms - InputRows: 127.537K (127537) - LocalBytesSent: 3.89 MB - LocalSendTime: 362.909us - LocalSentRows: 127.537K (127537) - MemoryUsage: - PeakMemoryUsage: 6.27 MB - MergeBlockTime: 0ns - OpenTime: 64.727us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127.537K (127537) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.681ms - SplitBlockHashComputeTime: 3.509ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 83.810ms - CloseTime: 13.580us - ExecTime: 89.69ms - HashTableComputeTime: 74.81ms - HashTableEmplaceTime: 66.558ms - HashTableInputCount: 130.305K (130305) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.754us - ProjectionTime: 4.676ms - RowsProduced: 127.537K (127537) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 286 - BuildOutputBlock: 0ns - CloseTime: 12.299us - ExecTime: 221.143ms - InitProbeSideTime: 52.471ms - JoinFilterTimer: 55.27us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 11.46us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 123.33us - ProbeFindNextTime: 0ns - ProbeRows: 1.172094M (1172094) - ProbeTime: 209.373ms - ProbeWhenBuildSideOutputTime: 19.38ms - ProbeWhenProbeSideOutputTime: 3.52ms - ProbeWhenProcessHashTableTime: 332.930us - ProbeWhenSearchHashTableTime: 128.777ms - ProjectionTime: 10.255ms - RowsProduced: 130.305K (130305) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 626.358ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 283 - BytesReceived: 0.00 - CloseTime: 10.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.820ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.28 MB - MemoryUsage: - Blocks: 19.12 MB - PeakMemoryUsage: 19.12 MB - OpenTime: 21.884us - ProjectionTime: 0ns - RowsProduced: 1.172094M (1172094) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s292ms PipelineXTask (index=22):(Active: 433.868ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 433.631ms - CloseTime: 46.375us - GetBlockTime: 385.811ms - OpenTime: 9.646us - PrepareTime: 172.268us - SinkTime: 45.828ms - GetBlockCounter: 288 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 21 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 366.376ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s249ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.491us - CompressTime: 0ns - ExecTime: 45.713ms - InputRows: 128.48K (128480) - LocalBytesSent: 3.92 MB - LocalSendTime: 378.299us - LocalSentRows: 128.48K (128480) - MemoryUsage: - PeakMemoryUsage: 6.81 MB - MergeBlockTime: 0ns - OpenTime: 73.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.48K (128480) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 34.761ms - SplitBlockHashComputeTime: 3.621ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 97.830ms - CloseTime: 7.82us - ExecTime: 103.903ms - HashTableComputeTime: 87.17ms - HashTableEmplaceTime: 78.943ms - HashTableInputCount: 131.302K (131302) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.833us - ProjectionTime: 5.497ms - RowsProduced: 128.48K (128480) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 288 - BuildOutputBlock: 0ns - CloseTime: 9.241us - ExecTime: 274.407ms - InitProbeSideTime: 41.202ms - JoinFilterTimer: 50.517us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.821us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.81us - ProbeFindNextTime: 0ns - ProbeRows: 1.172379M (1172379) - ProbeTime: 261.478ms - ProbeWhenBuildSideOutputTime: 30.255ms - ProbeWhenProbeSideOutputTime: 3.292ms - ProbeWhenProcessHashTableTime: 353.855us - ProbeWhenSearchHashTableTime: 180.538ms - ProjectionTime: 11.45ms - RowsProduced: 131.302K (131302) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 618.444ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 285 - BytesReceived: 0.00 - CloseTime: 10.257us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.343ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 45.42 MB - MemoryUsage: - Blocks: 19.52 MB - PeakMemoryUsage: 19.52 MB - OpenTime: 28.904us - ProjectionTime: 0ns - RowsProduced: 1.172379M (1172379) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s345ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 117.544ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 117.429ms - CloseTime: 15.371us - GetBlockTime: 395.197us - OpenTime: 3.56us - PrepareTime: 90.809us - SinkTime: 116.883ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.529ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 470.378ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.218us - BuildRows: 131.064K (131064) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.374ms - BuildTableInsertTime: 17.626ms - BuildTableTime: 17.634ms - CloseTime: 0ns - ExecTime: 116.920ms - InputRows: 131.063K (131063) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.63 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.37 MB - OpenTime: 52.220us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 144.529us - RuntimeFilterComputeTime: 6.704ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 12.569us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 398.543us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.14 MB - MemoryUsage: - Blocks: 1.50 MB - PeakMemoryUsage: 1.50 MB - OpenTime: 15.357us - ProjectionTime: 0ns - RowsProduced: 131.063K (131063) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s183ms PipelineXTask (index=3):(Active: 41.848ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 41.741ms - CloseTime: 19.711us - GetBlockTime: 467.336us - OpenTime: 2.216us - PrepareTime: 77.479us - SinkTime: 41.108ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.747ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 594.563ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.538us - BuildRows: 131.261K (131261) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.334ms - BuildTableInsertTime: 26.316ms - BuildTableTime: 26.323ms - CloseTime: 0ns - ExecTime: 41.108ms - InputRows: 131.26K (131260) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.39 MB - OpenTime: 24.69us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 228.571us - RuntimeFilterComputeTime: 4.635ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 15.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 467.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.27 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 14.551us - ProjectionTime: 0ns - RowsProduced: 131.26K (131260) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s159ms PipelineXTask (index=5):(Active: 67.863ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 67.768ms - CloseTime: 18.449us - GetBlockTime: 421.835us - OpenTime: 3.58us - PrepareTime: 65.636us - SinkTime: 67.176ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 385.592ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.394us - BuildRows: 131.74K (131740) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.930ms - BuildTableInsertTime: 10.671ms - BuildTableTime: 10.677ms - CloseTime: 0ns - ExecTime: 67.188ms - InputRows: 131.739K (131739) - MemoryUsage: - BuildBlocks: 3.14 MB - BuildKeyArena: 3.65 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.41 MB - OpenTime: 27.155us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 245.713us - RuntimeFilterComputeTime: 5.427ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 13.851us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 427.434us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.14 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 19.222us - ProjectionTime: 0ns - RowsProduced: 131.739K (131739) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s281ms PipelineXTask (index=7):(Active: 43.121ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.922ms - CloseTime: 23.938us - GetBlockTime: 513.974us - OpenTime: 2.3us - PrepareTime: 165.17us - SinkTime: 42.252ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.93ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 776.931ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.28us - BuildRows: 130.638K (130638) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.639ms - BuildTableInsertTime: 16.417ms - BuildTableTime: 16.426ms - CloseTime: 0ns - ExecTime: 42.250ms - InputRows: 130.637K (130637) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.62 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.35 MB - OpenTime: 14.180us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.694ms - RuntimeFilterComputeTime: 12.378ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 17.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 620.524us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.23 MB - MemoryUsage: - Blocks: 880.00 KB - PeakMemoryUsage: 880.61 KB - OpenTime: 112.579us - ProjectionTime: 0ns - RowsProduced: 130.637K (130637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 946.420ms PipelineXTask (index=9):(Active: 22.427ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.299ms - CloseTime: 15.845us - GetBlockTime: 424.481us - OpenTime: 2.698us - PrepareTime: 103.122us - SinkTime: 21.729ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.380ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 493.748ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.240us - BuildRows: 130.192K (130192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.877ms - BuildTableInsertTime: 9.259ms - BuildTableTime: 9.265ms - CloseTime: 0ns - ExecTime: 21.748ms - InputRows: 130.191K (130191) - MemoryUsage: - BuildBlocks: 3.10 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.33 MB - OpenTime: 32.236us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 208.249us - RuntimeFilterComputeTime: 4.916ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 11.909us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 426.568us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.04 MB - MemoryUsage: - Blocks: 960.00 KB - PeakMemoryUsage: 960.46 KB - OpenTime: 13.323us - ProjectionTime: 0ns - RowsProduced: 130.191K (130191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s269ms PipelineXTask (index=11):(Active: 56.287ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 56.189ms - CloseTime: 16.255us - GetBlockTime: 33.394ms - OpenTime: 2.282us - PrepareTime: 74.2us - SinkTime: 22.660ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 485.965ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.415us - BuildRows: 130.474K (130474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.470ms - BuildTableInsertTime: 10.237ms - BuildTableTime: 10.244ms - CloseTime: 0ns - ExecTime: 22.663ms - InputRows: 130.473K (130473) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.34 MB - OpenTime: 21.938us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 231.271us - RuntimeFilterComputeTime: 5.121ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 12.32us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.414ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.16 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 33.342us - ProjectionTime: 0ns - RowsProduced: 130.473K (130473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s260ms PipelineXTask (index=13):(Active: 25.192ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 25.86ms - CloseTime: 14.730us - GetBlockTime: 354.753us - OpenTime: 1.585us - PrepareTime: 83.95us - SinkTime: 24.597ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.131ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 550.636ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.141us - BuildRows: 130.103K (130103) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.195ms - BuildTableInsertTime: 10.649ms - BuildTableTime: 10.655ms - CloseTime: 0ns - ExecTime: 24.628ms - InputRows: 130.102K (130102) - MemoryUsage: - BuildBlocks: 3.10 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.32 MB - OpenTime: 44.564us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 238.823us - RuntimeFilterComputeTime: 5.503ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 10.393us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 360.891us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.97 MB - MemoryUsage: - Blocks: 1.04 MB - PeakMemoryUsage: 1.04 MB - OpenTime: 16.333us - ProjectionTime: 0ns - RowsProduced: 130.102K (130102) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s257ms PipelineXTask (index=15):(Active: 27.401ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.272ms - CloseTime: 16.762us - GetBlockTime: 342.75us - OpenTime: 2.0us - PrepareTime: 104.641us - SinkTime: 26.793ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.345ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 578.44ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.156us - BuildRows: 130.733K (130733) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.626ms - BuildTableInsertTime: 11.427ms - BuildTableTime: 11.433ms - CloseTime: 0ns - ExecTime: 26.803ms - InputRows: 130.732K (130732) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.62 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.36 MB - OpenTime: 23.302us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.520ms - RuntimeFilterComputeTime: 5.287ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 13.239us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 394.489us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.16 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 61.538us - ProjectionTime: 0ns - RowsProduced: 130.732K (130732) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s246ms PipelineXTask (index=17):(Active: 24.804ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 24.721ms - CloseTime: 24.273us - GetBlockTime: 420.500us - OpenTime: 2.755us - PrepareTime: 50.423us - SinkTime: 24.154ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.704ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 751.553ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.815us - BuildRows: 131.381K (131381) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.497ms - BuildTableInsertTime: 10.242ms - BuildTableTime: 10.250ms - CloseTime: 0ns - ExecTime: 24.153ms - InputRows: 131.38K (131380) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.40 MB - OpenTime: 13.828us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.35us - RuntimeFilterComputeTime: 6.98ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 19.408us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 435.967us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.19 MB - MemoryUsage: - Blocks: 1.20 MB - PeakMemoryUsage: 1.20 MB - OpenTime: 15.696us - ProjectionTime: 0ns - RowsProduced: 131.38K (131380) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 954.49ms PipelineXTask (index=19):(Active: 23.923ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.843ms - CloseTime: 16.300us - GetBlockTime: 421.39us - OpenTime: 2.532us - PrepareTime: 56.113us - SinkTime: 23.295ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.878ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 470.54ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.10us - BuildRows: 130.82K (130820) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.613ms - BuildTableInsertTime: 10.607ms - BuildTableTime: 10.613ms - CloseTime: 0ns - ExecTime: 23.300ms - InputRows: 130.819K (130819) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.63 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.36 MB - OpenTime: 18.890us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 235.850us - RuntimeFilterComputeTime: 5.269ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 13.46us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 428.908us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.16 MB - MemoryUsage: - Blocks: 1.00 MB - PeakMemoryUsage: 1.00 MB - OpenTime: 16.799us - ProjectionTime: 0ns - RowsProduced: 130.819K (130819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s258ms PipelineXTask (index=21):(Active: 23.626ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.558ms - CloseTime: 17.175us - GetBlockTime: 348.343us - OpenTime: 2.225us - PrepareTime: 42.605us - SinkTime: 23.77ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.578ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 477.598ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.821us - BuildRows: 130.306K (130306) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.174ms - BuildTableInsertTime: 10.662ms - BuildTableTime: 10.668ms - CloseTime: 0ns - ExecTime: 23.78ms - InputRows: 130.305K (130305) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.33 MB - OpenTime: 13.953us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 262.763us - RuntimeFilterComputeTime: 5.561ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 11.457us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 353.358us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.12 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 12.971us - ProjectionTime: 0ns - RowsProduced: 130.305K (130305) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s269ms PipelineXTask (index=23):(Active: 24.68ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 23.993ms - CloseTime: 16.769us - GetBlockTime: 458.145us - OpenTime: 2.290us - PrepareTime: 49.551us - SinkTime: 23.378ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 551.923ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.895us - BuildRows: 131.303K (131303) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.147ms - BuildTableInsertTime: 10.388ms - BuildTableTime: 10.396ms - CloseTime: 0ns - ExecTime: 23.377ms - InputRows: 131.302K (131302) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.39 MB - OpenTime: 16.883us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 210.596us - RuntimeFilterComputeTime: 4.292ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 32 - BytesReceived: 0.00 - CloseTime: 12.470us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 451.905us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.33 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 15.980us - ProjectionTime: 0ns - RowsProduced: 131.302K (131302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s186ms Fragment 107: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 134.331ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 133.656ms - CloseTime: 113.190us - GetBlockTime: 2.710ms - OpenTime: 307.443us - PrepareTime: 240.858us - SinkTime: 129.826ms - GetBlockCounter: 301 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 99.646ms - WaitBfTime: 1s311ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s354ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 288 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.466us - CompressTime: 0ns - ExecTime: 129.843ms - InputRows: 1.189633M (1189633) - LocalBytesSent: 28.36 MB - LocalSendTime: 2.179ms - LocalSentRows: 1.189633M (1189633) - MemoryUsage: - PeakMemoryUsage: 45.69 MB - MergeBlockTime: 0ns - OpenTime: 97.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.189633M (1189633) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 62.706ms - SplitBlockHashComputeTime: 42.154ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 14.803us - BlocksProduced: 301 - CloseTime: 98.116us - ExecTime: 70.418ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 390.353us - ProcessConjunctTime: 58.177us - ProjectionTime: 0ns - RowsProduced: 1.189633M (1189633) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 35.431ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 67.309ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [93.743ms, 79.736ms, 59.051ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [15.776ms, 15.633ms, 4.021ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 95.542ms - MemoryUsage: - FreeBlocks: 30.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.41ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.955us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 199.644ms - ScannerCtxSchedTime: 35.402ms - ScannerFilterTime: 133.905ms - ScannerGetBlockTime: 98.35ms - ScannerInitTime: 154.979us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 16 SegmentIterator: - BitmapIndexFilterTimer: 4.763us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.858us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 26.845us - BlockInitTime: 237.746us - BlockLoadTime: 96.855ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 1.68K (1680) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 1.756ms - FirstReadTime: 92.473ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.315us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 228.629us - OutputIndexResultColumnTimer: 128.977us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.68K (1680) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 181.459ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 180.982ms - CloseTime: 147.662us - GetBlockTime: 2.835ms - OpenTime: 108.543us - PrepareTime: 209.729us - SinkTime: 177.101ms - GetBlockCounter: 302 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 96.980ms - WaitBfTime: 1s17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s219ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 288 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.984us - CompressTime: 0ns - ExecTime: 177.79ms - InputRows: 1.193291M (1193291) - LocalBytesSent: 28.45 MB - LocalSendTime: 2.193ms - LocalSentRows: 1.193291M (1193291) - MemoryUsage: - PeakMemoryUsage: 45.74 MB - MergeBlockTime: 0ns - OpenTime: 59.987us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.193291M (1193291) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 143.958ms - SplitBlockHashComputeTime: 20.635ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.11us - BlocksProduced: 302 - CloseTime: 130.927us - ExecTime: 300.970ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 205.295us - ProcessConjunctTime: 20.27us - ProjectionTime: 0ns - RowsProduced: 1.193291M (1193291) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 393.117ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 297.891ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [209.260ms, 241.053ms, 19.288ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [127.389ms, 142.029ms, 123.698ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 207.42ms - MemoryUsage: - FreeBlocks: 30.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.887ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.915us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 225.751ms - ScannerCtxSchedTime: 393.96ms - ScannerFilterTime: 259.653ms - ScannerGetBlockTime: 209.389ms - ScannerInitTime: 63.769us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 16 SegmentIterator: - BitmapIndexFilterTimer: 3.156us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.975us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 35.915us - BlockInitTime: 194.617us - BlockLoadTime: 259.921ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 1.67K (1670) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 52.21ms - FirstReadTime: 253.961ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.644us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 268.525us - OutputIndexResultColumnTimer: 120.397us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.67K (1670) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 161.683ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 161.264ms - CloseTime: 103.135us - GetBlockTime: 2.224ms - OpenTime: 85.719us - PrepareTime: 216.37us - SinkTime: 157.822ms - GetBlockCounter: 283 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 96.425ms - WaitBfTime: 1s16ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s279ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 275 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.267us - CompressTime: 0ns - ExecTime: 157.821ms - InputRows: 1.133235M (1133235) - LocalBytesSent: 26.98 MB - LocalSendTime: 2.324ms - LocalSentRows: 1.133235M (1133235) - MemoryUsage: - PeakMemoryUsage: 43.70 MB - MergeBlockTime: 0ns - OpenTime: 91.76us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.133235M (1133235) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 123.947ms - SplitBlockHashComputeTime: 20.300ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.153us - BlocksProduced: 283 - CloseTime: 86.124us - ExecTime: 200.274ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 157.575us - ProcessConjunctTime: 10.452us - ProjectionTime: 0ns - RowsProduced: 1.133235M (1133235) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 261.586ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 197.898ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [137.514ms, 116.168ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [132.919ms, 128.667ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 109.342ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 64.604ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.336us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 147.132ms - ScannerCtxSchedTime: 261.572ms - ScannerFilterTime: 140.521ms - ScannerGetBlockTime: 112.760ms - ScannerInitTime: 58.636us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.684us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.395us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 42.240us - BlockInitTime: 236.486us - BlockLoadTime: 173.412ms - BlocksLoad: 865 - CachedPagesNum: 1.21K (1210) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 64.283ms - FirstReadTime: 170.57ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.380us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 189.287us - OutputIndexResultColumnTimer: 84.227us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.21K (1210) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 312.513ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 311.946ms - CloseTime: 85.603us - GetBlockTime: 8.783ms - OpenTime: 265.698us - PrepareTime: 202.785us - SinkTime: 301.700ms - GetBlockCounter: 365 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 11 - NumScheduleTimes: 13 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 117.520ms - WaitBfTime: 905.244ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 697.385ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 353 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.169us - CompressTime: 0ns - ExecTime: 301.654ms - InputRows: 1.47083M (1470830) - LocalBytesSent: 35.01 MB - LocalSendTime: 2.751ms - LocalSentRows: 1.47083M (1470830) - MemoryUsage: - PeakMemoryUsage: 56.84 MB - MergeBlockTime: 0ns - OpenTime: 69.70us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.47083M (1470830) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 255.241ms - SplitBlockHashComputeTime: 30.27ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.380us - BlocksProduced: 365 - CloseTime: 69.388us - ExecTime: 175.326ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 327.264us - ProcessConjunctTime: 42.250us - ProjectionTime: 0ns - RowsProduced: 1.47083M (1470830) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 292.595ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.264ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [111.523ms, 81.861ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [90.680ms, 201.915ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 93.125ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.873ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.658us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 135.52ms - ScannerCtxSchedTime: 292.577ms - ScannerFilterTime: 97.198ms - ScannerGetBlockTime: 95.793ms - ScannerInitTime: 178.216us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.690us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.320us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 38.3us - BlockInitTime: 228.829us - BlockLoadTime: 95.355ms - BlocksLoad: 863 - CachedPagesNum: 1.208K (1208) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 2.368ms - FirstReadTime: 92.197ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.288us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 192.188us - OutputIndexResultColumnTimer: 85.322us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.208K (1208) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 111.925ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 111.421ms - CloseTime: 78.803us - GetBlockTime: 1.693ms - OpenTime: 237.0us - PrepareTime: 177.824us - SinkTime: 108.612ms - GetBlockCounter: 202 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.500ms - WaitBfTime: 1s191ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s476ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 193 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.159us - CompressTime: 0ns - ExecTime: 108.605ms - InputRows: 801.904K (801904) - LocalBytesSent: 19.12 MB - LocalSendTime: 1.694ms - LocalSentRows: 801.904K (801904) - MemoryUsage: - PeakMemoryUsage: 31.21 MB - MergeBlockTime: 0ns - OpenTime: 62.786us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 801.904K (801904) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 64.328ms - SplitBlockHashComputeTime: 14.572ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.17us - BlocksProduced: 202 - CloseTime: 63.408us - ExecTime: 199.233ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 298.904us - ProcessConjunctTime: 49.724us - ProjectionTime: 0ns - RowsProduced: 801.904K (801904) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 81.453ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 197.254ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [111.779ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [81.453ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.505ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 726.132us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.451us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.917ms - ScannerCtxSchedTime: 81.444ms - ScannerFilterTime: 79.88ms - ScannerGetBlockTime: 32.417ms - ScannerInitTime: 146.134us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 870ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.19us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.265us - BlockInitTime: 51.953us - BlockLoadTime: 31.964ms - BlocksLoad: 558 - CachedPagesNum: 785 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 747.463us - FirstReadTime: 30.123ms - IOTimer: 0ns - InvertedIndexFilterTime: 933ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 124.706us - OutputIndexResultColumnTimer: 55.971us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 785 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 108.829ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 108.503ms - CloseTime: 80.520us - GetBlockTime: 1.23ms - OpenTime: 69.775us - PrepareTime: 164.619us - SinkTime: 106.974ms - GetBlockCounter: 120 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 54.501ms - WaitBfTime: 1s14ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 919.649ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 120 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.117us - CompressTime: 0ns - ExecTime: 107.8ms - InputRows: 465.123K (465123) - LocalBytesSent: 11.09 MB - LocalSendTime: 893.409us - LocalSentRows: 465.123K (465123) - MemoryUsage: - PeakMemoryUsage: 17.92 MB - MergeBlockTime: 0ns - OpenTime: 62.534us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 465.123K (465123) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 80.200ms - SplitBlockHashComputeTime: 8.365ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.1us - BlocksProduced: 120 - CloseTime: 62.719us - ExecTime: 304.933ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 129.29us - ProcessConjunctTime: 15.907us - ProjectionTime: 0ns - RowsProduced: 465.123K (465123) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 134.755ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 303.754ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [151.489ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [134.755ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 55.336ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.405ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.102us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.714ms - ScannerCtxSchedTime: 134.748ms - ScannerFilterTime: 94.687ms - ScannerGetBlockTime: 56.509ms - ScannerInitTime: 27.241us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 827ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.950us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.448us - BlockInitTime: 62.417us - BlockLoadTime: 55.864ms - BlocksLoad: 558 - CachedPagesNum: 785 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 798.180us - FirstReadTime: 53.678ms - IOTimer: 0ns - InvertedIndexFilterTime: 949ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 117.607us - OutputIndexResultColumnTimer: 57.294us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 785 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 211.742ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 211.273ms - CloseTime: 69.457us - GetBlockTime: 89.183ms - OpenTime: 102.691us - PrepareTime: 286.590us - SinkTime: 121.336ms - GetBlockCounter: 175 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 64.313ms - WaitBfTime: 905.493ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 660.657ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 175 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.900us - CompressTime: 0ns - ExecTime: 121.416ms - InputRows: 708.964K (708964) - LocalBytesSent: 16.52 MB - LocalSendTime: 1.417ms - LocalSentRows: 708.964K (708964) - MemoryUsage: - PeakMemoryUsage: 27.21 MB - MergeBlockTime: 0ns - OpenTime: 137.267us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 708.964K (708964) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.602ms - SplitBlockHashComputeTime: 12.755ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.327us - BlocksProduced: 175 - CloseTime: 54.698us - ExecTime: 214.86ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 184.939us - ProcessConjunctTime: 33.449us - ProjectionTime: 0ns - RowsProduced: 708.964K (708964) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 78.667ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 124.721ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [41.700ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [78.667ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 27.510ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.803ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.828us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.426ms - ScannerCtxSchedTime: 78.663ms - ScannerFilterTime: 13.589ms - ScannerGetBlockTime: 28.20ms - ScannerInitTime: 46.662us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 369ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.639us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 9.203us - BlockInitTime: 39.799us - BlockLoadTime: 29.114ms - BlocksLoad: 217 - CachedPagesNum: 289 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 1.485ms - FirstReadTime: 28.24ms - IOTimer: 0ns - InvertedIndexFilterTime: 619ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 71.567us - OutputIndexResultColumnTimer: 28.369us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 289 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 65.363ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 65.19ms - CloseTime: 62.622us - GetBlockTime: 1.203ms - OpenTime: 73.75us - PrepareTime: 199.299us - SinkTime: 63.175ms - GetBlockCounter: 175 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.529ms - WaitBfTime: 1s191ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s102ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 175 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.743us - CompressTime: 0ns - ExecTime: 63.216ms - InputRows: 709.209K (709209) - LocalBytesSent: 16.53 MB - LocalSendTime: 1.237ms - LocalSentRows: 709.209K (709209) - MemoryUsage: - PeakMemoryUsage: 27.29 MB - MergeBlockTime: 0ns - OpenTime: 90.268us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 709.209K (709209) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.18ms - SplitBlockHashComputeTime: 12.794ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.833us - BlocksProduced: 175 - CloseTime: 50.826us - ExecTime: 134.212ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 140.800us - ProcessConjunctTime: 16.27us - ProjectionTime: 0ns - RowsProduced: 709.209K (709209) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 71.693ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.874ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [57.247ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [71.693ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 42.812ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.620ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.380us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.261ms - ScannerCtxSchedTime: 71.689ms - ScannerFilterTime: 13.848ms - ScannerGetBlockTime: 43.275ms - ScannerInitTime: 38.864us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 386ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.490us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 7.49us - BlockInitTime: 31.37us - BlockLoadTime: 44.271ms - BlocksLoad: 217 - CachedPagesNum: 289 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 1.376ms - FirstReadTime: 43.375ms - IOTimer: 0ns - InvertedIndexFilterTime: 441ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 67.59us - OutputIndexResultColumnTimer: 22.977us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 289 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 56.259ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 55.906ms - CloseTime: 81.375us - GetBlockTime: 1.910ms - OpenTime: 87.913us - PrepareTime: 170.878us - SinkTime: 53.192ms - GetBlockCounter: 204 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 54.743ms - WaitBfTime: 1s14ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 858.66ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 196 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.474us - CompressTime: 0ns - ExecTime: 53.200ms - InputRows: 808.175K (808175) - LocalBytesSent: 19.25 MB - LocalSendTime: 1.384ms - LocalSentRows: 808.175K (808175) - MemoryUsage: - PeakMemoryUsage: 31.21 MB - MergeBlockTime: 0ns - OpenTime: 61.292us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 808.175K (808175) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 32.540ms - SplitBlockHashComputeTime: 12.201ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.22us - BlocksProduced: 204 - CloseTime: 68.97us - ExecTime: 195.739ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 132.407us - ProcessConjunctTime: 11.680us - ProjectionTime: 0ns - RowsProduced: 808.175K (808175) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 271.921ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 193.689ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [94.298ms, 59.646ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [137.270ms, 134.650ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 56.170ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.664ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.6us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 151.973ms - ScannerCtxSchedTime: 271.897ms - ScannerFilterTime: 95.498ms - ScannerGetBlockTime: 57.991ms - ScannerInitTime: 36.124us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.818us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.936us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 16.51us - BlockInitTime: 124.474us - BlockLoadTime: 57.328ms - BlocksLoad: 838 - CachedPagesNum: 1.183K (1183) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 1.596ms - FirstReadTime: 54.119ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.452us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 180.877us - OutputIndexResultColumnTimer: 89.8us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.183K (1183) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 163.716ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 163.346ms - CloseTime: 99.512us - GetBlockTime: 2.525ms - OpenTime: 78.144us - PrepareTime: 181.668us - SinkTime: 124.685ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.714ms - WaitBfTime: 1s103ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s500ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 276 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.73us - CompressTime: 0ns - ExecTime: 124.679ms - InputRows: 1.144152M (1144152) - LocalBytesSent: 27.25 MB - LocalSendTime: 2.264ms - LocalSentRows: 1.144152M (1144152) - MemoryUsage: - PeakMemoryUsage: 44.37 MB - MergeBlockTime: 0ns - OpenTime: 77.45us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.144152M (1144152) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.335ms - SplitBlockHashComputeTime: 17.459ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.650us - BlocksProduced: 286 - CloseTime: 78.440us - ExecTime: 196.359ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 131.627us - ProcessConjunctTime: 17.271us - ProjectionTime: 0ns - RowsProduced: 1.144152M (1144152) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 237.819ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 193.718ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [113.429ms, 65.180ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [115.891ms, 121.928ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 74.524ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.441ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.237us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 163.405ms - ScannerCtxSchedTime: 237.791ms - ScannerFilterTime: 101.701ms - ScannerGetBlockTime: 76.430ms - ScannerInitTime: 34.694us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.797us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.959us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 24.461us - BlockInitTime: 152.610us - BlockLoadTime: 62.356ms - BlocksLoad: 838 - CachedPagesNum: 1.183K (1183) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 1.271ms - FirstReadTime: 58.812ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.204us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 205.739us - OutputIndexResultColumnTimer: 128.675us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.183K (1183) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 367.492ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 366.881ms - CloseTime: 127.70us - GetBlockTime: 4.305ms - OpenTime: 297.23us - PrepareTime: 176.914us - SinkTime: 354.553ms - GetBlockCounter: 656 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 14 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 233.670ms - WaitBfTime: 838.918ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 770.728ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 628 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.613us - CompressTime: 0ns - ExecTime: 354.414ms - InputRows: 2.635484M (2635484) - LocalBytesSent: 62.81 MB - LocalSendTime: 9.713ms - LocalSentRows: 2.635484M (2635484) - MemoryUsage: - PeakMemoryUsage: 101.41 MB - MergeBlockTime: 0ns - OpenTime: 54.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.635484M (2635484) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 255.284ms - SplitBlockHashComputeTime: 40.881ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.676us - BlocksProduced: 656 - CloseTime: 112.397us - ExecTime: 141.950ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 355.302us - ProcessConjunctTime: 64.12us - ProjectionTime: 0ns - RowsProduced: 2.635484M (2635484) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 375.691ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.368ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [57.305ms, 151.744ms, 46.234ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [187.420ms, 95.641ms, 92.629ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 175.487ms - MemoryUsage: - FreeBlocks: 29.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.17ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.744us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 160.660ms - ScannerCtxSchedTime: 375.664ms - ScannerFilterTime: 67.198ms - ScannerGetBlockTime: 187.530ms - ScannerInitTime: 186.619us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 3.662us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.514us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 60.75us - BlockInitTime: 265.14us - BlockLoadTime: 186.566ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 1.727K (1727) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 11.299ms - FirstReadTime: 182.322ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.496us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 287.286us - OutputIndexResultColumnTimer: 109.592us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.727K (1727) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 265.236ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 264.738ms - CloseTime: 119.782us - GetBlockTime: 3.632ms - OpenTime: 177.119us - PrepareTime: 191.999us - SinkTime: 259.593ms - GetBlockCounter: 473 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 13 - NumScheduleTimes: 15 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 157.640ms - WaitBfTime: 835.261ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s206ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 455 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.143us - CompressTime: 0ns - ExecTime: 259.525ms - InputRows: 1.887188M (1887188) - LocalBytesSent: 44.98 MB - LocalSendTime: 3.348ms - LocalSentRows: 1.887188M (1887188) - MemoryUsage: - PeakMemoryUsage: 72.71 MB - MergeBlockTime: 0ns - OpenTime: 75.662us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.887188M (1887188) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 165.945ms - SplitBlockHashComputeTime: 67.482ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 71.129ms - WaitForLocalExchangeBuffer1: 511.124ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 69.967ms - WaitForLocalExchangeBuffer8: 25.914ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 40, type = minmax), RuntimeFilter: (id = 41, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.386us - BlocksProduced: 473 - CloseTime: 105.613us - ExecTime: 169.927ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 251.782us - ProcessConjunctTime: 33.291us - ProjectionTime: 0ns - RowsProduced: 1.887188M (1887188) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 352.75ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.84ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 29.632K (29632) - expr_input_rows: 4.864136M (4864136) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 25.400804M (25400804) - expr_input_rows: 26.533047M (26533047) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [94.560ms, 72.623ms, 82.747ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [152.494ms, 102.128ms, 97.453ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 103.371ms - MemoryUsage: - FreeBlocks: 30.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.48ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.663us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 200.528ms - ScannerCtxSchedTime: 352.51ms - ScannerFilterTime: 140.359ms - ScannerGetBlockTime: 108.963ms - ScannerInitTime: 117.163us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 4.340us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 20.810us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 70.666us - BlockInitTime: 386.732us - BlockLoadTime: 107.478ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 1.712K (1712) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 4.98ms - FirstReadTime: 102.688ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.976us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 290.157us - OutputIndexResultColumnTimer: 132.828us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.712K (1712) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 108: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 925.835us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 409.484us - CloseTime: 145.492us - GetBlockTime: 90.805us - OpenTime: 171.158us - PrepareTime: 190.305us - SinkTime: 90.557us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 752.833us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 725.186ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.46us - CompressTime: 0ns - ExecTime: 178.700us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.576us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 667ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22328] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 717ns - BlocksProduced: 0 - CloseTime: 127.801us - ExecTime: 516.527ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 232.317us - ProcessConjunctTime: 56.277us - ProjectionTime: 7.8us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 18.456922M (18456922) - filter id = -1 input: 37.668144M (37668144) - ScannerWorkerWaitTime: 547.257ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 516.69ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [11.101us, 4.464us, 6.183us, 7.396us, ] - PerScannerRowsRead: [0, 0, 0, 0, ] - PerScannerWaitTime: [136.077ms, 136.215ms, 137.055ms, 137.909ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 815.40ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 338ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 325.296ms - ScannerCtxSchedTime: 547.252ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 6.437us - ScannerInitTime: 77.923us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 14639768, filtered = 7210254] - BitmapIndexFilterTimer: 11.314us - BlockConditionsFilteredBloomFilterTime: 6.56us - BlockConditionsFilteredDictTime: 26.142us - BlockConditionsFilteredTime: 457.460us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 305.425us - BlockInitSeekCount: 32 - BlockInitSeekTime: 32.108us - BlockInitTime: 832.711us - BlockLoadTime: 812.659ms - BlocksLoad: 1.809K (1809) - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 443.291ms - FirstReadSeekCount: 1.805K (1805) - FirstReadSeekTime: 446.315us - FirstReadTime: 15.76ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.971us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 218.29ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 40.648ms - OutputIndexResultColumnTimer: 188.398us - RawRowsRead: 7.319884M (7319884) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 3.605127M (3605127) - RowsShortCircuitPredInput: 7.319884M (7319884) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 219.951ms - ShortPredEvalTime: 83.354ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 932.754us PipelineXTask (index=1):(Active: 847.894us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 301.909us - CloseTime: 92.444us - GetBlockTime: 58.678us - OpenTime: 153.651us - PrepareTime: 291.395us - SinkTime: 58.251us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 746.35us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.903ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.19us - CompressTime: 0ns - ExecTime: 236.511us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.792us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 169.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 531ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22330] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 686ns - BlocksProduced: 0 - CloseTime: 82.407us - ExecTime: 228.549ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 228.121us - ProcessConjunctTime: 45.188us - ProjectionTime: 5.472us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 18.640402M (18640402) - filter id = -1 input: 37.6791M (37679100) - ScannerWorkerWaitTime: 567.979ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 228.175ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [4.026us, 6.228us, 4.497us, 3.987us, ] - PerScannerRowsRead: [0, 0, 0, 0, ] - PerScannerWaitTime: [139.342ms, 141.573ms, 143.386ms, 143.677ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 391.706ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 275ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 289.906ms - ScannerCtxSchedTime: 567.971ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.565us - ScannerInitTime: 73.456us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 14645246, filtered = 7219996] - BitmapIndexFilterTimer: 14.996us - BlockConditionsFilteredBloomFilterTime: 4.832us - BlockConditionsFilteredDictTime: 26.551us - BlockConditionsFilteredTime: 434.544us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 281.270us - BlockInitSeekCount: 40 - BlockInitSeekTime: 33.104us - BlockInitTime: 825.484us - BlockLoadTime: 390.639ms - BlocksLoad: 1.809K (1809) - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 218.360ms - FirstReadSeekCount: 1.805K (1805) - FirstReadSeekTime: 419.598us - FirstReadTime: 13.770ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.912us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 25.911ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 35.899ms - OutputIndexResultColumnTimer: 156.536us - RawRowsRead: 7.322623M (7322623) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 3.609998M (3609998) - RowsShortCircuitPredInput: 7.322623M (7322623) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 27.606ms - ShortPredEvalTime: 86.129ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 786.30us PipelineXTask (index=2):(Active: 140.971ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 140.597ms - CloseTime: 73.183us - GetBlockTime: 1.273ms - OpenTime: 122.742us - PrepareTime: 170.134us - SinkTime: 138.458ms - GetBlockCounter: 228 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s72ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 192 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.631us - CompressTime: 0ns - ExecTime: 138.477ms - InputRows: 785.04K (785040) - LocalBytesSent: 18.72 MB - LocalSendTime: 1.735ms - LocalSentRows: 785.04K (785040) - MemoryUsage: - PeakMemoryUsage: 30.88 MB - MergeBlockTime: 0ns - OpenTime: 76.885us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785.04K (785040) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 48.896ms - SplitBlockHashComputeTime: 61.565ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22324] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 480ns - BlocksProduced: 228 - CloseTime: 52.166us - ExecTime: 485.903ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 187.180us - ProcessConjunctTime: 50.815us - ProjectionTime: 6.75ms - RowsProduced: 785.04K (785040) - RowsRead: 785.04K (785040) - RuntimeFilterInfo: - filter id = -1 filtered: 2.121624M (2121624) - filter id = -1 input: 3.691704M (3691704) - ScannerWorkerWaitTime: 339.539ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 478.334ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=12, opposite=false - PerScannerRunningTime: [124.030ms, ] - PerScannerRowsRead: [785.04K, ] - PerScannerWaitTime: [339.539ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 122.678ms - MemoryUsage: - FreeBlocks: 6.88 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.463ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.271us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 99.370ms - ScannerCtxSchedTime: 339.532ms - ScannerFilterTime: 282.127us - ScannerGetBlockTime: 123.566ms - ScannerInitTime: 54.288us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3691704, filtered = 2121624] - BitmapIndexFilterTimer: 757ns - BlockConditionsFilteredBloomFilterTime: 773ns - BlockConditionsFilteredDictTime: 3.693us - BlockConditionsFilteredTime: 39.861us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 27.418us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.972us - BlockInitTime: 80.722us - BlockLoadTime: 123.871ms - BlocksLoad: 456 - CachedPagesNum: 734 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 52.509ms - FirstReadSeekCount: 455 - FirstReadSeekTime: 134.839us - FirstReadTime: 3.421ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.597us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 45.415ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 8.47ms - OutputIndexResultColumnTimer: 50.309us - RawRowsRead: 1.845852M (1845852) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.060812M (1060812) - RowsShortCircuitPredInput: 1.845852M (1845852) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 7.45ms - ShortPredEvalTime: 10.879ms - TotalPagesNum: 734 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 206.904us PipelineXTask (index=3):(Active: 222.92ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 221.655ms - CloseTime: 75.873us - GetBlockTime: 1.262ms - OpenTime: 107.777us - PrepareTime: 244.790us - SinkTime: 219.637ms - GetBlockCounter: 228 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.343ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 854.255ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 192 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.165us - CompressTime: 0ns - ExecTime: 219.650ms - InputRows: 784.963K (784963) - LocalBytesSent: 18.72 MB - LocalSendTime: 1.711ms - LocalSentRows: 784.963K (784963) - MemoryUsage: - PeakMemoryUsage: 31.04 MB - MergeBlockTime: 0ns - OpenTime: 63.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 784.963K (784963) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 129.502ms - SplitBlockHashComputeTime: 60.695ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22326] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 460ns - BlocksProduced: 228 - CloseTime: 52.716us - ExecTime: 644.150ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 178.722us - ProcessConjunctTime: 38.835us - ProjectionTime: 7.145ms - RowsProduced: 784.963K (784963) - RowsRead: 784.963K (784963) - RuntimeFilterInfo: - filter id = -1 filtered: 2.129966M (2129966) - filter id = -1 input: 3.699892M (3699892) - ScannerWorkerWaitTime: 339.306ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 635.526ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=12, opposite=false - PerScannerRunningTime: [277.344ms, ] - PerScannerRowsRead: [784.96K, ] - PerScannerWaitTime: [339.306ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 276.40ms - MemoryUsage: - FreeBlocks: 6.88 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.836ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.795us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.68ms - ScannerCtxSchedTime: 339.300ms - ScannerFilterTime: 259.170us - ScannerGetBlockTime: 276.881ms - ScannerInitTime: 51.70us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3699892, filtered = 2129966] - BitmapIndexFilterTimer: 753ns - BlockConditionsFilteredBloomFilterTime: 809ns - BlockConditionsFilteredDictTime: 10.700us - BlockConditionsFilteredTime: 50.612us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 29.944us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.294us - BlockInitTime: 95.26us - BlockLoadTime: 277.572ms - BlocksLoad: 457 - CachedPagesNum: 736 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 99.594ms - FirstReadSeekCount: 456 - FirstReadSeekTime: 133.773us - FirstReadTime: 18.593ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.521us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 58.224ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 8.295ms - OutputIndexResultColumnTimer: 43.682us - RawRowsRead: 1.849946M (1849946) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.064983M (1064983) - RowsShortCircuitPredInput: 1.849946M (1849946) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 6.771ms - ShortPredEvalTime: 89.271ms - TotalPagesNum: 736 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 207.16us PipelineXTask (index=4):(Active: 774.362us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 349.534us - CloseTime: 69.921us - GetBlockTime: 56.276us - OpenTime: 168.97us - PrepareTime: 180.991us - SinkTime: 90.595us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 695.146us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.671ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.606us - CompressTime: 0ns - ExecTime: 184.855us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.856us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 83.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 413ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22332] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 573ns - BlocksProduced: 0 - CloseTime: 56.215us - ExecTime: 195.16ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 229.200us - ProcessConjunctTime: 57.313us - ProjectionTime: 2.986us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 2.918496M (2918496) - filter id = -1 input: 7.64M (7640000) - ScannerWorkerWaitTime: 628.835us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.672ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [4.099us, 4.449us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [268.662us, 360.173us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 60.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 301.677ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 175ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 153.839ms - ScannerCtxSchedTime: 623.448us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.530us - ScannerInitTime: 73.931us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 5917152, filtered = 2274042] - BitmapIndexFilterTimer: 5.13us - BlockConditionsFilteredBloomFilterTime: 3.666us - BlockConditionsFilteredDictTime: 30.776us - BlockConditionsFilteredTime: 189.437us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 105.900us - BlockInitSeekCount: 14 - BlockInitSeekTime: 29.800us - BlockInitTime: 485.94us - BlockLoadTime: 300.917ms - BlocksLoad: 731 - CachedPagesNum: 548 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 187.479ms - FirstReadSeekCount: 729 - FirstReadSeekTime: 233.495us - FirstReadTime: 6.236ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.259us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.79ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 30.966ms - OutputIndexResultColumnTimer: 76.916us - RawRowsRead: 2.958576M (2958576) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.137021M (1137021) - RowsShortCircuitPredInput: 2.958576M (2958576) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 12.855ms - ShortPredEvalTime: 32.175ms - TotalPagesNum: 548 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 406.696us PipelineXTask (index=5):(Active: 46.918ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.446ms - CloseTime: 79.659us - GetBlockTime: 78.345us - OpenTime: 23.228ms - PrepareTime: 158.310us - SinkTime: 114.454us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 780.826us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.845ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.279us - CompressTime: 0ns - ExecTime: 186.911us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 47.509us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.65us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 613ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=116. table name = ODS_AI_CALLING_RECORD): - RuntimeFilters: : - PushDownPredicates: [{RESULT_STATUS IN [ANSWERED, 已接听]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22334] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 460ns - BlocksProduced: 0 - CloseTime: 63.525us - ExecTime: 255.688ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 23.289ms - ProcessConjunctTime: 33.783us - ProjectionTime: 3.189us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 2.929154M (2929154) - filter id = -1 input: 7.649208M (7649208) - ScannerWorkerWaitTime: 218.960ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 232.254ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [5.095us, 5.764us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [858.090us, 218.102ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 293.121ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 222ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 186.153ms - ScannerCtxSchedTime: 218.958ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.225us - ScannerInitTime: 106.353us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 5921756, filtered = 2280314] - BitmapIndexFilterTimer: 3.800us - BlockConditionsFilteredBloomFilterTime: 2.684us - BlockConditionsFilteredDictTime: 13.441us - BlockConditionsFilteredTime: 159.212us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 107.318us - BlockInitSeekCount: 16 - BlockInitSeekTime: 21.914us - BlockInitTime: 330.392us - BlockLoadTime: 292.462ms - BlocksLoad: 732 - CachedPagesNum: 548 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 163.427ms - FirstReadSeekCount: 730 - FirstReadSeekTime: 262.842us - FirstReadTime: 7.66ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.797us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 64.482ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 25.931ms - OutputIndexResultColumnTimer: 90.797us - RawRowsRead: 2.960878M (2960878) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.140157M (1140157) - RowsShortCircuitPredInput: 2.960878M (2960878) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 65.405ms - ShortPredEvalTime: 25.868ms - TotalPagesNum: 548 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 445.918us Fragment 109: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 32.228ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.50ms - CloseTime: 596.12us - GetBlockTime: 27.139ms - OpenTime: 289.666us - PrepareTime: 282.75us - SinkTime: 3.465ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.518ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.481us - CompressTime: 0ns - ExecTime: 3.552ms - InputRows: 30.907K (30907) - LocalBytesSent: 1.27 MB - LocalSendTime: 110.64us - LocalSentRows: 30.907K (30907) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 76.273us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.907K (30907) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.466ms - SplitBlockHashComputeTime: 495.42us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 24.957ms - CloseTime: 433.202us - DeserializeAndMergeTime: 0ns - ExecTime: 27.243ms - ExprTime: 28.489us - GetResultsTime: 1.764ms - HashTableComputeTime: 24.648ms - HashTableEmplaceTime: 23.38ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 204.491us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 716.449us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 21.625us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 617.301us - SerializeKeyTime: 0ns - SerializeResultTime: 1.786ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 861ns - BlocksProduced: 19 - CloseTime: 144.101us - ExecTime: 309.458ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 384.951us - ProcessConjunctTime: 71.652us - ProjectionTime: 3.404ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 490.63ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 305.185ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [11.300us, 5.097us, 4.083us, 183.193ms, ] - PerScannerRowsRead: [0, 0, 0, 68.65K, ] - PerScannerWaitTime: [121.763ms, 122.054ms, 123.017ms, 123.227ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 182.770ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 210.711ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.450us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.612ms - ScannerCtxSchedTime: 490.52ms - ScannerFilterTime: 15.519us - ScannerGetBlockTime: 183.154ms - ScannerInitTime: 186.762us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 970ns - BlockConditionsFilteredBloomFilterTime: 181ns - BlockConditionsFilteredDictTime: 105ns - BlockConditionsFilteredTime: 7.471us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 177ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 41.643us - BlockInitTime: 158.66us - BlockLoadTime: 393.219ms - BlocksLoad: 262 - CachedPagesNum: 220 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 365.96ms - FirstReadSeekCount: 453 - FirstReadSeekTime: 134.405us - FirstReadTime: 7.117ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.426us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 18.516ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 459.912us - OutputIndexResultColumnTimer: 15.910us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 17.972ms - ShortPredEvalTime: 575.602us - TotalPagesNum: 220 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.832us PipelineXTask (index=1):(Active: 39.780ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 38.780ms - CloseTime: 567.250us - GetBlockTime: 35.174ms - OpenTime: 185.576us - PrepareTime: 238.432us - SinkTime: 3.284ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.178ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 39.373ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.920us - CompressTime: 0ns - ExecTime: 3.384ms - InputRows: 30.552K (30552) - LocalBytesSent: 1.25 MB - LocalSendTime: 118.22us - LocalSentRows: 30.552K (30552) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 88.540us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.552K (30552) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.273ms - SplitBlockHashComputeTime: 537.253us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 33.192ms - CloseTime: 401.594us - DeserializeAndMergeTime: 0ns - ExecTime: 35.296ms - ExprTime: 35.406us - GetResultsTime: 1.614ms - HashTableComputeTime: 32.877ms - HashTableEmplaceTime: 31.224ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 180.921us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 659.521us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 23.504us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 572.220us - SerializeKeyTime: 0ns - SerializeResultTime: 1.633ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 765ns - BlocksProduced: 19 - CloseTime: 146.628us - ExecTime: 230.748ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 244.888us - ProcessConjunctTime: 37.318us - ProjectionTime: 3.298ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 503.695ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 226.765ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.452us, 4.569us, 7.706us, 52.817ms, ] - PerScannerRowsRead: [0, 0, 0, 67.72K, ] - PerScannerWaitTime: [125.284ms, 125.790ms, 125.826ms, 126.794ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 52.423ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 106.736ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.142us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 60.737ms - ScannerCtxSchedTime: 503.691ms - ScannerFilterTime: 15.910us - ScannerGetBlockTime: 52.789ms - ScannerInitTime: 122.506us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 967ns - BlockConditionsFilteredBloomFilterTime: 350ns - BlockConditionsFilteredDictTime: 202ns - BlockConditionsFilteredTime: 12.107us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 336ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 46.145us - BlockInitTime: 173.544us - BlockLoadTime: 146.556ms - BlocksLoad: 282 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 134.205ms - FirstReadSeekCount: 493 - FirstReadSeekTime: 162.498us - FirstReadTime: 7.868ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.648us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.164ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 449.674us - OutputIndexResultColumnTimer: 16.230us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.637ms - ShortPredEvalTime: 289.484us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 23.583us PipelineXTask (index=2):(Active: 101.825ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 100.578ms - CloseTime: 584.577us - GetBlockTime: 95.917ms - OpenTime: 275.94us - PrepareTime: 378.84us - SinkTime: 4.216ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.524ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.350us - CompressTime: 0ns - ExecTime: 4.334ms - InputRows: 30.201K (30201) - LocalBytesSent: 1.24 MB - LocalSendTime: 122.838us - LocalSentRows: 30.201K (30201) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 108.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.201K (30201) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.183ms - SplitBlockHashComputeTime: 501.320us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 38.672ms - CloseTime: 413.442us - DeserializeAndMergeTime: 0ns - ExecTime: 41.17ms - ExprTime: 50.592us - GetResultsTime: 1.717ms - HashTableComputeTime: 38.217ms - HashTableEmplaceTime: 35.654ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 193.204us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 672.521us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 123.560us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 497.971us - SerializeKeyTime: 0ns - SerializeResultTime: 1.738ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 613ns - BlocksProduced: 19 - CloseTime: 149.556us - ExecTime: 154.215ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 336.544us - ProcessConjunctTime: 52.884us - ProjectionTime: 5.245ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 72.771ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.78ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [9.042us, 5.857us, 7.273us, 36.887ms, ] - PerScannerRowsRead: [0, 0, 0, 66.76K, ] - PerScannerWaitTime: [17.234ms, 18.316ms, 18.599ms, 18.622ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 36.332ms - MemoryUsage: - FreeBlocks: 2.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 191.200ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.645us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 108.987ms - ScannerCtxSchedTime: 72.764ms - ScannerFilterTime: 24.301us - ScannerGetBlockTime: 36.847ms - ScannerInitTime: 183.78us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.454us - BlockConditionsFilteredBloomFilterTime: 774ns - BlockConditionsFilteredDictTime: 600ns - BlockConditionsFilteredTime: 13.619us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 579ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 56.302us - BlockInitTime: 220.52us - BlockLoadTime: 227.92ms - BlocksLoad: 288 - CachedPagesNum: 241 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 136.64ms - FirstReadSeekCount: 502 - FirstReadSeekTime: 213.0us - FirstReadTime: 54.917ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.228us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.891ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.147ms - OutputIndexResultColumnTimer: 30.983us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.826ms - ShortPredEvalTime: 1.886ms - TotalPagesNum: 241 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 58.671us PipelineXTask (index=3):(Active: 74.256ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 73.114ms - CloseTime: 606.477us - GetBlockTime: 67.777ms - OpenTime: 273.246us - PrepareTime: 253.894us - SinkTime: 4.906ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.595ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.374ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.901us - CompressTime: 0ns - ExecTime: 4.979ms - InputRows: 30.3K (30300) - LocalBytesSent: 1.24 MB - LocalSendTime: 120.715us - LocalSentRows: 30.3K (30300) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 67.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.3K (30300) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.767ms - SplitBlockHashComputeTime: 524.469us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 31.965ms - CloseTime: 436.374us - DeserializeAndMergeTime: 0ns - ExecTime: 67.895ms - ExprTime: 41.312us - GetResultsTime: 35.381ms - HashTableComputeTime: 31.561ms - HashTableEmplaceTime: 29.261ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 178.725us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 33.724ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 24.675us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 504.197us - SerializeKeyTime: 0ns - SerializeResultTime: 35.400ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 504ns - BlocksProduced: 19 - CloseTime: 151.487us - ExecTime: 91.374ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 340.927us - ProcessConjunctTime: 51.628us - ProjectionTime: 5.277ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 101.240ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 85.282ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [16.656us, 4.748us, 17.006us, 38.222ms, ] - PerScannerRowsRead: [0, 0, 0, 68.07K, ] - PerScannerWaitTime: [21.000ms, 25.223ms, 27.010ms, 28.005ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 37.702ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 211.946ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.431us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 85.937ms - ScannerCtxSchedTime: 101.231ms - ScannerFilterTime: 21.357us - ScannerGetBlockTime: 38.187ms - ScannerInitTime: 190.446us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.150us - BlockConditionsFilteredBloomFilterTime: 780ns - BlockConditionsFilteredDictTime: 616ns - BlockConditionsFilteredTime: 14.653us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 733ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 45.800ms - BlockInitTime: 45.983ms - BlockLoadTime: 249.134ms - BlocksLoad: 259 - CachedPagesNum: 219 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 109.936ms - FirstReadSeekCount: 429 - FirstReadSeekTime: 215.714us - FirstReadTime: 9.24ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.884us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 79.343ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 1.71ms - OutputIndexResultColumnTimer: 26.720us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 78.738ms - ShortPredEvalTime: 1.244ms - TotalPagesNum: 219 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 57.690us PipelineXTask (index=4):(Active: 1.196ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 506.982us - CloseTime: 126.520us - GetBlockTime: 91.440us - OpenTime: 288.976us - PrepareTime: 265.86us - SinkTime: 89.260us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.57ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.941ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.111us - CompressTime: 0ns - ExecTime: 168.972us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 47.466us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.657us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 491ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.359us - DeserializeAndMergeTime: 0ns - ExecTime: 47.549us - ExprTime: 0ns - GetResultsTime: 8.417us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 145ns - HashTableSize: 0 - InsertKeysToColumnTime: 929ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.378us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.418us - SerializeKeyTime: 0ns - SerializeResultTime: 12.744us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 645ns - BlocksProduced: 0 - CloseTime: 113.32us - ExecTime: 93.213ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 370.635us - ProcessConjunctTime: 69.963us - ProjectionTime: 9.237us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.217ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 92.653ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [13.647us, 28.331us, 13.531us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [4.502ms, 5.057ms, 6.656ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 203.298ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 129ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 111.285ms - ScannerCtxSchedTime: 16.207ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.70us - ScannerInitTime: 148.460us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.672us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.115us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 51.291us - BlockInitTime: 197.677us - BlockLoadTime: 202.451ms - BlocksLoad: 240 - CachedPagesNum: 183 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 178.430ms - FirstReadSeekCount: 474 - FirstReadSeekTime: 343.892us - FirstReadTime: 20.288ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.183us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 122.465us - OutputIndexResultColumnTimer: 44.360us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 183 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.148ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 483.873us - CloseTime: 170.16us - GetBlockTime: 126.13us - OpenTime: 233.68us - PrepareTime: 253.649us - SinkTime: 80.568us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 965.368us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.117ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.727us - CompressTime: 0ns - ExecTime: 163.912us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 42.841us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.118us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 530ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.924us - DeserializeAndMergeTime: 0ns - ExecTime: 45.667us - ExprTime: 0ns - GetResultsTime: 8.407us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 149ns - HashTableSize: 0 - InsertKeysToColumnTime: 704ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.144us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.578us - SerializeKeyTime: 0ns - SerializeResultTime: 12.732us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 716ns - BlocksProduced: 0 - CloseTime: 140.888us - ExecTime: 137.726ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 313.527us - ProcessConjunctTime: 54.728us - ProjectionTime: 6.865us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 25.451ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.167ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [12.503us, 7.485us, 6.649us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [8.488ms, 8.480ms, 8.482ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 290.77ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 263ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 110.968ms - ScannerCtxSchedTime: 25.442ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.975us - ScannerInitTime: 115.263us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.472us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.27us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 57.738us - BlockInitTime: 231.977us - BlockLoadTime: 289.263ms - BlocksLoad: 264 - CachedPagesNum: 203 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 156.306ms - FirstReadSeekCount: 522 - FirstReadSeekTime: 274.985us - FirstReadTime: 122.627ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.800us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 165.563us - OutputIndexResultColumnTimer: 43.294us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 203 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.201ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 498.784us - CloseTime: 111.614us - GetBlockTime: 96.827us - OpenTime: 233.575us - PrepareTime: 329.889us - SinkTime: 112.368us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.59ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.707ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.193us - CompressTime: 0ns - ExecTime: 199.664us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 58.502us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.120us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 414ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.709us - DeserializeAndMergeTime: 0ns - ExecTime: 114.402us - ExprTime: 0ns - GetResultsTime: 8.124us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 111ns - HashTableSize: 0 - InsertKeysToColumnTime: 713ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 94.682us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.823us - SerializeKeyTime: 0ns - SerializeResultTime: 14.916us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 576ns - BlocksProduced: 0 - CloseTime: 95.28us - ExecTime: 120.402ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 323.712us - ProcessConjunctTime: 58.770us - ProjectionTime: 7.71us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 58.136ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.902ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.443us, 9.671us, 7.617us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [19.078ms, 19.496ms, 19.561ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 309.987ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 233ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 118.286ms - ScannerCtxSchedTime: 58.126ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 6.8us - ScannerInitTime: 138.488us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.548us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.399us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 40.470us - BlockInitTime: 175.775us - BlockLoadTime: 309.231ms - BlocksLoad: 255 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 169.248ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 292.783us - FirstReadTime: 135.696ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.259us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 146.255us - OutputIndexResultColumnTimer: 52.949us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.184ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 524.757us - CloseTime: 141.607us - GetBlockTime: 98.353us - OpenTime: 227.10us - PrepareTime: 272.358us - SinkTime: 134.986us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.15ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.295ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.579us - CompressTime: 0ns - ExecTime: 213.46us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 76.203us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.873us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 506ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.488us - DeserializeAndMergeTime: 0ns - ExecTime: 40.552us - ExprTime: 0ns - GetResultsTime: 10.832us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 68ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.550us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.487us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.145us - SerializeKeyTime: 0ns - SerializeResultTime: 14.952us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 680ns - BlocksProduced: 0 - CloseTime: 124.887us - ExecTime: 57.119ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 294.84us - ProcessConjunctTime: 48.237us - ProjectionTime: 7.158us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 27.774ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 56.622ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [16.595us, 14.392us, 13.090us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [9.270ms, 9.254ms, 9.249ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 124.662ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 526ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 81.601ms - ScannerCtxSchedTime: 27.765ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 6.564us - ScannerInitTime: 95.730us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.143us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.328us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 46.206us - BlockInitTime: 176.253us - BlockLoadTime: 123.942ms - BlocksLoad: 259 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 78.920ms - FirstReadSeekCount: 512 - FirstReadSeekTime: 235.679us - FirstReadTime: 42.524ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.643us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 91.887us - OutputIndexResultColumnTimer: 24.358us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 198 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.276ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 545.598us - CloseTime: 100.769us - GetBlockTime: 87.391us - OpenTime: 318.189us - PrepareTime: 303.845us - SinkTime: 96.163us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.163ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.957ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.942us - CompressTime: 0ns - ExecTime: 216.252us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 56.89us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 110.616us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 508ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.500us - DeserializeAndMergeTime: 0ns - ExecTime: 42.59us - ExprTime: 0ns - GetResultsTime: 9.65us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 107ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.126us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.286us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.244us - SerializeKeyTime: 0ns - SerializeResultTime: 13.748us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 869ns - BlocksProduced: 0 - CloseTime: 86.516us - ExecTime: 88.726ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 374.271us - ProcessConjunctTime: 89.469us - ProjectionTime: 8.393us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 37.149ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 88.193ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [17.588us, 16.391us, 18.234us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [11.935ms, 12.395ms, 12.818ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 163.273ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 213ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 93.238ms - ScannerCtxSchedTime: 37.142ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 13.423us - ScannerInitTime: 161.485us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.296us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.905us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 46.401us - BlockInitTime: 178.787us - BlockLoadTime: 162.683ms - BlocksLoad: 267 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.79ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 231.333us - FirstReadTime: 63.704ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.697us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 100.422us - OutputIndexResultColumnTimer: 27.558us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 1.139ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 516.903us - CloseTime: 145.371us - GetBlockTime: 118.365us - OpenTime: 246.764us - PrepareTime: 223.537us - SinkTime: 122.633us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 985.492us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.252ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.240us - CompressTime: 0ns - ExecTime: 206.47us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 65.946us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 68.684us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 518ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.627us - DeserializeAndMergeTime: 0ns - ExecTime: 63.439us - ExprTime: 0ns - GetResultsTime: 13.240us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 165ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.906us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 37.715us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.87us - SerializeKeyTime: 0ns - SerializeResultTime: 20.458us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 460ns - BlocksProduced: 0 - CloseTime: 124.708us - ExecTime: 112.123ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 288.671us - ProcessConjunctTime: 54.895us - ProjectionTime: 5.310us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 32.446ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.612ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.350us, 5.054us, 6.690us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [10.064ms, 10.437ms, 11.943ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 328.688ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 233ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 111.152ms - ScannerCtxSchedTime: 32.429ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.910us - ScannerInitTime: 118.243us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.563us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.476us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 47.136us - BlockInitTime: 228.429us - BlockLoadTime: 327.892ms - BlocksLoad: 269 - CachedPagesNum: 206 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 297.432ms - FirstReadSeekCount: 532 - FirstReadSeekTime: 277.442us - FirstReadTime: 26.345ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.245us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 128.746us - OutputIndexResultColumnTimer: 42.916us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 206 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 1.63ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 405.954us - CloseTime: 113.565us - GetBlockTime: 63.547us - OpenTime: 236.110us - PrepareTime: 297.969us - SinkTime: 74.900us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 939.278us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.499ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.750us - CompressTime: 0ns - ExecTime: 143.870us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.645us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.40us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.186us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.466us - DeserializeAndMergeTime: 0ns - ExecTime: 119.216us - ExprTime: 0ns - GetResultsTime: 9.328us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 140ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.445us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 101.475us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.744us - SerializeKeyTime: 0ns - SerializeResultTime: 13.317us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 790ns - BlocksProduced: 0 - CloseTime: 99.6us - ExecTime: 125.1ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 299.144us - ProcessConjunctTime: 76.142us - ProjectionTime: 5.191us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 162.0ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 124.552ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.013us, 8.890us, 5.110us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [53.469ms, 54.148ms, 54.382ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 218.186ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 180ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 81.229ms - ScannerCtxSchedTime: 161.995ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.169us - ScannerInitTime: 121.84us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.61us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.366us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 33.223us - BlockInitTime: 152.803us - BlockLoadTime: 217.651ms - BlocksLoad: 274 - CachedPagesNum: 213 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 183.692ms - FirstReadSeekCount: 542 - FirstReadSeekTime: 252.785us - FirstReadTime: 30.973ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.847us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 101.67us - OutputIndexResultColumnTimer: 29.862us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 213 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 125.331ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 124.214ms - CloseTime: 592.583us - GetBlockTime: 119.618ms - OpenTime: 266.752us - PrepareTime: 248.201us - SinkTime: 4.129ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 28.983ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.37ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.108us - CompressTime: 0ns - ExecTime: 4.208ms - InputRows: 30.459K (30459) - LocalBytesSent: 1.25 MB - LocalSendTime: 113.906us - LocalSentRows: 30.459K (30459) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 72.491us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.459K (30459) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.22ms - SplitBlockHashComputeTime: 551.687us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 77.687ms - CloseTime: 436.858us - DeserializeAndMergeTime: 0ns - ExecTime: 119.634ms - ExprTime: 46.63us - GetResultsTime: 41.377ms - HashTableComputeTime: 77.93ms - HashTableEmplaceTime: 73.922ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 213.409us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 666.417us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 26.476us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 40.145ms - SerializeKeyTime: 0ns - SerializeResultTime: 41.403ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 776ns - BlocksProduced: 19 - CloseTime: 139.210us - ExecTime: 53.99ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 331.847us - ProcessConjunctTime: 46.94us - ProjectionTime: 2.457ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.129ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 49.775ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [17.332us, 5.953us, 7.052ms, ] - PerScannerRowsRead: [0, 0, 67.46K, ] - PerScannerWaitTime: [14.713ms, 14.997ms, 16.419ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.698ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 173.72ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.940us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 71.29ms - ScannerCtxSchedTime: 46.121ms - ScannerFilterTime: 11.499us - ScannerGetBlockTime: 7.32ms - ScannerInitTime: 162.336us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.182us - BlockConditionsFilteredBloomFilterTime: 428ns - BlockConditionsFilteredDictTime: 177ns - BlockConditionsFilteredTime: 8.820us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 286ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 40.603us - BlockInitTime: 178.785us - BlockLoadTime: 179.375ms - BlocksLoad: 201 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 73.173ms - FirstReadSeekCount: 375 - FirstReadSeekTime: 171.634us - FirstReadTime: 102.580ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.578us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.115ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 207.196us - OutputIndexResultColumnTimer: 24.400us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 584.743us - ShortPredEvalTime: 92.311us - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 8.72us Fragment 110: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 81.351ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 81.150ms - CloseTime: 21.681us - GetBlockTime: 78.803ms - OpenTime: 3.448us - PrepareTime: 166.441us - SinkTime: 2.151ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 34.545ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.467ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.697us - CompressTime: 0ns - ExecTime: 2.225ms - InputRows: 4.381K (4381) - LocalBytesSent: 201.08 KB - LocalSendTime: 100.391us - LocalSentRows: 4.381K (4381) - MemoryUsage: - PeakMemoryUsage: 297.00 KB - MergeBlockTime: 0ns - OpenTime: 86.150us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.381K (4381) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.307ms - SplitBlockHashComputeTime: 245.679us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.694ms - CloseTime: 3.821us - ExecTime: 3.189ms - HashTableComputeTime: 2.119ms - HashTableEmplaceTime: 1.800ms - HashTableInputCount: 4.381K (4381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.343us - ProjectionTime: 418.532us - RowsProduced: 4.381K (4381) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.71us - DeserializeAndMergeTime: 0ns - ExecTime: 75.387ms - GetResultsTime: 43.362ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.136ms - HashTableSize: 163.079K (163079) - InsertKeysToColumnTime: 6.735ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.696us - ProjectionTime: 6.618ms - RowsProduced: 4.381K (4381) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s849ms PipelineXTask (index=3):(Active: 32.744ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.469ms - CloseTime: 20.437us - GetBlockTime: 30.596ms - OpenTime: 4.709us - PrepareTime: 243.266us - SinkTime: 1.686ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.332ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.51ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.415us - CompressTime: 0ns - ExecTime: 1.760ms - InputRows: 4.41K (4410) - LocalBytesSent: 202.40 KB - LocalSendTime: 98.624us - LocalSentRows: 4.41K (4410) - MemoryUsage: - PeakMemoryUsage: 296.00 KB - MergeBlockTime: 0ns - OpenTime: 81.65us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.41K (4410) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 955.89us - SplitBlockHashComputeTime: 196.570us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.521ms - CloseTime: 4.574us - ExecTime: 2.912ms - HashTableComputeTime: 2.46ms - HashTableEmplaceTime: 1.746ms - HashTableInputCount: 4.41K (4410) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.58us - ProjectionTime: 324.637us - RowsProduced: 4.41K (4410) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 738ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.487ms - GetResultsTime: 14.497ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.45ms - HashTableSize: 163.538K (163538) - InsertKeysToColumnTime: 6.558ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.464us - ProjectionTime: 1.3ms - RowsProduced: 4.41K (4410) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s846ms PipelineXTask (index=6):(Active: 33.482ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 33.290ms - CloseTime: 26.679us - GetBlockTime: 31.370ms - OpenTime: 4.278us - PrepareTime: 155.396us - SinkTime: 1.703ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.396ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.654ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.107us - CompressTime: 0ns - ExecTime: 1.777ms - InputRows: 4.398K (4398) - LocalBytesSent: 201.86 KB - LocalSendTime: 104.513us - LocalSentRows: 4.398K (4398) - MemoryUsage: - PeakMemoryUsage: 295.00 KB - MergeBlockTime: 0ns - OpenTime: 80.446us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.398K (4398) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 981.971us - SplitBlockHashComputeTime: 202.762us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.492ms - CloseTime: 3.732us - ExecTime: 2.884ms - HashTableComputeTime: 2.41ms - HashTableEmplaceTime: 1.772ms - HashTableInputCount: 4.398K (4398) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.870us - ProjectionTime: 334.19us - RowsProduced: 4.398K (4398) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.133us - DeserializeAndMergeTime: 0ns - ExecTime: 28.287ms - GetResultsTime: 14.706ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.92ms - HashTableSize: 163.935K (163935) - InsertKeysToColumnTime: 6.738ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.903us - ProjectionTime: 1.106ms - RowsProduced: 4.398K (4398) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s835ms PipelineXTask (index=9):(Active: 46.307ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.101ms - CloseTime: 27.157us - GetBlockTime: 44.53ms - OpenTime: 4.733us - PrepareTime: 167.142us - SinkTime: 1.864ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.337ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.484ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.739us - CompressTime: 0ns - ExecTime: 1.929ms - InputRows: 4.454K (4454) - LocalBytesSent: 204.43 KB - LocalSendTime: 94.854us - LocalSentRows: 4.454K (4454) - MemoryUsage: - PeakMemoryUsage: 300.00 KB - MergeBlockTime: 0ns - OpenTime: 69.825us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.454K (4454) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.97ms - SplitBlockHashComputeTime: 207.444us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.661ms - CloseTime: 6.242us - ExecTime: 3.106ms - HashTableComputeTime: 2.173ms - HashTableEmplaceTime: 1.860ms - HashTableInputCount: 4.454K (4454) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 12.84us - ProjectionTime: 360.43us - RowsProduced: 4.454K (4454) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 726ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.738ms - GetResultsTime: 27.328ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.11ms - HashTableSize: 163.191K (163191) - InsertKeysToColumnTime: 6.644ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.856us - ProjectionTime: 1.147ms - RowsProduced: 4.454K (4454) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s848ms PipelineXTask (index=12):(Active: 34.295ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.96ms - CloseTime: 22.491us - GetBlockTime: 32.267ms - OpenTime: 3.520us - PrepareTime: 164.698us - SinkTime: 1.655ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.511ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.180ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.105us - CompressTime: 0ns - ExecTime: 1.727ms - InputRows: 4.379K (4379) - LocalBytesSent: 200.98 KB - LocalSendTime: 90.714us - LocalSentRows: 4.379K (4379) - MemoryUsage: - PeakMemoryUsage: 296.00 KB - MergeBlockTime: 0ns - OpenTime: 78.278us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.379K (4379) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 928.698us - SplitBlockHashComputeTime: 210.549us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.383ms - CloseTime: 2.452us - ExecTime: 2.749ms - HashTableComputeTime: 1.909ms - HashTableEmplaceTime: 1.625ms - HashTableInputCount: 4.379K (4379) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.106us - ProjectionTime: 308.987us - RowsProduced: 4.379K (4379) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.6us - DeserializeAndMergeTime: 0ns - ExecTime: 29.350ms - GetResultsTime: 16.419ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.84ms - HashTableSize: 163.683K (163683) - InsertKeysToColumnTime: 8.449ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.133us - ProjectionTime: 1.56ms - RowsProduced: 4.379K (4379) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s827ms PipelineXTask (index=15):(Active: 31.137ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.892ms - CloseTime: 22.196us - GetBlockTime: 28.883ms - OpenTime: 5.150us - PrepareTime: 210.136us - SinkTime: 1.840ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.686ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.908us - CompressTime: 0ns - ExecTime: 1.908ms - InputRows: 4.317K (4317) - LocalBytesSent: 198.13 KB - LocalSendTime: 87.984us - LocalSentRows: 4.317K (4317) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 75.588us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.317K (4317) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.145ms - SplitBlockHashComputeTime: 191.124us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.600ms - CloseTime: 4.209us - ExecTime: 2.985ms - HashTableComputeTime: 2.11ms - HashTableEmplaceTime: 1.743ms - HashTableInputCount: 4.317K (4317) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.520us - ProjectionTime: 325.346us - RowsProduced: 4.317K (4317) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 888ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.733ms - GetResultsTime: 13.542ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.29ms - HashTableSize: 163.392K (163392) - InsertKeysToColumnTime: 6.145ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.246us - ProjectionTime: 883.79us - RowsProduced: 4.317K (4317) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s934ms PipelineXTask (index=18):(Active: 34.91ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 33.904ms - CloseTime: 26.182us - GetBlockTime: 31.723ms - OpenTime: 3.203us - PrepareTime: 150.525us - SinkTime: 1.997ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 34.17ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 339.296us DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.399us - CompressTime: 0ns - ExecTime: 2.63ms - InputRows: 4.368K (4368) - LocalBytesSent: 200.46 KB - LocalSendTime: 127.980us - LocalSentRows: 4.368K (4368) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 70.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.368K (4368) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.144ms - SplitBlockHashComputeTime: 209.762us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.363ms - CloseTime: 8.356us - ExecTime: 2.786ms - HashTableComputeTime: 1.936ms - HashTableEmplaceTime: 1.623ms - HashTableInputCount: 4.368K (4368) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.476us - ProjectionTime: 339.383us - RowsProduced: 4.368K (4368) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 940ns - DeserializeAndMergeTime: 0ns - ExecTime: 28.618ms - GetResultsTime: 14.742ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.61ms - HashTableSize: 163.819K (163819) - InsertKeysToColumnTime: 6.848ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.700us - ProjectionTime: 1.194ms - RowsProduced: 4.368K (4368) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s850ms PipelineXTask (index=21):(Active: 30.332ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 30.106ms - CloseTime: 20.797us - GetBlockTime: 28.365ms - OpenTime: 2.244us - PrepareTime: 195.732us - SinkTime: 1.586ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.285ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.949ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.833us - CompressTime: 0ns - ExecTime: 1.679ms - InputRows: 4.403K (4403) - LocalBytesSent: 202.08 KB - LocalSendTime: 106.728us - LocalSentRows: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 292.00 KB - MergeBlockTime: 0ns - OpenTime: 98.507us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.403K (4403) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 888.463us - SplitBlockHashComputeTime: 215.388us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.162ms - CloseTime: 2.693us - ExecTime: 2.470ms - HashTableComputeTime: 1.791ms - HashTableEmplaceTime: 1.531ms - HashTableInputCount: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.801us - ProjectionTime: 260.334us - RowsProduced: 4.403K (4403) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 727ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.728ms - GetResultsTime: 13.308ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 983.108us - HashTableSize: 163.79K (163790) - InsertKeysToColumnTime: 6.152ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.953us - ProjectionTime: 952.904us - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s886ms PipelineXTask (index=24):(Active: 36.545ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.330ms - CloseTime: 22.982us - GetBlockTime: 34.381ms - OpenTime: 3.230us - PrepareTime: 182.56us - SinkTime: 1.735ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.357ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.151ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.165us - CompressTime: 0ns - ExecTime: 1.820ms - InputRows: 4.372K (4372) - LocalBytesSent: 200.65 KB - LocalSendTime: 101.833us - LocalSentRows: 4.372K (4372) - MemoryUsage: - PeakMemoryUsage: 293.00 KB - MergeBlockTime: 0ns - OpenTime: 92.314us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.372K (4372) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 993.300us - SplitBlockHashComputeTime: 210.967us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.950ms - CloseTime: 3.650us - ExecTime: 3.343ms - HashTableComputeTime: 2.403ms - HashTableEmplaceTime: 2.91ms - HashTableInputCount: 4.372K (4372) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.760us - ProjectionTime: 333.200us - RowsProduced: 4.372K (4372) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.194us - DeserializeAndMergeTime: 0ns - ExecTime: 30.851ms - GetResultsTime: 17.142ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.563ms - HashTableSize: 163.261K (163261) - InsertKeysToColumnTime: 7.977ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.809us - ProjectionTime: 1.104ms - RowsProduced: 4.372K (4372) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s849ms PipelineXTask (index=27):(Active: 36.888ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.690ms - CloseTime: 29.661us - GetBlockTime: 34.754ms - OpenTime: 4.188us - PrepareTime: 157.489us - SinkTime: 1.737ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.849ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.427ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.389us - CompressTime: 0ns - ExecTime: 1.800ms - InputRows: 4.339K (4339) - LocalBytesSent: 199.13 KB - LocalSendTime: 109.858us - LocalSentRows: 4.339K (4339) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 67.773us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.339K (4339) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.5ms - SplitBlockHashComputeTime: 195.652us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.416ms - CloseTime: 7.103us - ExecTime: 2.866ms - HashTableComputeTime: 1.985ms - HashTableEmplaceTime: 1.718ms - HashTableInputCount: 4.339K (4339) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.952us - ProjectionTime: 382.842us - RowsProduced: 4.339K (4339) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 628ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.602ms - GetResultsTime: 17.699ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.701ms - HashTableSize: 163.982K (163982) - InsertKeysToColumnTime: 8.328ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.653us - ProjectionTime: 1.233ms - RowsProduced: 4.339K (4339) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s826ms PipelineXTask (index=30):(Active: 33.14ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.787ms - CloseTime: 38.640us - GetBlockTime: 30.837ms - OpenTime: 3.199us - PrepareTime: 181.233us - SinkTime: 1.801ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.953ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.202ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.962us - CompressTime: 0ns - ExecTime: 1.868ms - InputRows: 4.375K (4375) - LocalBytesSent: 200.81 KB - LocalSendTime: 128.139us - LocalSentRows: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 282.00 KB - MergeBlockTime: 0ns - OpenTime: 67.604us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.375K (4375) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.74ms - SplitBlockHashComputeTime: 193.889us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.935ms - CloseTime: 16.46us - ExecTime: 3.386ms - HashTableComputeTime: 2.354ms - HashTableEmplaceTime: 2.77ms - HashTableInputCount: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.261us - ProjectionTime: 384.871us - RowsProduced: 4.375K (4375) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.447us - DeserializeAndMergeTime: 0ns - ExecTime: 27.277ms - GetResultsTime: 14.160ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.55ms - HashTableSize: 163.643K (163643) - InsertKeysToColumnTime: 6.586ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.434us - ProjectionTime: 984.561us - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s947ms PipelineXTask (index=33):(Active: 32.732ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.514ms - CloseTime: 24.151us - GetBlockTime: 30.571ms - OpenTime: 3.35us - PrepareTime: 183.712us - SinkTime: 1.765ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.413ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.48us - CompressTime: 0ns - ExecTime: 1.837ms - InputRows: 4.391K (4391) - LocalBytesSent: 201.53 KB - LocalSendTime: 121.310us - LocalSentRows: 4.391K (4391) - MemoryUsage: - PeakMemoryUsage: 290.00 KB - MergeBlockTime: 0ns - OpenTime: 76.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.391K (4391) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.27ms - SplitBlockHashComputeTime: 201.373us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.384ms - CloseTime: 4.874us - ExecTime: 2.811ms - HashTableComputeTime: 1.988ms - HashTableEmplaceTime: 1.723ms - HashTableInputCount: 4.391K (4391) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.138us - ProjectionTime: 348.275us - RowsProduced: 4.391K (4391) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 788ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.549ms - GetResultsTime: 14.123ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.34ms - HashTableSize: 163.727K (163727) - InsertKeysToColumnTime: 6.584ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.835us - ProjectionTime: 1.68ms - RowsProduced: 4.391K (4391) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s856ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 255.424ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 255.192ms - CloseTime: 32.960us - GetBlockTime: 133.165ms - OpenTime: 7.507us - PrepareTime: 183.745us - SinkTime: 121.342ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.482ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s341ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 121.80ms - CloseTime: 1.458us - DeserializeAndMergeTime: 0ns - ExecTime: 121.335ms - ExprTime: 250.392us - HashTableComputeTime: 118.765ms - HashTableEmplaceTime: 110.555ms - HashTableInputCount: 163.079K (163079) - InputRows: 163.079K (163079) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 96.293us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 20.207us - ExecTime: 130.78ms - InitProbeSideTime: 21.555ms - JoinFilterTimer: 28.899us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 19.775us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 46.904us - ProbeFindNextTime: 0ns - ProbeRows: 694.766K (694766) - ProbeTime: 126.776ms - ProbeWhenBuildSideOutputTime: 22.765ms - ProbeWhenProbeSideOutputTime: 2.249ms - ProbeWhenProcessHashTableTime: 814.698us - ProbeWhenSearchHashTableTime: 75.250ms - ProjectionTime: 2.540ms - RowsProduced: 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 776.560ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 8.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.706ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.06 MB - MemoryUsage: - Blocks: 19.30 MB - PeakMemoryUsage: 19.30 MB - OpenTime: 24.623us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s478ms PipelineXTask (index=4):(Active: 553.901ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 553.777ms - CloseTime: 31.841us - GetBlockTime: 275.226ms - OpenTime: 5.972us - PrepareTime: 79.298us - SinkTime: 277.840ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 12 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 258.722ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 808.944ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 277.496ms - CloseTime: 4.9us - DeserializeAndMergeTime: 0ns - ExecTime: 277.723ms - ExprTime: 323.652us - HashTableComputeTime: 274.964ms - HashTableEmplaceTime: 266.113ms - HashTableInputCount: 163.538K (163538) - InputRows: 163.538K (163538) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 13.521us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 12.424us - ExecTime: 271.513ms - InitProbeSideTime: 37.555ms - JoinFilterTimer: 27.240us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 15.392us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 59.153us - ProbeFindNextTime: 0ns - ProbeRows: 694.445K (694445) - ProbeTime: 267.398ms - ProbeWhenBuildSideOutputTime: 93.320ms - ProbeWhenProbeSideOutputTime: 2.550ms - ProbeWhenProcessHashTableTime: 797.344us - ProbeWhenSearchHashTableTime: 128.12ms - ProjectionTime: 3.189ms - RowsProduced: 163.538K (163538) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s365ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 12.422us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.234ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.40 MB - MemoryUsage: - Blocks: 18.46 MB - PeakMemoryUsage: 18.46 MB - OpenTime: 19.847us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s140ms PipelineXTask (index=7):(Active: 360.953ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 349.140ms - CloseTime: 11.664ms - GetBlockTime: 207.842ms - OpenTime: 6.837us - PrepareTime: 132.993us - SinkTime: 140.529ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 256.75ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 845.991ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 140.169ms - CloseTime: 1.266us - DeserializeAndMergeTime: 0ns - ExecTime: 140.432ms - ExprTime: 345.184us - HashTableComputeTime: 137.539ms - HashTableEmplaceTime: 128.476ms - HashTableInputCount: 163.935K (163935) - InputRows: 163.935K (163935) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 39.985us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 22.973us - ExecTime: 184.14ms - InitProbeSideTime: 25.596ms - JoinFilterTimer: 35.88us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 47.94us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 60.405us - ProbeFindNextTime: 0ns - ProbeRows: 696.522K (696522) - ProbeTime: 179.545ms - ProbeWhenBuildSideOutputTime: 40.6ms - ProbeWhenProbeSideOutputTime: 2.680ms - ProbeWhenProcessHashTableTime: 810.340us - ProbeWhenSearchHashTableTime: 105.558ms - ProjectionTime: 3.483ms - RowsProduced: 163.935K (163935) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s129ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 168 - BytesReceived: 0.00 - CloseTime: 11.636ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.976ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.90 MB - MemoryUsage: - Blocks: 19.56 MB - PeakMemoryUsage: 19.56 MB - OpenTime: 13.276us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s524ms PipelineXTask (index=10):(Active: 313.909ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 313.776ms - CloseTime: 27.907us - GetBlockTime: 174.110ms - OpenTime: 9.578us - PrepareTime: 89.260us - SinkTime: 138.929ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 248.655ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s84ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 138.642ms - CloseTime: 1.425us - DeserializeAndMergeTime: 0ns - ExecTime: 138.840ms - ExprTime: 316.805us - HashTableComputeTime: 136.226ms - HashTableEmplaceTime: 127.381ms - HashTableInputCount: 163.191K (163191) - InputRows: 163.191K (163191) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 23.902us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 12.563us - ExecTime: 165.500ms - InitProbeSideTime: 24.108ms - JoinFilterTimer: 27.223us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 15.598us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 56.367us - ProbeFindNextTime: 0ns - ProbeRows: 694.151K (694151) - ProbeTime: 136.693ms - ProbeWhenBuildSideOutputTime: 24.881ms - ProbeWhenProbeSideOutputTime: 2.551ms - ProbeWhenProcessHashTableTime: 782.647us - ProbeWhenSearchHashTableTime: 79.805ms - ProjectionTime: 27.905ms - RowsProduced: 163.191K (163191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s25ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 11.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 8.145ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.82 MB - MemoryUsage: - Blocks: 18.65 MB - PeakMemoryUsage: 18.65 MB - OpenTime: 19.373us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s440ms PipelineXTask (index=13):(Active: 454.166ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 454.39ms - CloseTime: 24.285us - GetBlockTime: 224.746ms - OpenTime: 6.193us - PrepareTime: 89.106us - SinkTime: 228.407ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 296.298ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 776.575ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 228.47ms - CloseTime: 1.198us - DeserializeAndMergeTime: 0ns - ExecTime: 228.293ms - ExprTime: 348.445us - HashTableComputeTime: 212.330ms - HashTableEmplaceTime: 202.503ms - HashTableInputCount: 163.683K (163683) - InputRows: 163.683K (163683) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 22.246us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 15.454us - ExecTime: 221.60ms - InitProbeSideTime: 35.842ms - JoinFilterTimer: 29.99us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 26.586us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 57.42us - ProbeFindNextTime: 0ns - ProbeRows: 695.934K (695934) - ProbeTime: 211.586ms - ProbeWhenBuildSideOutputTime: 52.809ms - ProbeWhenProbeSideOutputTime: 2.795ms - ProbeWhenProcessHashTableTime: 832.475us - ProbeWhenSearchHashTableTime: 114.16ms - ProjectionTime: 3.733ms - RowsProduced: 163.683K (163683) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s319ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 5.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.104ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.27 MB - MemoryUsage: - Blocks: 19.40 MB - PeakMemoryUsage: 19.40 MB - OpenTime: 15.149us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s299ms PipelineXTask (index=16):(Active: 357.934ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 357.789ms - CloseTime: 23.14us - GetBlockTime: 193.738ms - OpenTime: 9.400us - PrepareTime: 103.945us - SinkTime: 163.307ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 259.960ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 707.374ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 162.975ms - CloseTime: 1.404us - DeserializeAndMergeTime: 0ns - ExecTime: 163.199ms - ExprTime: 314.214us - HashTableComputeTime: 149.379ms - HashTableEmplaceTime: 140.298ms - HashTableInputCount: 163.392K (163392) - InputRows: 163.392K (163392) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 26.188us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 9.925us - ExecTime: 190.309ms - InitProbeSideTime: 36.323ms - JoinFilterTimer: 27.222us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 34.812us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 47.42us - ProbeFindNextTime: 0ns - ProbeRows: 695.779K (695779) - ProbeTime: 185.991ms - ProbeWhenBuildSideOutputTime: 25.282ms - ProbeWhenProbeSideOutputTime: 16.285ms - ProbeWhenProcessHashTableTime: 785.3us - ProbeWhenSearchHashTableTime: 102.268ms - ProjectionTime: 3.409ms - RowsProduced: 163.392K (163392) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s216ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 9.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.942ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.16 MB - MemoryUsage: - Blocks: 19.16 MB - PeakMemoryUsage: 19.16 MB - OpenTime: 18.209us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s654ms PipelineXTask (index=19):(Active: 332.189ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 332.35ms - CloseTime: 35.286us - GetBlockTime: 200.747ms - OpenTime: 5.777us - PrepareTime: 105.747us - SinkTime: 130.529ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 251.742ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 762.639ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 130.207ms - CloseTime: 1.816us - DeserializeAndMergeTime: 0ns - ExecTime: 130.448ms - ExprTime: 326.286us - HashTableComputeTime: 127.735ms - HashTableEmplaceTime: 118.673ms - HashTableInputCount: 163.819K (163819) - InputRows: 163.819K (163819) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 35.181us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 21.60us - ExecTime: 184.337ms - InitProbeSideTime: 27.152ms - JoinFilterTimer: 28.140us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.613us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 41.611us - ProbeFindNextTime: 0ns - ProbeRows: 695.836K (695836) - ProbeTime: 180.89ms - ProbeWhenBuildSideOutputTime: 41.467ms - ProbeWhenProbeSideOutputTime: 2.588ms - ProbeWhenProcessHashTableTime: 728.254us - ProbeWhenSearchHashTableTime: 86.181ms - ProjectionTime: 3.280ms - RowsProduced: 163.819K (163819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s234ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 9.514us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.921ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.38 MB - MemoryUsage: - Blocks: 18.31 MB - PeakMemoryUsage: 18.31 MB - OpenTime: 18.25us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s521ms PipelineXTask (index=22):(Active: 513.701ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 513.552ms - CloseTime: 35.901us - GetBlockTime: 272.803ms - OpenTime: 5.228us - PrepareTime: 100.791us - SinkTime: 240.6ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 12 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 261.931ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 891.501ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 239.657ms - CloseTime: 2.66us - DeserializeAndMergeTime: 0ns - ExecTime: 239.903ms - ExprTime: 342.361us - HashTableComputeTime: 237.63ms - HashTableEmplaceTime: 227.580ms - HashTableInputCount: 163.79K (163790) - InputRows: 163.79K (163790) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 35.350us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 14.72us - ExecTime: 269.319ms - InitProbeSideTime: 36.919ms - JoinFilterTimer: 27.805us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 13.333us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 51.906us - ProbeFindNextTime: 0ns - ProbeRows: 694.145K (694145) - ProbeTime: 238.680ms - ProbeWhenBuildSideOutputTime: 58.0ms - ProbeWhenProbeSideOutputTime: 2.706ms - ProbeWhenProcessHashTableTime: 14.446ms - ProbeWhenSearchHashTableTime: 121.464ms - ProjectionTime: 29.647ms - RowsProduced: 163.79K (163790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s207ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 15.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.975ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.82 MB - MemoryUsage: - Blocks: 19.20 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 24.555us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s273ms PipelineXTask (index=25):(Active: 285.42ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 284.890ms - CloseTime: 23.959us - GetBlockTime: 184.804ms - OpenTime: 6.132us - PrepareTime: 115.492us - SinkTime: 99.462ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 235.92ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s208ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 99.198ms - CloseTime: 1.360us - DeserializeAndMergeTime: 0ns - ExecTime: 99.375ms - ExprTime: 298.917us - HashTableComputeTime: 96.840ms - HashTableEmplaceTime: 88.589ms - HashTableInputCount: 163.261K (163261) - InputRows: 163.261K (163261) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 19.388us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 12.6us - ExecTime: 181.408ms - InitProbeSideTime: 21.944ms - JoinFilterTimer: 37.378us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 44.604us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 46.238us - ProbeFindNextTime: 0ns - ProbeRows: 695.323K (695323) - ProbeTime: 178.40ms - ProbeWhenBuildSideOutputTime: 24.680ms - ProbeWhenProbeSideOutputTime: 2.259ms - ProbeWhenProcessHashTableTime: 830.474us - ProbeWhenSearchHashTableTime: 123.936ms - ProjectionTime: 2.557ms - RowsProduced: 163.261K (163261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s189ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 7.881us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.5ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.29 MB - MemoryUsage: - Blocks: 19.61 MB - PeakMemoryUsage: 19.61 MB - OpenTime: 24.442us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s188ms PipelineXTask (index=28):(Active: 346.810ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 346.630ms - CloseTime: 45.999us - GetBlockTime: 209.639ms - OpenTime: 7.96us - PrepareTime: 119.161us - SinkTime: 136.147ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 291.881ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 777.457ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 135.777ms - CloseTime: 1.549us - DeserializeAndMergeTime: 0ns - ExecTime: 136.33ms - ExprTime: 360.254us - HashTableComputeTime: 133.95ms - HashTableEmplaceTime: 123.397ms - HashTableInputCount: 163.982K (163982) - InputRows: 163.982K (163982) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 30.755us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 10.115us - ExecTime: 205.869ms - InitProbeSideTime: 26.264ms - JoinFilterTimer: 30.783us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 14.753us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 62.600us - ProbeFindNextTime: 0ns - ProbeRows: 695.57K (695570) - ProbeTime: 201.107ms - ProbeWhenBuildSideOutputTime: 40.857ms - ProbeWhenProbeSideOutputTime: 2.792ms - ProbeWhenProcessHashTableTime: 738.336us - ProbeWhenSearchHashTableTime: 124.639ms - ProjectionTime: 3.755ms - RowsProduced: 163.982K (163982) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s425ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 31.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.193ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.26 MB - MemoryUsage: - Blocks: 19.56 MB - PeakMemoryUsage: 19.56 MB - OpenTime: 21.954us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s298ms PipelineXTask (index=31):(Active: 388.197ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 388.68ms - CloseTime: 38.467us - GetBlockTime: 212.271ms - OpenTime: 6.850us - PrepareTime: 76.719us - SinkTime: 174.988ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 15 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 281.199ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 772.68ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 174.616ms - CloseTime: 1.637us - DeserializeAndMergeTime: 0ns - ExecTime: 174.862ms - ExprTime: 376.382us - HashTableComputeTime: 171.920ms - HashTableEmplaceTime: 161.555ms - HashTableInputCount: 163.643K (163643) - InputRows: 163.643K (163643) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 17.789us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 18.372us - ExecTime: 208.800ms - InitProbeSideTime: 39.548ms - JoinFilterTimer: 29.43us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 17.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.587us - ProbeFindNextTime: 0ns - ProbeRows: 694.608K (694608) - ProbeTime: 204.52ms - ProbeWhenBuildSideOutputTime: 56.160ms - ProbeWhenProbeSideOutputTime: 2.815ms - ProbeWhenProcessHashTableTime: 887.683us - ProbeWhenSearchHashTableTime: 99.66ms - ProjectionTime: 3.721ms - RowsProduced: 163.643K (163643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s214ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 14.757us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.893ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.26 MB - MemoryUsage: - Blocks: 18.32 MB - PeakMemoryUsage: 18.32 MB - OpenTime: 15.36us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s586ms PipelineXTask (index=34):(Active: 325.260ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 325.114ms - CloseTime: 48.708us - GetBlockTime: 191.222ms - OpenTime: 9.548us - PrepareTime: 79.671us - SinkTime: 133.128ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 252.727ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s77ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 132.833ms - CloseTime: 1.506us - DeserializeAndMergeTime: 0ns - ExecTime: 133.20ms - ExprTime: 358.421us - HashTableComputeTime: 130.359ms - HashTableEmplaceTime: 121.452ms - HashTableInputCount: 163.727K (163727) - InputRows: 163.727K (163727) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 33.87 MB - SerializeKeyArena: 27.88 MB - MergeTime: 0ns - OpenTime: 16.748us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 38.808us - ExecTime: 154.476ms - InitProbeSideTime: 24.708ms - JoinFilterTimer: 26.520us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 17.764us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 63.233us - ProbeFindNextTime: 0ns - ProbeRows: 695.248K (695248) - ProbeTime: 150.355ms - ProbeWhenBuildSideOutputTime: 26.4ms - ProbeWhenProbeSideOutputTime: 2.700ms - ProbeWhenProcessHashTableTime: 886.108us - ProbeWhenSearchHashTableTime: 91.258ms - ProjectionTime: 3.210ms - RowsProduced: 163.727K (163727) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s42ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 6.64us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.255ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.06 MB - MemoryUsage: - Blocks: 19.19 MB - PeakMemoryUsage: 19.19 MB - OpenTime: 17.897us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s427ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 48.139ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 48.34ms - CloseTime: 19.184us - GetBlockTime: 14.928ms - OpenTime: 2.523us - PrepareTime: 77.155us - SinkTime: 32.912ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 34.245ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s241ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.42us - BuildRows: 163.08K (163080) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.143ms - BuildTableInsertTime: 8.931ms - BuildTableTime: 8.939ms - CloseTime: 0ns - ExecTime: 32.917ms - InputRows: 163.079K (163079) - MemoryUsage: - BuildBlocks: 10.73 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.11 MB - OpenTime: 27.157us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.577us - RuntimeFilterComputeTime: 3.637ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 14.514us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.923ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.00 MB - MemoryUsage: - Blocks: 8.71 MB - PeakMemoryUsage: 8.71 MB - OpenTime: 15.757us - ProjectionTime: 0ns - RowsProduced: 163.079K (163079) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s168ms PipelineXTask (index=5):(Active: 70.573ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 70.454ms - CloseTime: 24.895us - GetBlockTime: 1.174ms - OpenTime: 2.481us - PrepareTime: 87.146us - SinkTime: 69.12ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.185ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s271ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.560us - BuildRows: 163.539K (163539) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 51.984ms - BuildTableInsertTime: 12.364ms - BuildTableTime: 12.371ms - CloseTime: 0ns - ExecTime: 69.8ms - InputRows: 163.538K (163538) - MemoryUsage: - BuildBlocks: 10.76 MB - BuildKeyArena: 5.62 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.16 MB - OpenTime: 20.413us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.879us - RuntimeFilterComputeTime: 4.450ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 13.754us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.175ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.11 MB - MemoryUsage: - Blocks: 4.13 MB - PeakMemoryUsage: 4.13 MB - OpenTime: 32.413us - ProjectionTime: 0ns - RowsProduced: 163.538K (163538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s502ms PipelineXTask (index=8):(Active: 77.337ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 77.263ms - CloseTime: 14.269us - GetBlockTime: 1.108ms - OpenTime: 5.377us - PrepareTime: 46.67us - SinkTime: 75.931ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.374ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s411ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.943us - BuildRows: 163.936K (163936) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 59.842ms - BuildTableInsertTime: 12.153ms - BuildTableTime: 12.162ms - CloseTime: 0ns - ExecTime: 75.922ms - InputRows: 163.935K (163935) - MemoryUsage: - BuildBlocks: 10.79 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.20 MB - OpenTime: 16.472us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 24.11us - RuntimeFilterComputeTime: 3.732ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 10.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.93ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.41 MB - MemoryUsage: - Blocks: 6.86 MB - PeakMemoryUsage: 6.86 MB - OpenTime: 13.723us - ProjectionTime: 0ns - RowsProduced: 163.935K (163935) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s127ms PipelineXTask (index=11):(Active: 70.535ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 70.451ms - CloseTime: 14.890us - GetBlockTime: 1.80ms - OpenTime: 2.317us - PrepareTime: 60.690us - SinkTime: 69.154ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 48.23ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s344ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 24.616us - BuildRows: 163.192K (163192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.597ms - BuildTableInsertTime: 13.740ms - BuildTableTime: 13.749ms - CloseTime: 0ns - ExecTime: 69.162ms - InputRows: 163.191K (163191) - MemoryUsage: - BuildBlocks: 10.74 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.12 MB - OpenTime: 32.518us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.697us - RuntimeFilterComputeTime: 5.603ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 11.86us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.71ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.47 MB - MemoryUsage: - Blocks: 7.00 MB - PeakMemoryUsage: 7.00 MB - OpenTime: 11.62us - ProjectionTime: 0ns - RowsProduced: 163.191K (163191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s88ms PipelineXTask (index=14):(Active: 70.17ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 69.938ms - CloseTime: 17.836us - GetBlockTime: 1.270ms - OpenTime: 3.120us - PrepareTime: 51.777us - SinkTime: 68.427ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s728ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.997us - BuildRows: 163.684K (163684) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 55.294ms - BuildTableInsertTime: 9.279ms - BuildTableTime: 9.287ms - CloseTime: 0ns - ExecTime: 68.418ms - InputRows: 163.683K (163683) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.17 MB - OpenTime: 15.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.517us - RuntimeFilterComputeTime: 3.641ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 13.419us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.252ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.22 MB - MemoryUsage: - Blocks: 4.94 MB - PeakMemoryUsage: 4.94 MB - OpenTime: 11.977us - ProjectionTime: 0ns - RowsProduced: 163.683K (163683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 999.555ms PipelineXTask (index=17):(Active: 215.3ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 214.923ms - CloseTime: 16.841us - GetBlockTime: 1.437ms - OpenTime: 4.54us - PrepareTime: 52.754us - SinkTime: 202.376ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 50.244ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s271ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 31.403us - BuildRows: 163.393K (163393) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 184.932ms - BuildTableInsertTime: 13.535ms - BuildTableTime: 13.542ms - CloseTime: 0ns - ExecTime: 202.370ms - InputRows: 163.392K (163392) - MemoryUsage: - BuildBlocks: 10.75 MB - BuildKeyArena: 5.62 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.14 MB - OpenTime: 23.764us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.741us - RuntimeFilterComputeTime: 3.677ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 12.721us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.405ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.03 MB - MemoryUsage: - Blocks: 10.13 MB - PeakMemoryUsage: 10.13 MB - OpenTime: 8.917us - ProjectionTime: 0ns - RowsProduced: 163.392K (163392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 978.75ms PipelineXTask (index=20):(Active: 99.29ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 98.953ms - CloseTime: 16.663us - GetBlockTime: 1.196ms - OpenTime: 2.726us - PrepareTime: 50.837us - SinkTime: 97.565ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 53.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s312ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.502us - BuildRows: 163.82K (163820) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 68.894ms - BuildTableInsertTime: 24.133ms - BuildTableTime: 24.140ms - CloseTime: 0ns - ExecTime: 97.567ms - InputRows: 163.819K (163819) - MemoryUsage: - BuildBlocks: 10.78 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.19 MB - OpenTime: 21.549us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.328us - RuntimeFilterComputeTime: 4.327ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 13.98us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.191ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.47 MB - MemoryUsage: - Blocks: 8.47 MB - PeakMemoryUsage: 8.47 MB - OpenTime: 14.300us - ProjectionTime: 0ns - RowsProduced: 163.819K (163819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s70ms PipelineXTask (index=23):(Active: 37.524ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.439ms - CloseTime: 25.52us - GetBlockTime: 1.332ms - OpenTime: 1.907us - PrepareTime: 51.675us - SinkTime: 35.902ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.143ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s367ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.446us - BuildRows: 163.791K (163791) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.658ms - BuildTableInsertTime: 7.862ms - BuildTableTime: 7.869ms - CloseTime: 0ns - ExecTime: 35.892ms - InputRows: 163.79K (163790) - MemoryUsage: - BuildBlocks: 10.78 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.18 MB - OpenTime: 14.549us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.583us - RuntimeFilterComputeTime: 4.182ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 14.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.319ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.44 MB - MemoryUsage: - Blocks: 8.92 MB - PeakMemoryUsage: 8.92 MB - OpenTime: 13.776us - ProjectionTime: 0ns - RowsProduced: 163.79K (163790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s50ms PipelineXTask (index=26):(Active: 142.664ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 142.590ms - CloseTime: 16.815us - GetBlockTime: 1.33ms - OpenTime: 2.437us - PrepareTime: 48.934us - SinkTime: 141.288ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 36.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s302ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.771us - BuildRows: 163.262K (163262) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 127.787ms - BuildTableInsertTime: 9.540ms - BuildTableTime: 9.549ms - CloseTime: 0ns - ExecTime: 141.280ms - InputRows: 163.261K (163261) - MemoryUsage: - BuildBlocks: 10.74 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.13 MB - OpenTime: 17.282us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 192.607us - RuntimeFilterComputeTime: 3.554ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 12.498us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.7ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.58 MB - MemoryUsage: - Blocks: 3.91 MB - PeakMemoryUsage: 3.91 MB - OpenTime: 9.175us - ProjectionTime: 0ns - RowsProduced: 163.261K (163261) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s425ms PipelineXTask (index=29):(Active: 69.276ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 69.178ms - CloseTime: 17.578us - GetBlockTime: 24.935ms - OpenTime: 2.763us - PrepareTime: 64.258us - SinkTime: 43.955ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.386ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s398ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 36.867us - BuildRows: 163.983K (163983) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 29.370ms - BuildTableInsertTime: 10.669ms - BuildTableTime: 10.678ms - CloseTime: 0ns - ExecTime: 43.944ms - InputRows: 163.982K (163982) - MemoryUsage: - BuildBlocks: 10.79 MB - BuildKeyArena: 5.64 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.21 MB - OpenTime: 18.583us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.881us - RuntimeFilterComputeTime: 3.679ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 13.635us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.922ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.07 MB - MemoryUsage: - Blocks: 3.09 MB - PeakMemoryUsage: 3.09 MB - OpenTime: 24.71us - ProjectionTime: 0ns - RowsProduced: 163.982K (163982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s374ms PipelineXTask (index=32):(Active: 91.107ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 90.984ms - CloseTime: 15.779us - GetBlockTime: 937.672us - OpenTime: 3.980us - PrepareTime: 95.828us - SinkTime: 89.810ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.105ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s88ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 27.548us - BuildRows: 163.644K (163644) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 74.89ms - BuildTableInsertTime: 11.736ms - BuildTableTime: 11.743ms - CloseTime: 0ns - ExecTime: 89.821ms - InputRows: 163.643K (163643) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.17 MB - OpenTime: 35.948us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.80us - RuntimeFilterComputeTime: 3.781ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 11.544us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 935.892us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.60 MB - MemoryUsage: - Blocks: 7.59 MB - PeakMemoryUsage: 7.59 MB - OpenTime: 20.186us - ProjectionTime: 0ns - RowsProduced: 163.643K (163643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s282ms PipelineXTask (index=35):(Active: 65.911ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 65.840ms - CloseTime: 11.10us - GetBlockTime: 952.1us - OpenTime: 3.160us - PrepareTime: 49.540us - SinkTime: 64.694ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.821ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s384ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.903us - BuildRows: 163.728K (163728) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 47.478ms - BuildTableInsertTime: 13.377ms - BuildTableTime: 13.383ms - CloseTime: 0ns - ExecTime: 64.692ms - InputRows: 163.727K (163727) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.18 MB - OpenTime: 15.973us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.516us - RuntimeFilterComputeTime: 3.655ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 8.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 939.939us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.81 MB - MemoryUsage: - Blocks: 8.03 MB - PeakMemoryUsage: 8.03 MB - OpenTime: 13.396us - ProjectionTime: 0ns - RowsProduced: 163.727K (163727) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s70ms Fragment 111: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 506.705ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 474.597ms - CloseTime: 72.204us - GetBlockTime: 2.413ms - OpenTime: 31.675ms - PrepareTime: 348.268us - SinkTime: 439.8ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 252.940ms - WaitBfTime: 906.907ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s418ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 497 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.724us - CompressTime: 0ns - ExecTime: 438.949ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 91.34 MB - LocalSendTime: 4.401ms - LocalSentRows: 2.082156M (2082156) - MemoryUsage: - PeakMemoryUsage: 160.30 MB - MergeBlockTime: 0ns - OpenTime: 90.68us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 343.368ms - SplitBlockHashComputeTime: 69.575ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 585.75ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 35.896ms - WaitForLocalExchangeBuffer9: 219.43ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=106. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 38, type = minmax), RuntimeFilter: (id = 39, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.88us - BlocksProduced: 514 - CloseTime: 56.322us - ExecTime: 327.422ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 31.878ms - ProcessConjunctTime: 32.270us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 130.290ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 293.264ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 38, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 39, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [165.694ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [130.290ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 150.804ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 629.747us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.774us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.246ms - ScannerCtxSchedTime: 130.273ms - ScannerFilterTime: 12.994ms - ScannerGetBlockTime: 152.433ms - ScannerInitTime: 31.603ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.539us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.725us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 17.648us - BlockInitTime: 109.441us - BlockLoadTime: 151.523ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 745.217us - FirstReadTime: 149.97ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.645us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 185.571us - OutputIndexResultColumnTimer: 75.430us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 462.353ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 461.978ms - CloseTime: 68.123us - GetBlockTime: 2.383ms - OpenTime: 123.220us - PrepareTime: 173.568us - SinkTime: 457.998ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 246.716ms - WaitBfTime: 938.578ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s294ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 501 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.36us - CompressTime: 0ns - ExecTime: 457.903ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 91.52 MB - LocalSendTime: 4.184ms - LocalSentRows: 2.086234M (2086234) - MemoryUsage: - PeakMemoryUsage: 161.32 MB - MergeBlockTime: 0ns - OpenTime: 68.770us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 311.262ms - SplitBlockHashComputeTime: 124.375ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 585.75ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 35.896ms - WaitForLocalExchangeBuffer9: 219.43ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=106. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 38, type = minmax), RuntimeFilter: (id = 39, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.343us - BlocksProduced: 514 - CloseTime: 51.604us - ExecTime: 281.92ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 184.709us - ProcessConjunctTime: 30.75us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.378ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 278.625ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 38, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 39, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [134.634ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [142.378ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 113.135ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 881.59us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.861us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 100.198ms - ScannerCtxSchedTime: 142.359ms - ScannerFilterTime: 19.691ms - ScannerGetBlockTime: 114.698ms - ScannerInitTime: 68.420us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 783ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.225us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.62us - BlockInitTime: 84.447us - BlockLoadTime: 114.304ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.112ms - FirstReadTime: 112.440ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.66us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 142.833us - OutputIndexResultColumnTimer: 52.419us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 259.462ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 258.900ms - CloseTime: 67.198us - GetBlockTime: 2.616ms - OpenTime: 287.320us - PrepareTime: 194.452us - SinkTime: 254.362ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 229.125ms - WaitBfTime: 1s396ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s310ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 499 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.357us - CompressTime: 0ns - ExecTime: 254.290ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 91.56 MB - LocalSendTime: 4.632ms - LocalSentRows: 2.087045M (2087045) - MemoryUsage: - PeakMemoryUsage: 161.45 MB - MergeBlockTime: 0ns - OpenTime: 80.534us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 158.634ms - SplitBlockHashComputeTime: 72.851ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 585.75ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 35.896ms - WaitForLocalExchangeBuffer9: 219.43ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=106. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 38, type = minmax), RuntimeFilter: (id = 39, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.77us - BlocksProduced: 515 - CloseTime: 50.994us - ExecTime: 163.973ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 355.649us - ProcessConjunctTime: 64.820us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 18.375ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 161.117ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 38, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 39, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [143.601ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [18.375ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 114.115ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 769.302us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.904us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.990ms - ScannerCtxSchedTime: 18.362ms - ScannerFilterTime: 27.807ms - ScannerGetBlockTime: 115.580ms - ScannerInitTime: 158.837us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.445us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.631us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.95us - BlockInitTime: 140.571us - BlockLoadTime: 114.977ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 672.477us - FirstReadTime: 113.0ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.661us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 137.101us - OutputIndexResultColumnTimer: 49.946us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 360.940ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 360.553ms - CloseTime: 65.348us - GetBlockTime: 2.332ms - OpenTime: 86.918us - PrepareTime: 209.245us - SinkTime: 356.638ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 234.399ms - WaitBfTime: 938.696ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s552ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 502 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.287us - CompressTime: 0ns - ExecTime: 356.554ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 91.55 MB - LocalSendTime: 4.296ms - LocalSentRows: 2.086892M (2086892) - MemoryUsage: - PeakMemoryUsage: 161.61 MB - MergeBlockTime: 0ns - OpenTime: 74.944us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 196.828ms - SplitBlockHashComputeTime: 97.502ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 585.75ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 35.896ms - WaitForLocalExchangeBuffer9: 219.43ms - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=106. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 38, type = minmax), RuntimeFilter: (id = 39, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.733us - BlocksProduced: 515 - CloseTime: 50.464us - ExecTime: 288.104ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 166.721us - ProcessConjunctTime: 14.549us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 154.170ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 285.706ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 38, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 39, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [131.725ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [154.170ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.29ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 925.229us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.366us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 102.620ms - ScannerCtxSchedTime: 154.151ms - ScannerFilterTime: 12.938ms - ScannerGetBlockTime: 118.539ms - ScannerInitTime: 51.833us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.126us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.981us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.81us - BlockInitTime: 84.981us - BlockLoadTime: 118.65ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.0ms - FirstReadTime: 115.809ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.17us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 143.555us - OutputIndexResultColumnTimer: 63.969us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 112: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 76.705ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 76.504ms - CloseTime: 34.538us - GetBlockTime: 16.900ms - OpenTime: 7.120us - PrepareTime: 148.606us - SinkTime: 59.174ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 52.592ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s253ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.679us - CompressTime: 0ns - ExecTime: 59.230ms - InputRows: 183.028K (183028) - LocalBytesSent: 12.04 MB - LocalSendTime: 616.661us - LocalSentRows: 183.028K (183028) - MemoryUsage: - PeakMemoryUsage: 20.21 MB - MergeBlockTime: 0ns - OpenTime: 79.290us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 183.028K (183028) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.896ms - SplitBlockHashComputeTime: 4.977ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 52 - BuildOutputBlock: 0ns - CloseTime: 16.511us - ExecTime: 16.394ms - InitProbeSideTime: 2.613ms - JoinFilterTimer: 7.894us - MemoryUsage: - PeakMemoryUsage: 108.00 KB - ProbeKeyArena: 108.00 KB - OpenTime: 20.707us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.666us - ProbeFindNextTime: 0ns - ProbeRows: 183.028K (183028) - ProbeTime: 14.329ms - ProbeWhenBuildSideOutputTime: 335.208us - ProbeWhenProbeSideOutputTime: 6.952ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.201ms - ProjectionTime: 1.852ms - RowsProduced: 183.028K (183028) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 52 - CloseTime: 0ns - ExecTime: 352.430us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 5.45 MB - OpenTime: 880ns - ProjectionTime: 0ns - RowsProduced: 183.028K (183028) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 703.259ms PipelineXTask (index=5):(Active: 160.1ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 159.728ms - CloseTime: 50.734us - GetBlockTime: 86.958ms - OpenTime: 5.896us - PrepareTime: 206.721us - SinkTime: 72.317ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 52.27ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s116ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.16us - CompressTime: 0ns - ExecTime: 72.365ms - InputRows: 174.789K (174789) - LocalBytesSent: 11.50 MB - LocalSendTime: 13.700ms - LocalSentRows: 174.789K (174789) - MemoryUsage: - PeakMemoryUsage: 19.87 MB - MergeBlockTime: 0ns - OpenTime: 71.783us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 174.789K (174789) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 50.868ms - SplitBlockHashComputeTime: 4.912ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 22.389us - ExecTime: 86.467ms - InitProbeSideTime: 2.759ms - JoinFilterTimer: 7.578us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 93.945us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.707us - ProbeFindNextTime: 0ns - ProbeRows: 174.789K (174789) - ProbeTime: 84.194ms - ProbeWhenBuildSideOutputTime: 446.71us - ProbeWhenProbeSideOutputTime: 32.852ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.199ms - ProjectionTime: 1.957ms - RowsProduced: 174.789K (174789) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 399.325us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 6.09 MB - OpenTime: 889ns - ProjectionTime: 0ns - RowsProduced: 174.789K (174789) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 809.365ms PipelineXTask (index=10):(Active: 159.980ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 159.810ms - CloseTime: 35.950us - GetBlockTime: 34.550ms - OpenTime: 4.797us - PrepareTime: 119.204us - SinkTime: 124.868ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 52.698ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s8ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.649us - CompressTime: 0ns - ExecTime: 124.901ms - InputRows: 164.335K (164335) - LocalBytesSent: 10.81 MB - LocalSendTime: 686.368us - LocalSentRows: 164.335K (164335) - MemoryUsage: - PeakMemoryUsage: 18.21 MB - MergeBlockTime: 0ns - OpenTime: 65.325us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 164.335K (164335) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 84.875ms - SplitBlockHashComputeTime: 36.637ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 19.569us - ExecTime: 34.39ms - InitProbeSideTime: 2.706ms - JoinFilterTimer: 7.836us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 16.939us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.95us - ProbeFindNextTime: 0ns - ProbeRows: 164.335K (164335) - ProbeTime: 14.6ms - ProbeWhenBuildSideOutputTime: 407.838us - ProbeWhenProbeSideOutputTime: 6.677ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.1ms - ProjectionTime: 19.821ms - RowsProduced: 164.335K (164335) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 347.302us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 6.52 MB - OpenTime: 785ns - ProjectionTime: 0ns - RowsProduced: 164.335K (164335) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 839.363ms PipelineXTask (index=15):(Active: 266.726ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 266.548ms - CloseTime: 32.499us - GetBlockTime: 17.747ms - OpenTime: 3.884us - PrepareTime: 132.500us - SinkTime: 248.281ms - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 58.51ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s98ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.261us - CompressTime: 0ns - ExecTime: 248.330ms - InputRows: 165.948K (165948) - LocalBytesSent: 10.92 MB - LocalSendTime: 693.275us - LocalSentRows: 165.948K (165948) - MemoryUsage: - PeakMemoryUsage: 19.42 MB - MergeBlockTime: 0ns - OpenTime: 71.157us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 165.948K (165948) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 239.818ms - SplitBlockHashComputeTime: 4.770ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 16.124us - ExecTime: 17.82ms - InitProbeSideTime: 2.795ms - JoinFilterTimer: 13.441us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 10.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.619us - ProbeFindNextTime: 0ns - ProbeRows: 165.948K (165948) - ProbeTime: 14.683ms - ProbeWhenBuildSideOutputTime: 415.78us - ProbeWhenProbeSideOutputTime: 6.896ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.146ms - ProjectionTime: 2.174ms - RowsProduced: 165.948K (165948) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 457.980us - GetBlockFailedTime: 15 - MemoryUsage: - PeakMemoryUsage: 4.80 MB - OpenTime: 878ns - ProjectionTime: 0ns - RowsProduced: 165.948K (165948) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s77ms PipelineXTask (index=20):(Active: 66.813ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 66.621ms - CloseTime: 51.873us - GetBlockTime: 15.147ms - OpenTime: 6.355us - PrepareTime: 127.843us - SinkTime: 51.88ms - GetBlockCounter: 56 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s168ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.239us - CompressTime: 0ns - ExecTime: 51.136ms - InputRows: 169.743K (169743) - LocalBytesSent: 11.17 MB - LocalSendTime: 628.419us - LocalSentRows: 169.743K (169743) - MemoryUsage: - PeakMemoryUsage: 18.87 MB - MergeBlockTime: 0ns - OpenTime: 72.419us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 169.743K (169743) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.252ms - SplitBlockHashComputeTime: 4.626ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 40.568us - ExecTime: 14.682ms - InitProbeSideTime: 2.346ms - JoinFilterTimer: 8.262us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.501us - ProbeFindNextTime: 0ns - ProbeRows: 169.743K (169743) - ProbeTime: 12.656ms - ProbeWhenBuildSideOutputTime: 309.527us - ProbeWhenProbeSideOutputTime: 6.78ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.785ms - ProjectionTime: 1.808ms - RowsProduced: 169.743K (169743) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 359.657us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 5.73 MB - OpenTime: 804ns - ProjectionTime: 0ns - RowsProduced: 169.743K (169743) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 773.486ms PipelineXTask (index=25):(Active: 122.968ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 122.746ms - CloseTime: 44.202us - GetBlockTime: 30.695ms - OpenTime: 5.10us - PrepareTime: 165.952us - SinkTime: 91.515ms - GetBlockCounter: 55 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.890ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s83ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.136us - CompressTime: 0ns - ExecTime: 91.607ms - InputRows: 162.896K (162896) - LocalBytesSent: 10.72 MB - LocalSendTime: 768.219us - LocalSentRows: 162.896K (162896) - MemoryUsage: - PeakMemoryUsage: 19.21 MB - MergeBlockTime: 0ns - OpenTime: 115.567us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 162.896K (162896) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 82.74ms - SplitBlockHashComputeTime: 5.191ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 23.826us - ExecTime: 30.61ms - InitProbeSideTime: 15.177ms - JoinFilterTimer: 9.220us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 12.601us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.621us - ProbeFindNextTime: 0ns - ProbeRows: 162.896K (162896) - ProbeTime: 27.905ms - ProbeWhenBuildSideOutputTime: 527.870us - ProbeWhenProbeSideOutputTime: 7.370ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.390ms - ProjectionTime: 1.863ms - RowsProduced: 162.896K (162896) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 464.485us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 5.09 MB - OpenTime: 724ns - ProjectionTime: 0ns - RowsProduced: 162.896K (162896) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 834.937ms PipelineXTask (index=30):(Active: 79.957ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 79.778ms - CloseTime: 36.604us - GetBlockTime: 17.804ms - OpenTime: 4.147us - PrepareTime: 131.633us - SinkTime: 61.477ms - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 57.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s4ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.278us - CompressTime: 0ns - ExecTime: 61.525ms - InputRows: 167.477K (167477) - LocalBytesSent: 11.02 MB - LocalSendTime: 617.982us - LocalSentRows: 167.477K (167477) - MemoryUsage: - PeakMemoryUsage: 19.11 MB - MergeBlockTime: 0ns - OpenTime: 71.564us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 167.477K (167477) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 53.139ms - SplitBlockHashComputeTime: 4.761ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 20.732us - ExecTime: 17.210ms - InitProbeSideTime: 2.585ms - JoinFilterTimer: 8.153us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.964us - ProbeFindNextTime: 0ns - ProbeRows: 167.477K (167477) - ProbeTime: 15.4ms - ProbeWhenBuildSideOutputTime: 384.961us - ProbeWhenProbeSideOutputTime: 7.623ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.218ms - ProjectionTime: 1.993ms - RowsProduced: 167.477K (167477) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 398.37us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 4.45 MB - OpenTime: 923ns - ProjectionTime: 0ns - RowsProduced: 167.477K (167477) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 927.633ms PipelineXTask (index=35):(Active: 125.377ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 125.211ms - CloseTime: 37.628us - GetBlockTime: 16.78ms - OpenTime: 4.87us - PrepareTime: 117.678us - SinkTime: 108.628ms - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.574ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 906.688ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.210us - CompressTime: 0ns - ExecTime: 108.668ms - InputRows: 161.292K (161292) - LocalBytesSent: 10.61 MB - LocalSendTime: 628.922us - LocalSentRows: 161.292K (161292) - MemoryUsage: - PeakMemoryUsage: 19.13 MB - MergeBlockTime: 0ns - OpenTime: 67.720us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 161.292K (161292) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.259ms - SplitBlockHashComputeTime: 64.178ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 22.945us - ExecTime: 15.502ms - InitProbeSideTime: 2.493ms - JoinFilterTimer: 8.336us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.902us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 43.220us - ProbeFindNextTime: 0ns - ProbeRows: 161.292K (161292) - ProbeTime: 13.423ms - ProbeWhenBuildSideOutputTime: 308.125us - ProbeWhenProbeSideOutputTime: 6.447ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.866ms - ProjectionTime: 1.845ms - RowsProduced: 161.292K (161292) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 403.396us - GetBlockFailedTime: 15 - MemoryUsage: - PeakMemoryUsage: 1.60 MB - OpenTime: 870ns - ProjectionTime: 0ns - RowsProduced: 161.292K (161292) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 980.652ms PipelineXTask (index=40):(Active: 111.716ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 111.541ms - CloseTime: 45.97us - GetBlockTime: 25.103ms - OpenTime: 6.579us - PrepareTime: 118.844us - SinkTime: 86.2ms - GetBlockCounter: 53 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 57.328ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s55ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.196us - CompressTime: 0ns - ExecTime: 86.44ms - InputRows: 161.319K (161319) - LocalBytesSent: 10.61 MB - LocalSendTime: 688.101us - LocalSentRows: 161.319K (161319) - MemoryUsage: - PeakMemoryUsage: 18.56 MB - MergeBlockTime: 0ns - OpenTime: 67.200us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 161.319K (161319) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 77.513ms - SplitBlockHashComputeTime: 4.833ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 27.864us - ExecTime: 24.573ms - InitProbeSideTime: 2.710ms - JoinFilterTimer: 7.994us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 12.279us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.470us - ProbeFindNextTime: 0ns - ProbeRows: 161.319K (161319) - ProbeTime: 22.536ms - ProbeWhenBuildSideOutputTime: 480.908us - ProbeWhenProbeSideOutputTime: 15.106ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.945ms - ProjectionTime: 1.800ms - RowsProduced: 161.319K (161319) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 382.218us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 5.13 MB - OpenTime: 598ns - ProjectionTime: 0ns - RowsProduced: 161.319K (161319) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 840.817ms PipelineXTask (index=45):(Active: 135.417ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 135.211ms - CloseTime: 41.751us - GetBlockTime: 14.703ms - OpenTime: 3.499us - PrepareTime: 155.656us - SinkTime: 120.155ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.17ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 946.377ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 42 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.139us - CompressTime: 0ns - ExecTime: 120.227ms - InputRows: 150.991K (150991) - LocalBytesSent: 9.94 MB - LocalSendTime: 504.276us - LocalSentRows: 150.991K (150991) - MemoryUsage: - PeakMemoryUsage: 16.02 MB - MergeBlockTime: 0ns - OpenTime: 87.449us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 150.991K (150991) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 113.323ms - SplitBlockHashComputeTime: 4.113ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 23.223us - ExecTime: 14.254ms - InitProbeSideTime: 2.377ms - JoinFilterTimer: 10.962us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 22.546us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.538us - ProbeFindNextTime: 0ns - ProbeRows: 150.991K (150991) - ProbeTime: 12.290ms - ProbeWhenBuildSideOutputTime: 385.866us - ProbeWhenProbeSideOutputTime: 5.609ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.814ms - ProjectionTime: 1.756ms - RowsProduced: 150.991K (150991) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 335.331us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 4.80 MB - OpenTime: 830ns - ProjectionTime: 0ns - RowsProduced: 150.991K (150991) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 928.359ms PipelineXTask (index=50):(Active: 103.198ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 103.20ms - CloseTime: 53.156us - GetBlockTime: 14.803ms - OpenTime: 7.120us - PrepareTime: 111.314us - SinkTime: 87.862ms - GetBlockCounter: 53 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.451ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s102ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 32.38us - CompressTime: 0ns - ExecTime: 87.931ms - InputRows: 153.913K (153913) - LocalBytesSent: 10.13 MB - LocalSendTime: 638.0us - LocalSentRows: 153.913K (153913) - MemoryUsage: - PeakMemoryUsage: 18.16 MB - MergeBlockTime: 0ns - OpenTime: 69.227us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 153.913K (153913) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.301ms - SplitBlockHashComputeTime: 45.462ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 17.213us - ExecTime: 14.378ms - InitProbeSideTime: 2.550ms - JoinFilterTimer: 6.936us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 11.995us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.10us - ProbeFindNextTime: 0ns - ProbeRows: 153.913K (153913) - ProbeTime: 12.477ms - ProbeWhenBuildSideOutputTime: 288.698us - ProbeWhenProbeSideOutputTime: 5.704ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.755ms - ProjectionTime: 1.680ms - RowsProduced: 153.913K (153913) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 302.7us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 6.41 MB - OpenTime: 618ns - ProjectionTime: 0ns - RowsProduced: 153.913K (153913) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 863.865ms PipelineXTask (index=55):(Active: 89.60ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 88.867ms - CloseTime: 43.679us - GetBlockTime: 20.284ms - OpenTime: 5.163us - PrepareTime: 136.25us - SinkTime: 68.140ms - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 50.873ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s200ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 39 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.835us - CompressTime: 0ns - ExecTime: 68.215ms - InputRows: 147.309K (147309) - LocalBytesSent: 9.69 MB - LocalSendTime: 578.49us - LocalSentRows: 147.309K (147309) - MemoryUsage: - PeakMemoryUsage: 15.46 MB - MergeBlockTime: 0ns - OpenTime: 82.906us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 147.309K (147309) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 60.143ms - SplitBlockHashComputeTime: 4.621ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 13.737us - ExecTime: 19.739ms - InitProbeSideTime: 7.190ms - JoinFilterTimer: 7.977us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.2us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.794us - ProbeFindNextTime: 0ns - ProbeRows: 147.309K (147309) - ProbeTime: 17.763ms - ProbeWhenBuildSideOutputTime: 486.257us - ProbeWhenProbeSideOutputTime: 5.812ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.1ms - ProjectionTime: 1.747ms - RowsProduced: 147.309K (147309) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 391.69us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 4.42 MB - OpenTime: 768ns - ProjectionTime: 0ns - RowsProduced: 147.309K (147309) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 752.168ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 60.487ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 60.417ms - CloseTime: 14.743us - GetBlockTime: 59.607ms - OpenTime: 5.366us - PrepareTime: 44.320us - SinkTime: 528.540us - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.340ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s283ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 496.324us - InputRows: 172.792K (172792) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.352us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 12.630us - ExecTime: 59.205ms - InitProbeSideTime: 31.943ms - JoinFilterTimer: 6.995us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 13.490us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.39us - ProbeFindNextTime: 0ns - ProbeRows: 172.792K (172792) - ProbeTime: 54.858ms - ProbeWhenBuildSideOutputTime: 428.202us - ProbeWhenProbeSideOutputTime: 18.64ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.168ms - ProjectionTime: 4.143ms - RowsProduced: 172.792K (172792) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 287.173us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 5.20 MB - OpenTime: 500ns - ProjectionTime: 0ns - RowsProduced: 172.792K (172792) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 535.831ms PipelineXTask (index=6):(Active: 68.339ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 68.252ms - CloseTime: 28.632us - GetBlockTime: 67.276ms - OpenTime: 3.831us - PrepareTime: 45.35us - SinkTime: 477.258us - GetBlockCounter: 69 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.842ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 706.220ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 444.365us - InputRows: 174.261K (174261) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.205us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 27.895us - ExecTime: 66.776ms - InitProbeSideTime: 33.18ms - JoinFilterTimer: 8.189us - MemoryUsage: - PeakMemoryUsage: 108.00 KB - ProbeKeyArena: 108.00 KB - OpenTime: 13.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.561us - ProbeFindNextTime: 0ns - ProbeRows: 174.261K (174261) - ProbeTime: 62.780ms - ProbeWhenBuildSideOutputTime: 476.993us - ProbeWhenProbeSideOutputTime: 6.145ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.631ms - ProjectionTime: 3.757ms - RowsProduced: 174.261K (174261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 305.192us - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 1.99 MB - OpenTime: 510ns - ProjectionTime: 0ns - RowsProduced: 174.261K (174261) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s82ms PipelineXTask (index=11):(Active: 52.180ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 52.101ms - CloseTime: 21.303us - GetBlockTime: 50.911ms - OpenTime: 6.108us - PrepareTime: 42.374us - SinkTime: 721.636us - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.334ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 926.805ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 689.231us - InputRows: 172.916K (172916) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.878us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 17.964us - ExecTime: 50.294ms - InitProbeSideTime: 2.911ms - JoinFilterTimer: 7.74us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 18.196us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.697us - ProbeFindNextTime: 0ns - ProbeRows: 172.916K (172916) - ProbeTime: 45.832ms - ProbeWhenBuildSideOutputTime: 462.516us - ProbeWhenProbeSideOutputTime: 4.961ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.94ms - ProjectionTime: 4.232ms - RowsProduced: 172.916K (172916) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 395.796us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 2.60 MB - OpenTime: 476ns - ProjectionTime: 0ns - RowsProduced: 172.916K (172916) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 849.996ms PipelineXTask (index=16):(Active: 33.54ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.967ms - CloseTime: 31.910us - GetBlockTime: 32.190ms - OpenTime: 7.888us - PrepareTime: 40.974us - SinkTime: 445.795us - GetBlockCounter: 59 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.980ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s153ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 415.310us - InputRows: 174.499K (174499) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.367us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 29.88us - ExecTime: 31.771ms - InitProbeSideTime: 2.832ms - JoinFilterTimer: 7.56us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.374us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.255us - ProbeFindNextTime: 0ns - ProbeRows: 174.499K (174499) - ProbeTime: 27.825ms - ProbeWhenBuildSideOutputTime: 366.730us - ProbeWhenProbeSideOutputTime: 7.205ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.176ms - ProjectionTime: 3.750ms - RowsProduced: 174.499K (174499) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 295.965us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 5.20 MB - OpenTime: 452ns - ProjectionTime: 0ns - RowsProduced: 174.499K (174499) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 628.86ms PipelineXTask (index=21):(Active: 17.901ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.810ms - CloseTime: 24.109us - GetBlockTime: 17.224ms - OpenTime: 3.758us - PrepareTime: 56.358us - SinkTime: 338.301us - GetBlockCounter: 57 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.846ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s173ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 315.47us - InputRows: 169.353K (169353) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.89us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 22.919us - ExecTime: 16.882ms - InitProbeSideTime: 2.621ms - JoinFilterTimer: 6.607us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 20.950us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.626us - ProbeFindNextTime: 0ns - ProbeRows: 169.353K (169353) - ProbeTime: 13.117ms - ProbeWhenBuildSideOutputTime: 398.880us - ProbeWhenProbeSideOutputTime: 6.16ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.43ms - ProjectionTime: 3.588ms - RowsProduced: 169.353K (169353) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 246.757us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 5.17 MB - OpenTime: 470ns - ProjectionTime: 0ns - RowsProduced: 169.353K (169353) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 624.565ms PipelineXTask (index=26):(Active: 28.765ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 28.695ms - CloseTime: 19.953us - GetBlockTime: 27.765ms - OpenTime: 2.147us - PrepareTime: 40.764us - SinkTime: 513.800us - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.625ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 962.522ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 480.661us - InputRows: 163.789K (163789) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.80us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 16.606us - ExecTime: 27.325ms - InitProbeSideTime: 13.880ms - JoinFilterTimer: 7.522us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 20.338us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.140us - ProbeFindNextTime: 0ns - ProbeRows: 163.789K (163789) - ProbeTime: 23.592ms - ProbeWhenBuildSideOutputTime: 442.350us - ProbeWhenProbeSideOutputTime: 4.567ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.265ms - ProjectionTime: 3.508ms - RowsProduced: 163.789K (163789) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 286.680us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 2.60 MB - OpenTime: 511ns - ProjectionTime: 0ns - RowsProduced: 163.789K (163789) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 894.197ms PipelineXTask (index=31):(Active: 30.638ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 30.529ms - CloseTime: 56.470us - GetBlockTime: 29.709ms - OpenTime: 4.882us - PrepareTime: 41.190us - SinkTime: 493.544us - GetBlockCounter: 55 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.551ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s320ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 456.557us - InputRows: 169.607K (169607) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.348us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 53.919us - ExecTime: 29.356ms - InitProbeSideTime: 15.890ms - JoinFilterTimer: 7.886us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 9.467us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.886us - ProbeFindNextTime: 0ns - ProbeRows: 169.607K (169607) - ProbeTime: 25.475ms - ProbeWhenBuildSideOutputTime: 411.142us - ProbeWhenProbeSideOutputTime: 4.495ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.404ms - ProjectionTime: 3.646ms - RowsProduced: 169.607K (169607) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 269.397us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 4.56 MB - OpenTime: 3.448us - ProjectionTime: 0ns - RowsProduced: 169.607K (169607) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 650.495ms PipelineXTask (index=36):(Active: 14.967ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 14.812ms - CloseTime: 20.407us - GetBlockTime: 14.319ms - OpenTime: 4.447us - PrepareTime: 122.487us - SinkTime: 265.836us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.928ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s201ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 244.92us - InputRows: 167.028K (167028) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.70us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 17.244us - ExecTime: 14.71ms - InitProbeSideTime: 2.918ms - JoinFilterTimer: 5.695us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 81.337us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.766us - ProbeFindNextTime: 0ns - ProbeRows: 167.028K (167028) - ProbeTime: 10.745ms - ProbeWhenBuildSideOutputTime: 338.368us - ProbeWhenProbeSideOutputTime: 3.512ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.899ms - ProjectionTime: 3.106ms - RowsProduced: 167.028K (167028) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 27.676ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 238.314us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 8.64 MB - OpenTime: 804ns - ProjectionTime: 0ns - RowsProduced: 167.028K (167028) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 621.840ms PipelineXTask (index=41):(Active: 31.682ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.602ms - CloseTime: 25.451us - GetBlockTime: 30.982ms - OpenTime: 5.440us - PrepareTime: 42.618us - SinkTime: 411.603us - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.620ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s351ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 376.313us - InputRows: 163.087K (163087) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.146us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 22.460us - ExecTime: 30.645ms - InitProbeSideTime: 2.842ms - JoinFilterTimer: 6.571us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.508us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.730us - ProbeFindNextTime: 0ns - ProbeRows: 163.087K (163087) - ProbeTime: 14.322ms - ProbeWhenBuildSideOutputTime: 357.736us - ProbeWhenProbeSideOutputTime: 7.137ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.954ms - ProjectionTime: 16.124ms - RowsProduced: 163.087K (163087) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 253.680us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 5.49 MB - OpenTime: 477ns - ProjectionTime: 0ns - RowsProduced: 163.087K (163087) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 493.625ms PipelineXTask (index=46):(Active: 26.91ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 25.969ms - CloseTime: 55.131us - GetBlockTime: 25.223ms - OpenTime: 6.863us - PrepareTime: 51.78us - SinkTime: 400.973us - GetBlockCounter: 58 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.960ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 924.280ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 365.398us - InputRows: 149.677K (149677) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.311us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 53.638us - ExecTime: 24.872ms - InitProbeSideTime: 2.715ms - JoinFilterTimer: 7.333us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 15.802us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.534us - ProbeFindNextTime: 0ns - ProbeRows: 149.677K (149677) - ProbeTime: 21.296ms - ProbeWhenBuildSideOutputTime: 397.883us - ProbeWhenProbeSideOutputTime: 13.765ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.31ms - ProjectionTime: 3.348ms - RowsProduced: 149.677K (149677) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 266.314us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 3.18 MB - OpenTime: 2.948us - ProjectionTime: 0ns - RowsProduced: 149.677K (149677) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 936.707ms PipelineXTask (index=51):(Active: 36.548ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.438ms - CloseTime: 18.225us - GetBlockTime: 35.630ms - OpenTime: 3.606us - PrepareTime: 79.80us - SinkTime: 393.693us - GetBlockCounter: 58 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.920ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 689.947ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 362.106us - InputRows: 146.175K (146175) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.120us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 14.760us - ExecTime: 35.228ms - InitProbeSideTime: 2.701ms - JoinFilterTimer: 7.60us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 40.338us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.749us - ProbeFindNextTime: 0ns - ProbeRows: 146.175K (146175) - ProbeTime: 12.223ms - ProbeWhenBuildSideOutputTime: 532.54us - ProbeWhenProbeSideOutputTime: 4.684ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.78ms - ProjectionTime: 22.780ms - RowsProduced: 146.175K (146175) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 272.181us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 765ns - ProjectionTime: 0ns - RowsProduced: 146.175K (146175) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s130ms PipelineXTask (index=56):(Active: 48.748ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 48.657ms - CloseTime: 38.223us - GetBlockTime: 14.575ms - OpenTime: 2.56us - PrepareTime: 43.700us - SinkTime: 33.789ms - GetBlockCounter: 53 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.201ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 907.373ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 33.768ms - InputRows: 139.856K (139856) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.312us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 37.121us - ExecTime: 14.274ms - InitProbeSideTime: 2.422ms - JoinFilterTimer: 6.440us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 15.551us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.575us - ProbeFindNextTime: 0ns - ProbeRows: 139.856K (139856) - ProbeTime: 11.5ms - ProbeWhenBuildSideOutputTime: 349.327us - ProbeWhenProbeSideOutputTime: 4.443ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.698ms - ProjectionTime: 3.62ms - RowsProduced: 139.856K (139856) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 205.684us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 3.02 MB - OpenTime: 494ns - ProjectionTime: 0ns - RowsProduced: 139.856K (139856) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 931.46ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 703.817us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 295.908us - CloseTime: 19.783us - GetBlockTime: 27.713us - OpenTime: 205.333us - PrepareTime: 171.775us - SinkTime: 38.393us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 673.238us - WaitBfTime: 161.41ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.145ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.461us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.981us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 21.227us - BlocksProduced: 0 - CloseTime: 17.456us - ExecTime: 171.641ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 281.932us - ProcessConjunctTime: 105.5us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 170.762ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 171.315ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PerScannerRunningTime: [2.837us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [170.762ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 487.337us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 63ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 550.431us - ScannerCtxSchedTime: 170.760ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.831us - ScannerInitTime: 58.794us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 811ns - BlockConditionsFilteredBloomFilterTime: 1.591us - BlockConditionsFilteredDictTime: 174.694us - BlockConditionsFilteredTime: 205.501us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.968us - BlockInitSeekCount: 9 - BlockInitSeekTime: 12.989us - BlockInitTime: 256.55us - BlockLoadTime: 284.572us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 556ns - IOTimer: 0ns - InvertedIndexFilterTime: 2.47us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.23ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 472.855us - CloseTime: 48.908us - GetBlockTime: 87.948us - OpenTime: 324.674us - PrepareTime: 165.882us - SinkTime: 25.661us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 960.529us - WaitBfTime: 194.790ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.741ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 26.985us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.572us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.380us - BlocksProduced: 2 - CloseTime: 46.9us - ExecTime: 262.513ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 446.127us - ProcessConjunctTime: 139.588us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 207.253ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.935ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [52.918ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [207.253ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 50.707ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.170ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 313ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.677ms - ScannerCtxSchedTime: 207.249ms - ScannerFilterTime: 69.526us - ScannerGetBlockTime: 52.812ms - ScannerInitTime: 119.510us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.933us - BlockConditionsFilteredBloomFilterTime: 5.646us - BlockConditionsFilteredDictTime: 167.753us - BlockConditionsFilteredTime: 248.562us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.867us - BlockInitSeekCount: 37 - BlockInitSeekTime: 248.434us - BlockInitTime: 595.264us - BlockLoadTime: 53.291ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 46.983us - FirstReadTime: 989.528us - IOTimer: 0ns - InvertedIndexFilterTime: 10.634us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 50.469ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 83.772us - OutputIndexResultColumnTimer: 10.931us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 580.593K (580593) - RowsShortCircuitPredInput: 581.176K (581176) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 703.340us - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 53.614us PipelineXTask (index=12):(Active: 1.475ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 880.530us - CloseTime: 36.207us - GetBlockTime: 222.10us - OpenTime: 409.440us - PrepareTime: 139.864us - SinkTime: 151.659us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.415ms - WaitBfTime: 163.26ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 697.590ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 145.926us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 877ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 52.391us - BlocksProduced: 10 - CloseTime: 33.317us - ExecTime: 482.248ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 494.13us - ProcessConjunctTime: 199.539us - ProjectionTime: 0ns - RowsProduced: 25.619K (25619) - RowsRead: 25.619K (25619) - RuntimeFilterInfo: - filter id = -1 filtered: 2.910612M (2910612) - filter id = -1 input: 2.96185M (2961850) - ScannerWorkerWaitTime: 332.814ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 481.506ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [142.313ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [332.814ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 140.240ms - MemoryUsage: - FreeBlocks: 888.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.856ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.90us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 77.359ms - ScannerCtxSchedTime: 332.803ms - ScannerFilterTime: 364.514us - ScannerGetBlockTime: 141.769ms - ScannerInitTime: 124.377us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.290us - BlockConditionsFilteredBloomFilterTime: 2.563us - BlockConditionsFilteredDictTime: 182.281us - BlockConditionsFilteredTime: 246.620us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.693us - BlockInitSeekCount: 17 - BlockInitSeekTime: 25.486us - BlockInitTime: 340.96us - BlockLoadTime: 142.543ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 124.440us - FirstReadTime: 2.988ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.10us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 105.768ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 702.412us - OutputIndexResultColumnTimer: 49.490us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.455306M (1455306) - RowsShortCircuitPredInput: 1.480925M (1480925) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 30.936ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 150.476us PipelineXTask (index=17):(Active: 11.57ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 10.503ms - CloseTime: 61.949us - GetBlockTime: 9.791ms - OpenTime: 318.500us - PrepareTime: 164.81us - SinkTime: 250.830us - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.695ms - WaitBfTime: 139.971ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s69ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 239.708us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 975ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 38.573us - BlocksProduced: 35 - CloseTime: 58.587us - ExecTime: 587.873ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 437.493us - ProcessConjunctTime: 135.561us - ProjectionTime: 0ns - RowsProduced: 128.11K (128110) - RowsRead: 128.11K (128110) - RuntimeFilterInfo: - filter id = -1 filtered: 2.991358M (2991358) - filter id = -1 input: 3.247578M (3247578) - ScannerWorkerWaitTime: 360.64ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 577.600ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [218.680ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [360.064ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 216.4ms - MemoryUsage: - FreeBlocks: 2.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 899.571us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.900us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.564ms - ScannerCtxSchedTime: 360.47ms - ScannerFilterTime: 446.118us - ScannerGetBlockTime: 218.28ms - ScannerInitTime: 117.534us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 1.869us - BlockConditionsFilteredBloomFilterTime: 4.904us - BlockConditionsFilteredDictTime: 103.555us - BlockConditionsFilteredTime: 178.788us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.334us - BlockInitSeekCount: 26 - BlockInitSeekTime: 41.686us - BlockInitTime: 309.671us - BlockLoadTime: 217.541ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 136.674us - FirstReadTime: 3.309ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.265us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 205.894ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.142ms - OutputIndexResultColumnTimer: 59.242us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.495679M (1495679) - RowsShortCircuitPredInput: 1.623789M (1623789) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.455ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 195.865us PipelineXTask (index=22):(Active: 9.861ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.344ms - CloseTime: 56.490us - GetBlockTime: 8.712ms - OpenTime: 310.556us - PrepareTime: 137.824us - SinkTime: 181.633us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.581ms - WaitBfTime: 161.900ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 612.460ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 172.520us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.755us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 35.584us - BlocksProduced: 48 - CloseTime: 53.106us - ExecTime: 801.32ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 399.339us - ProcessConjunctTime: 134.761us - ProjectionTime: 0ns - RowsProduced: 167.427K (167427) - RowsRead: 167.427K (167427) - RuntimeFilterInfo: - filter id = -1 filtered: 2.754106M (2754106) - filter id = -1 input: 3.08896M (3088960) - ScannerWorkerWaitTime: 424.891ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 791.880ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [241.323ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [424.891ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 238.657ms - MemoryUsage: - FreeBlocks: 2.98 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 120.546ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.348us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 113.943ms - ScannerCtxSchedTime: 424.875ms - ScannerFilterTime: 445.780us - ScannerGetBlockTime: 240.686ms - ScannerInitTime: 107.64us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.272us - BlockConditionsFilteredBloomFilterTime: 2.745us - BlockConditionsFilteredDictTime: 114.930us - BlockConditionsFilteredTime: 172.749us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.681us - BlockInitSeekCount: 25 - BlockInitSeekTime: 22.59us - BlockInitTime: 270.795us - BlockLoadTime: 360.9ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 151.139us - FirstReadTime: 16.296ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.555us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 334.798ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.615ms - OutputIndexResultColumnTimer: 54.228us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.377053M (1377053) - RowsShortCircuitPredInput: 1.54448M (1544480) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.965ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 167.264us PipelineXTask (index=27):(Active: 2.5ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.504ms - CloseTime: 65.463us - GetBlockTime: 697.275us - OpenTime: 251.300us - PrepareTime: 167.453us - SinkTime: 321.288us - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.907ms - WaitBfTime: 162.152ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 635.899ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 304.656us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 940ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.14us - BlocksProduced: 76 - CloseTime: 62.187us - ExecTime: 809.48ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 357.952us - ProcessConjunctTime: 124.702us - ProjectionTime: 0ns - RowsProduced: 273.17K (273170) - RowsRead: 273.17K (273170) - RuntimeFilterInfo: - filter id = -1 filtered: 2.741612M (2741612) - filter id = -1 input: 3.287952M (3287952) - ScannerWorkerWaitTime: 485.744ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 807.948ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [250.680ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [485.744ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 246.404ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.505ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.431us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 135.242ms - ScannerCtxSchedTime: 485.718ms - ScannerFilterTime: 547.744us - ScannerGetBlockTime: 249.891ms - ScannerInitTime: 67.183us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 1.951us - BlockConditionsFilteredBloomFilterTime: 5.480us - BlockConditionsFilteredDictTime: 244.460us - BlockConditionsFilteredTime: 324.89us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 43.213us - BlockInitSeekCount: 31 - BlockInitSeekTime: 33.357us - BlockInitTime: 458.351us - BlockLoadTime: 280.760ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 194.674us - FirstReadTime: 3.579ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.556us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 264.701ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 4.134ms - OutputIndexResultColumnTimer: 56.955us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.370806M (1370806) - RowsShortCircuitPredInput: 1.643976M (1643976) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.560ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 190.631us PipelineXTask (index=32):(Active: 2.620ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.998ms - CloseTime: 69.167us - GetBlockTime: 872.404us - OpenTime: 321.896us - PrepareTime: 219.193us - SinkTime: 579.217us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.521ms - WaitBfTime: 186.871ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 702.464ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 559.906us - InputRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 910ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.227us - BlocksProduced: 91 - CloseTime: 66.503us - ExecTime: 817.525ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 493.986us - ProcessConjunctTime: 170.496us - ProjectionTime: 0ns - RowsProduced: 329.927K (329927) - RowsRead: 329.927K (329927) - RuntimeFilterInfo: - filter id = -1 filtered: 2.096866M (2096866) - filter id = -1 input: 2.75672M (2756720) - ScannerWorkerWaitTime: 405.665ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 816.129ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [296.920ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [405.665ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 291.852ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.280ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.290us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 126.817ms - ScannerCtxSchedTime: 405.655ms - ScannerFilterTime: 538.617us - ScannerGetBlockTime: 296.191ms - ScannerInitTime: 95.689us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 2.119us - BlockConditionsFilteredBloomFilterTime: 6.650us - BlockConditionsFilteredDictTime: 233.321us - BlockConditionsFilteredTime: 331.391us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 47.929us - BlockInitSeekCount: 35 - BlockInitSeekTime: 36.799us - BlockInitTime: 505.790us - BlockLoadTime: 295.865ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 140.584us - FirstReadTime: 3.89ms - IOTimer: 0ns - InvertedIndexFilterTime: 18.557us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 278.723ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.259ms - OutputIndexResultColumnTimer: 60.803us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.048433M (1048433) - RowsShortCircuitPredInput: 1.37836M (1378360) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.870ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 173.731us PipelineXTask (index=37):(Active: 17.514ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 16.980ms - CloseTime: 67.324us - GetBlockTime: 802.273us - OpenTime: 321.413us - PrepareTime: 136.530us - SinkTime: 546.481us - GetBlockCounter: 113 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.332ms - WaitBfTime: 159.445ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 590.39ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 528.938us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.615us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 23.461us - BlocksProduced: 113 - CloseTime: 64.457us - ExecTime: 844.688ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 404.884us - ProcessConjunctTime: 154.346us - ProjectionTime: 0ns - RowsProduced: 394.725K (394725) - RowsRead: 394.725K (394725) - RuntimeFilterInfo: - filter id = -1 filtered: 2.268508M (2268508) - filter id = -1 input: 3.057958M (3057958) - ScannerWorkerWaitTime: 485.552ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 843.438ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [330.100ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [485.552ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 326.17ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.263ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.424us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 144.505ms - ScannerCtxSchedTime: 485.543ms - ScannerFilterTime: 545.711us - ScannerGetBlockTime: 329.371ms - ScannerInitTime: 124.455us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 1.609us - BlockConditionsFilteredBloomFilterTime: 5.6us - BlockConditionsFilteredDictTime: 170.31us - BlockConditionsFilteredTime: 254.607us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.551us - BlockInitSeekCount: 33 - BlockInitSeekTime: 32.62us - BlockInitTime: 380.723us - BlockLoadTime: 329.196ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 141.220us - FirstReadTime: 3.231ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.775us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 283.114ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 33.61ms - OutputIndexResultColumnTimer: 59.965us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.134254M (1134254) - RowsShortCircuitPredInput: 1.528979M (1528979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.745ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 189.13us PipelineXTask (index=42):(Active: 1.647ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.226ms - CloseTime: 41.747us - GetBlockTime: 529.867us - OpenTime: 176.415us - PrepareTime: 191.302us - SinkTime: 355.782us - GetBlockCounter: 69 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.586ms - WaitBfTime: 136.332ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 592.447ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 336.606us - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.28us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 23.626us - BlocksProduced: 69 - CloseTime: 38.915us - ExecTime: 743.710ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 264.778us - ProcessConjunctTime: 92.660us - ProjectionTime: 0ns - RowsProduced: 249.28K (249280) - RowsRead: 249.28K (249280) - RuntimeFilterInfo: - filter id = -1 filtered: 1.574774M (1574774) - filter id = -1 input: 2.073334M (2073334) - ScannerWorkerWaitTime: 420.270ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 742.889ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [216.311ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [420.270ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 213.349ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.181ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.673us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.947ms - ScannerCtxSchedTime: 420.260ms - ScannerFilterTime: 432.829us - ScannerGetBlockTime: 215.720ms - ScannerInitTime: 46.867us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.703us - BlockConditionsFilteredBloomFilterTime: 4.798us - BlockConditionsFilteredDictTime: 114.783us - BlockConditionsFilteredTime: 185.954us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.519us - BlockInitSeekCount: 25 - BlockInitSeekTime: 248.112us - BlockInitTime: 537.864us - BlockLoadTime: 215.686ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 105.189us - FirstReadTime: 2.469ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.703us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 146.738ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.316ms - OutputIndexResultColumnTimer: 52.884us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 787.387K (787387) - RowsShortCircuitPredInput: 1.036667M (1036667) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 59.842ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 129.456us PipelineXTask (index=47):(Active: 1.823ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.420ms - CloseTime: 51.611us - GetBlockTime: 697.776us - OpenTime: 199.475us - PrepareTime: 142.428us - SinkTime: 328.368us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.748ms - WaitBfTime: 162.460ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 464.305ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 314.527us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 938ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.602us - BlocksProduced: 96 - CloseTime: 48.265us - ExecTime: 941.123ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 291.896us - ProcessConjunctTime: 97.852us - ProjectionTime: 0ns - RowsProduced: 325.275K (325275) - RowsRead: 325.275K (325275) - RuntimeFilterInfo: - filter id = -1 filtered: 1.675472M (1675472) - filter id = -1 input: 2.326022M (2326022) - ScannerWorkerWaitTime: 456.932ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 940.108ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [472.316ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [456.932ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 469.693ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 995.113us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.687us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 101.87ms - ScannerCtxSchedTime: 456.922ms - ScannerFilterTime: 431.281us - ScannerGetBlockTime: 471.734ms - ScannerInitTime: 56.986us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.267us - BlockConditionsFilteredBloomFilterTime: 9.474us - BlockConditionsFilteredDictTime: 84.445us - BlockConditionsFilteredTime: 153.799us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.813us - BlockInitSeekCount: 26 - BlockInitSeekTime: 437.476us - BlockInitTime: 681.778us - BlockLoadTime: 471.539ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 120.454us - FirstReadTime: 2.428ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.707us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 223.523ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 207.271ms - OutputIndexResultColumnTimer: 40.809us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 837.736K (837736) - RowsShortCircuitPredInput: 1.163011M (1163011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.587ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 131.267us PipelineXTask (index=52):(Active: 1.399ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 676.18us - CloseTime: 70.88us - GetBlockTime: 97.774us - OpenTime: 478.351us - PrepareTime: 164.214us - SinkTime: 62.465us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.315ms - WaitBfTime: 194.137ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.392ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 61.756us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 964ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 72.403us - BlocksProduced: 9 - CloseTime: 66.671us - ExecTime: 198.834ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 578.136us - ProcessConjunctTime: 230.854us - ProjectionTime: 0ns - RowsProduced: 32.142K (32142) - RowsRead: 32.142K (32142) - RuntimeFilterInfo: - filter id = -1 filtered: 389.738K (389738) - filter id = -1 input: 454.022K (454022) - ScannerWorkerWaitTime: 147.22ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 198.94ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [47.231ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [147.022ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 47.13ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 637.112us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 354ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.185ms - ScannerCtxSchedTime: 147.21ms - ScannerFilterTime: 42.835us - ScannerGetBlockTime: 47.161ms - ScannerInitTime: 142.693us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 275ns - BlockConditionsFilteredBloomFilterTime: 738ns - BlockConditionsFilteredDictTime: 14.574us - BlockConditionsFilteredTime: 26.691us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.368us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.603us - BlockInitTime: 51.538us - BlockLoadTime: 47.500ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 18.954us - FirstReadTime: 420.895us - IOTimer: 0ns - InvertedIndexFilterTime: 883ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 45.697ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 410.145us - OutputIndexResultColumnTimer: 6.300us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 194.869K (194869) - RowsShortCircuitPredInput: 227.011K (227011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 642.481us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 24.37us PipelineXTask (index=57):(Active: 1.252ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 678.768us - CloseTime: 41.442us - GetBlockTime: 123.575us - OpenTime: 359.381us - PrepareTime: 164.108us - SinkTime: 163.708us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.199ms - WaitBfTime: 193.29ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.759ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 162.444us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.2us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 36, type = minmax), RuntimeFilter: (id = 37, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 56.124us - BlocksProduced: 10 - CloseTime: 37.663us - ExecTime: 179.449ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 461.238us - ProcessConjunctTime: 151.242us - ProjectionTime: 0ns - RowsProduced: 36.782K (36782) - RowsRead: 36.782K (36782) - RuntimeFilterInfo: - filter id = -1 filtered: 412.336K (412336) - filter id = -1 input: 485.9K (485900) - ScannerWorkerWaitTime: 156.177ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 178.829ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 36, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 37, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [20.381ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [156.177ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.188ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 764.193us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 509ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.322ms - ScannerCtxSchedTime: 156.175ms - ScannerFilterTime: 42.433us - ScannerGetBlockTime: 20.314ms - ScannerInitTime: 119.613us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 552ns - BlockConditionsFilteredBloomFilterTime: 1.213us - BlockConditionsFilteredDictTime: 30.618us - BlockConditionsFilteredTime: 49.950us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.582us - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.146us - BlockInitTime: 82.827us - BlockLoadTime: 20.800ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 23.974us - FirstReadTime: 471.764us - IOTimer: 0ns - InvertedIndexFilterTime: 2.470us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 18.781ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 454.899us - OutputIndexResultColumnTimer: 8.330us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 206.168K (206168) - RowsShortCircuitPredInput: 242.95K (242950) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 743.698us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 35.953us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 11.833ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.748ms - CloseTime: 14.109us - GetBlockTime: 16.932us - OpenTime: 3.55us - PrepareTime: 62.58us - SinkTime: 11.707ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 239.889us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.158ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.588us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.127us - BuildTableInsertTime: 11.607ms - BuildTableTime: 11.616ms - CloseTime: 0ns - ExecTime: 11.727ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 21.37us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.797us - RuntimeFilterComputeTime: 19.838us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=99): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.711us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.454us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 16.464us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 125.31ms PipelineXTask (index=8):(Active: 135.808us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.873us - CloseTime: 7.700us - GetBlockTime: 0ns - OpenTime: 2.467us - PrepareTime: 87.817us - SinkTime: 16.135us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.262us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.309ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.92us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.208us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 150.405ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.966us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 36.995us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 140.197us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 59.893us - CloseTime: 14.935us - GetBlockTime: 0ns - OpenTime: 2.411us - PrepareTime: 59.111us - SinkTime: 39.767us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.61us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.714ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 59.293us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.700us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 138.554ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.492us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.140us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 129.54us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.974us - CloseTime: 13.167us - GetBlockTime: 0ns - OpenTime: 2.693us - PrepareTime: 60.140us - SinkTime: 30.545us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.27us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.431ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.791us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.535us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 131.213ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.114us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.911us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 186.601us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.741us - CloseTime: 11.359us - GetBlockTime: 0ns - OpenTime: 2.529us - PrepareTime: 124.278us - SinkTime: 26.153us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 168.695us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.923ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 102.686us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 76.807us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 152.348ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.532us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.347us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 105.904us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.775us - CloseTime: 4.616us - GetBlockTime: 0ns - OpenTime: 2.474us - PrepareTime: 60.93us - SinkTime: 17.177us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.36ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.738us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.900us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 152.285ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.110us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 169.90us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.244us - CloseTime: 11.68us - GetBlockTime: 0ns - OpenTime: 3.240us - PrepareTime: 105.640us - SinkTime: 19.727us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.31us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.0ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 51.196us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.468us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 152.534ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.231us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.482us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 44.440us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 116.218us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.441us - CloseTime: 8.449us - GetBlockTime: 0ns - OpenTime: 1.379us - PrepareTime: 68.615us - SinkTime: 21.218us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.527us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.779ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.581us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.678us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 138.541ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.493us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.990us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.810us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 111.75us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.947us - CloseTime: 6.281us - GetBlockTime: 0ns - OpenTime: 4.495us - PrepareTime: 59.414us - SinkTime: 11.950us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.52us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.479ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.947us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.924us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 137.202ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.218us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.411us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.259us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 113.290us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.926us - CloseTime: 4.419us - GetBlockTime: 0ns - OpenTime: 2.284us - PrepareTime: 67.364us - SinkTime: 16.954us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.517us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.927ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.146us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.507us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 150.394ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.927us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.868us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 162.29us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 86.316us - CloseTime: 4.567us - GetBlockTime: 0ns - OpenTime: 2.237us - PrepareTime: 58.208us - SinkTime: 14.109us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.811us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.82ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.877us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.669us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 152.272ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.232us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.228us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 154.66us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 65.496us - CloseTime: 21.780us - GetBlockTime: 0ns - OpenTime: 2.670us - PrepareTime: 58.916us - SinkTime: 40.316us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.10us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.864ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 61.452us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 152.523ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.160us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.146us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.116us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 172.568ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 172.493ms - CloseTime: 14.785us - GetBlockTime: 169.171us - OpenTime: 2.543us - PrepareTime: 52.897us - SinkTime: 172.262ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 4.703ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.332ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 5.818us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 122.103ms - BuildTableInsertTime: 50.18ms - BuildTableTime: 50.84ms - CloseTime: 0ns - ExecTime: 172.267ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 10.623us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=101): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 10.901us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 185.789us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 1.26 MB - PeakMemoryUsage: 700.00 KB - OpenTime: 14.335us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 124.75ms PipelineXTask (index=9):(Active: 99.323us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.273us - CloseTime: 15.948us - GetBlockTime: 0ns - OpenTime: 2.463us - PrepareTime: 48.832us - SinkTime: 11.350us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.665us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.594ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.192us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.937us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 351.562ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.37us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.302us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.403us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 106.413us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.774us - CloseTime: 21.306us - GetBlockTime: 0ns - OpenTime: 1.427us - PrepareTime: 36.328us - SinkTime: 25.912us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.912us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.744ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.383us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.199us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 337.500ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.105us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.847us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.268us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 213.294us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.148us - CloseTime: 20.972us - GetBlockTime: 0ns - OpenTime: 2.315us - PrepareTime: 134.576us - SinkTime: 31.551us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 186.132us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.509ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 120.839us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 89.684us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 330.146ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.536us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.166us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.828us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 104.470us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.786us - CloseTime: 8.298us - GetBlockTime: 0ns - OpenTime: 2.682us - PrepareTime: 69.210us - SinkTime: 4.359us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.415us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.367ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.951us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.511us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 349.360ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.552us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.482us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.212us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 114.579us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.843us - CloseTime: 3.17us - GetBlockTime: 0ns - OpenTime: 4.185us - PrepareTime: 47.588us - SinkTime: 11.742us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.555us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.535ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 20.799us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.816us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 342.179ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.121us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.431us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.280us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 77.868us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.321us - CloseTime: 3.123us - GetBlockTime: 0ns - OpenTime: 3.30us - PrepareTime: 41.307us - SinkTime: 6.34us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.745us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.631ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.862us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.958us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 342.155ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.840us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.862us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 83.553us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.632us - CloseTime: 15.489us - GetBlockTime: 0ns - OpenTime: 1.161us - PrepareTime: 43.388us - SinkTime: 9.838us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.914us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.801ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.262us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.657us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 337.487ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.65us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.495us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.930us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 85.780us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.115us - CloseTime: 4.615us - GetBlockTime: 0ns - OpenTime: 2.548us - PrepareTime: 46.702us - SinkTime: 8.299us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.269us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.607ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.433us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.375us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 334.96ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.435us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.92us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.973us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 94.338us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.37us - CloseTime: 4.278us - GetBlockTime: 0ns - OpenTime: 2.525us - PrepareTime: 48.41us - SinkTime: 4.955us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.469us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.405ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.692us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.844us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 349.354ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.98us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.533us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 73.765us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.132us - CloseTime: 2.668us - GetBlockTime: 0ns - OpenTime: 3.120us - PrepareTime: 38.654us - SinkTime: 5.652us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.593us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.633ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 10.470us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.72us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 342.175ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.440us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.10us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 76.570us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.370us - CloseTime: 5.800us - GetBlockTime: 0ns - OpenTime: 2.640us - PrepareTime: 37.978us - SinkTime: 7.430us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.678us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.641ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf2689630a0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.806us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.286us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 334.84ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.11us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.528us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 113: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 7.26ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.803ms - CloseTime: 35.874us - GetBlockTime: 82.633us - OpenTime: 3.30ms - PrepareTime: 150.661us - SinkTime: 660.452us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.121ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.212ms DATA_STREAM_SINK_OPERATOR (id=101,dst_id=101): - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.850us - CompressTime: 0ns - ExecTime: 704.359us - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 640.415us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 36.300us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 43.597K (43597) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=100. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 538ns - BlocksProduced: 11 - CloseTime: 17.297us - ExecTime: 109.432ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 3.89ms - ProcessConjunctTime: 23.830us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 104.712ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 106.244ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [581.137us, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [104.712ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 537.329us - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 786.512us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 402ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1.527ms - ScannerCtxSchedTime: 104.710ms - ScannerFilterTime: 5.755us - ScannerGetBlockTime: 570.453us - ScannerInitTime: 2.988ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 111ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.15us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 605.989us - BlockInitTime: 644.508us - BlockLoadTime: 1.254ms - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 9.79us - FirstReadTime: 563.327us - IOTimer: 0ns - InvertedIndexFilterTime: 301ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.78us - OutputIndexResultColumnTimer: 1.637us - RawRowsRead: 43.597K (43597) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 5 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 114: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 374.19us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 127.488us - CloseTime: 37.740us - GetBlockTime: 30.223us - OpenTime: 67.715us - PrepareTime: 135.213us - SinkTime: 12.842us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.561ms DATA_STREAM_SINK_OPERATOR (id=99,dst_id=99): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.142us - CompressTime: 0ns - ExecTime: 50.367us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 9.175us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.467us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=98. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 430ns - BlocksProduced: 1 - CloseTime: 28.387us - ExecTime: 110.52ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 139.0us - ProcessConjunctTime: 19.180us - ProjectionTime: 5.466us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.573ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 109.849ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [31.644us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [109.573ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.181us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 175.634us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 115ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 270.137us - ScannerCtxSchedTime: 109.571ms - ScannerFilterTime: 973ns - ScannerGetBlockTime: 25.481us - ScannerInitTime: 29.311us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 272ns - BlockConditionsFilteredBloomFilterTime: 1.612us - BlockConditionsFilteredDictTime: 4.528us - BlockConditionsFilteredTime: 16.756us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.323us - BlockInitSeekCount: 6 - BlockInitSeekTime: 15.592us - BlockInitTime: 50.209us - BlockLoadTime: 106.904us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 6.267us - FirstReadTime: 9.71us - IOTimer: 0ns - InvertedIndexFilterTime: 1.935us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.247us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 16.802us - OutputIndexResultColumnTimer: 190ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 70ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.318us Fragment 115: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 12.846ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 12.682ms - CloseTime: 22.90us - GetBlockTime: 84.353us - OpenTime: 2.64us - PrepareTime: 133.746us - SinkTime: 12.571ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 505.828us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.191ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.557us - CompressTime: 0ns - ExecTime: 12.685ms - InputRows: 164 - LocalBytesSent: 7.69 KB - LocalSendTime: 12.431ms - LocalSentRows: 164 - MemoryUsage: - PeakMemoryUsage: 15.06 KB - MergeBlockTime: 0ns - OpenTime: 97.669us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 164 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.930us - SplitBlockHashComputeTime: 8.361us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 1.382us - DeserializeAndMergeTime: 0ns - ExecTime: 92.642us - GetResultsTime: 32.547us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.440us - HashTableSize: 164 - InsertKeysToColumnTime: 16.469us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.635us - ProjectionTime: 38.177us - RowsProduced: 164 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s696ms PipelineXTask (index=2):(Active: 408.55us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 282.434us - CloseTime: 15.481us - GetBlockTime: 66.916us - OpenTime: 3.212us - PrepareTime: 101.757us - SinkTime: 191.850us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 385.606us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 778.7us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.370us - CompressTime: 0ns - ExecTime: 278.214us - InputRows: 187 - LocalBytesSent: 8.74 KB - LocalSendTime: 91.354us - LocalSentRows: 187 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 0ns - OpenTime: 73.479us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 187 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.880us - SplitBlockHashComputeTime: 8.974us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 689ns - DeserializeAndMergeTime: 0ns - ExecTime: 74.373us - GetResultsTime: 27.914us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.442us - HashTableSize: 187 - InsertKeysToColumnTime: 11.546us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.206us - ProjectionTime: 24.920us - RowsProduced: 187 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s689ms PipelineXTask (index=4):(Active: 558.976us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 404.672us - CloseTime: 19.640us - GetBlockTime: 121.579us - OpenTime: 3.350us - PrepareTime: 124.902us - SinkTime: 252.280us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 530.766us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.508ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.447us - CompressTime: 0ns - ExecTime: 360.671us - InputRows: 216 - LocalBytesSent: 10.10 KB - LocalSendTime: 96.728us - LocalSentRows: 216 - MemoryUsage: - PeakMemoryUsage: 17.50 KB - MergeBlockTime: 0ns - OpenTime: 92.490us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 216 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.890us - SplitBlockHashComputeTime: 14.374us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 1.7us - DeserializeAndMergeTime: 0ns - ExecTime: 132.256us - GetResultsTime: 50.998us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.783us - HashTableSize: 216 - InsertKeysToColumnTime: 22.791us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.110us - ProjectionTime: 54.956us - RowsProduced: 216 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s687ms PipelineXTask (index=6):(Active: 453.514us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 317.794us - CloseTime: 16.59us - GetBlockTime: 72.561us - OpenTime: 2.960us - PrepareTime: 110.217us - SinkTime: 223.340us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 430.893us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.972ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.276us - CompressTime: 0ns - ExecTime: 307.111us - InputRows: 202 - LocalBytesSent: 9.45 KB - LocalSendTime: 90.657us - LocalSentRows: 202 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 0ns - OpenTime: 70.908us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 202 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.319us - SplitBlockHashComputeTime: 8.140us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 886ns - DeserializeAndMergeTime: 0ns - ExecTime: 86.723us - GetResultsTime: 32.477us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.287us - HashTableSize: 202 - InsertKeysToColumnTime: 13.308us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.381us - ProjectionTime: 28.956us - RowsProduced: 202 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s669ms PipelineXTask (index=8):(Active: 459.708us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 323.124us - CloseTime: 17.390us - GetBlockTime: 74.37us - OpenTime: 4.712us - PrepareTime: 108.298us - SinkTime: 219.448us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 434.542us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.412ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.666us - CompressTime: 0ns - ExecTime: 307.50us - InputRows: 186 - LocalBytesSent: 8.69 KB - LocalSendTime: 94.462us - LocalSentRows: 186 - MemoryUsage: - PeakMemoryUsage: 15.75 KB - MergeBlockTime: 0ns - OpenTime: 73.435us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 186 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 36.858us - SplitBlockHashComputeTime: 8.938us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 842ns - DeserializeAndMergeTime: 0ns - ExecTime: 80.978us - GetResultsTime: 34.660us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.400us - HashTableSize: 186 - InsertKeysToColumnTime: 16.37us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.638us - ProjectionTime: 25.795us - RowsProduced: 186 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s708ms PipelineXTask (index=10):(Active: 455.733us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 338.355us - CloseTime: 12.84us - GetBlockTime: 100.752us - OpenTime: 3.605us - PrepareTime: 96.11us - SinkTime: 217.777us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 436.355us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.737ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.748us - CompressTime: 0ns - ExecTime: 292.150us - InputRows: 201 - LocalBytesSent: 9.39 KB - LocalSendTime: 72.766us - LocalSentRows: 201 - MemoryUsage: - PeakMemoryUsage: 16.94 KB - MergeBlockTime: 0ns - OpenTime: 64.15us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 201 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 45.683us - SplitBlockHashComputeTime: 8.34us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 209ns - DeserializeAndMergeTime: 0ns - ExecTime: 111.435us - GetResultsTime: 62.848us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.103us - HashTableSize: 201 - InsertKeysToColumnTime: 28.962us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.847us - ProjectionTime: 32.434us - RowsProduced: 201 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s708ms PipelineXTask (index=12):(Active: 451.267us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 299.445us - CloseTime: 14.997us - GetBlockTime: 82.118us - OpenTime: 3.20us - PrepareTime: 126.584us - SinkTime: 194.365us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 428.903us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.842ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.550us - CompressTime: 0ns - ExecTime: 301.563us - InputRows: 192 - LocalBytesSent: 8.98 KB - LocalSendTime: 80.877us - LocalSentRows: 192 - MemoryUsage: - PeakMemoryUsage: 16.06 KB - MergeBlockTime: 0ns - OpenTime: 95.68us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 192 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.946us - SplitBlockHashComputeTime: 8.915us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 570ns - DeserializeAndMergeTime: 0ns - ExecTime: 87.682us - GetResultsTime: 41.445us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.100us - HashTableSize: 192 - InsertKeysToColumnTime: 21.904us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.790us - ProjectionTime: 31.440us - RowsProduced: 192 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s690ms PipelineXTask (index=14):(Active: 409.139us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 275.809us - CloseTime: 11.127us - GetBlockTime: 81.571us - OpenTime: 3.68us - PrepareTime: 113.250us - SinkTime: 175.174us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 391.22us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.305ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.800us - CompressTime: 0ns - ExecTime: 249.438us - InputRows: 188 - LocalBytesSent: 8.78 KB - LocalSendTime: 62.591us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 16.00 KB - MergeBlockTime: 0ns - OpenTime: 65.138us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 188 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.267us - SplitBlockHashComputeTime: 7.824us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 294ns - DeserializeAndMergeTime: 0ns - ExecTime: 96.853us - GetResultsTime: 47.223us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.675us - HashTableSize: 188 - InsertKeysToColumnTime: 26.145us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 16.37us - ProjectionTime: 28.137us - RowsProduced: 188 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s709ms PipelineXTask (index=16):(Active: 520.977us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 390.845us - CloseTime: 20.214us - GetBlockTime: 97.545us - OpenTime: 2.800us - PrepareTime: 100.768us - SinkTime: 265.905us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 492.490us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.923ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.896us - CompressTime: 0ns - ExecTime: 350.0us - InputRows: 194 - LocalBytesSent: 9.06 KB - LocalSendTime: 114.338us - LocalSentRows: 194 - MemoryUsage: - PeakMemoryUsage: 16.50 KB - MergeBlockTime: 0ns - OpenTime: 67.936us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 194 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 51.580us - SplitBlockHashComputeTime: 13.551us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 1.84us - DeserializeAndMergeTime: 0ns - ExecTime: 102.533us - GetResultsTime: 53.277us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.544us - HashTableSize: 194 - InsertKeysToColumnTime: 29.77us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.565us - ProjectionTime: 34.38us - RowsProduced: 194 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s689ms PipelineXTask (index=18):(Active: 392.29us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 275.285us - CloseTime: 11.126us - GetBlockTime: 81.856us - OpenTime: 2.883us - PrepareTime: 97.267us - SinkTime: 176.9us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 374.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.235ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.998us - CompressTime: 0ns - ExecTime: 243.722us - InputRows: 192 - LocalBytesSent: 8.98 KB - LocalSendTime: 56.286us - LocalSentRows: 192 - MemoryUsage: - PeakMemoryUsage: 17.00 KB - MergeBlockTime: 0ns - OpenTime: 58.272us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 192 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.90us - SplitBlockHashComputeTime: 8.6us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 363ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.773us - GetResultsTime: 43.560us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.303us - HashTableSize: 192 - InsertKeysToColumnTime: 27.271us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.169us - ProjectionTime: 32.888us - RowsProduced: 192 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s690ms PipelineXTask (index=20):(Active: 418.843us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 249.194us - CloseTime: 22.170us - GetBlockTime: 66.82us - OpenTime: 2.643us - PrepareTime: 138.965us - SinkTime: 166.145us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 389.894us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.523ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.854us - CompressTime: 0ns - ExecTime: 287.784us - InputRows: 188 - LocalBytesSent: 8.79 KB - LocalSendTime: 55.70us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 16.50 KB - MergeBlockTime: 0ns - OpenTime: 101.204us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 188 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.914us - SplitBlockHashComputeTime: 7.262us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 482ns - DeserializeAndMergeTime: 0ns - ExecTime: 81.145us - GetResultsTime: 38.391us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.76us - HashTableSize: 188 - InsertKeysToColumnTime: 21.893us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.239us - ProjectionTime: 23.202us - RowsProduced: 188 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s690ms PipelineXTask (index=22):(Active: 438.694us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 250.806us - CloseTime: 12.391us - GetBlockTime: 70.729us - OpenTime: 3.929us - PrepareTime: 164.728us - SinkTime: 154.723us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 417.246us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 318.403us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.883us - CompressTime: 0ns - ExecTime: 294.460us - InputRows: 205 - LocalBytesSent: 9.58 KB - LocalSendTime: 51.241us - LocalSentRows: 205 - MemoryUsage: - PeakMemoryUsage: 17.00 KB - MergeBlockTime: 0ns - OpenTime: 129.245us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 205 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.539us - SplitBlockHashComputeTime: 8.803us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: 1 - CloseTime: 429ns - DeserializeAndMergeTime: 0ns - ExecTime: 82.517us - GetResultsTime: 27.731us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.157us - HashTableSize: 205 - InsertKeysToColumnTime: 12.624us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.917us - ProjectionTime: 36.347us - RowsProduced: 205 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s691ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 932.723us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 830.186us - CloseTime: 14.131us - GetBlockTime: 93.122us - OpenTime: 4.356us - PrepareTime: 77.477us - SinkTime: 671.365us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 902.419us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.574ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 988ns - DeserializeAndMergeTime: 459.101us - ExecTime: 695.624us - ExprTime: 0ns - HashTableComputeTime: 161.137us - HashTableEmplaceTime: 104.8us - HashTableInputCount: 733 - InputRows: 733 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 655.316us - OpenTime: 25.799us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.755us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 119.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 113.75 KB - MemoryUsage: - Blocks: 28.63 KB - PeakMemoryUsage: 28.63 KB - OpenTime: 25.95us - ProjectionTime: 0ns - RowsProduced: 733 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s676ms PipelineXTask (index=3):(Active: 1.97ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 981.155us - CloseTime: 12.645us - GetBlockTime: 82.744us - OpenTime: 4.196us - PrepareTime: 92.698us - SinkTime: 829.112us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.67ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.149ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.334us - DeserializeAndMergeTime: 511.237us - ExecTime: 883.901us - ExprTime: 0ns - HashTableComputeTime: 271.298us - HashTableEmplaceTime: 176.389us - HashTableInputCount: 807 - InputRows: 807 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 814.603us - OpenTime: 56.670us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.823us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.231us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 140.75 KB - MemoryUsage: - Blocks: 35.88 KB - PeakMemoryUsage: 35.88 KB - OpenTime: 17.492us - ProjectionTime: 0ns - RowsProduced: 807 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s663ms PipelineXTask (index=5):(Active: 806.60us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 730.821us - CloseTime: 3.522us - GetBlockTime: 76.307us - OpenTime: 3.400us - PrepareTime: 62.204us - SinkTime: 601.889us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 787.38us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 61.683ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.116us - DeserializeAndMergeTime: 382.529us - ExecTime: 633.603us - ExprTime: 0ns - HashTableComputeTime: 186.674us - HashTableEmplaceTime: 113.178us - HashTableInputCount: 832 - InputRows: 832 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 591.430us - OpenTime: 32.632us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.403us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 126.00 KB - MemoryUsage: - Blocks: 48.88 KB - PeakMemoryUsage: 48.88 KB - OpenTime: 15.543us - ProjectionTime: 0ns - RowsProduced: 832 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s647ms PipelineXTask (index=7):(Active: 2.168ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.99ms - CloseTime: 6.336us - GetBlockTime: 77.508us - OpenTime: 4.288us - PrepareTime: 53.948us - SinkTime: 1.955ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.669ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 837ns - DeserializeAndMergeTime: 1.719ms - ExecTime: 1.971ms - ExprTime: 0ns - HashTableComputeTime: 189.497us - HashTableEmplaceTime: 118.726us - HashTableInputCount: 958 - InputRows: 958 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 1.939ms - OpenTime: 19.496us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.936us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 311.50 KB - MemoryUsage: - Blocks: 141.38 KB - PeakMemoryUsage: 141.38 KB - OpenTime: 19.807us - ProjectionTime: 0ns - RowsProduced: 958 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s668ms PipelineXTask (index=9):(Active: 838.132us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 746.229us - CloseTime: 3.78us - GetBlockTime: 75.842us - OpenTime: 3.502us - PrepareTime: 78.406us - SinkTime: 619.276us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 821.107us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.284ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 306ns - DeserializeAndMergeTime: 414.277us - ExecTime: 664.764us - ExprTime: 0ns - HashTableComputeTime: 169.843us - HashTableEmplaceTime: 119.300us - HashTableInputCount: 794 - InputRows: 794 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 609.175us - OpenTime: 47.37us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.286us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 130.00 KB - MemoryUsage: - Blocks: 56.88 KB - PeakMemoryUsage: 56.88 KB - OpenTime: 14.397us - ProjectionTime: 0ns - RowsProduced: 794 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s678ms PipelineXTask (index=11):(Active: 729.773us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 658.520us - CloseTime: 4.537us - GetBlockTime: 72.630us - OpenTime: 2.589us - PrepareTime: 58.116us - SinkTime: 541.984us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 712.858us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.522ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 354ns - DeserializeAndMergeTime: 360.925us - ExecTime: 561.249us - ExprTime: 0ns - HashTableComputeTime: 152.324us - HashTableEmplaceTime: 107.356us - HashTableInputCount: 811 - InputRows: 811 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 534.319us - OpenTime: 20.631us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.722us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.273us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 122.00 KB - MemoryUsage: - Blocks: 52.88 KB - PeakMemoryUsage: 52.88 KB - OpenTime: 20.958us - ProjectionTime: 0ns - RowsProduced: 811 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s678ms PipelineXTask (index=13):(Active: 752.854us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 682.27us - CloseTime: 3.263us - GetBlockTime: 85.755us - OpenTime: 2.783us - PrepareTime: 58.974us - SinkTime: 547.829us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 736.781us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.834ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 524ns - DeserializeAndMergeTime: 370.253us - ExecTime: 569.593us - ExprTime: 0ns - HashTableComputeTime: 141.154us - HashTableEmplaceTime: 96.814us - HashTableInputCount: 817 - InputRows: 817 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 536.495us - OpenTime: 24.9us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.257us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 94.608us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 119.00 KB - MemoryUsage: - Blocks: 47.38 KB - PeakMemoryUsage: 47.38 KB - OpenTime: 12.555us - ProjectionTime: 0ns - RowsProduced: 817 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s679ms PipelineXTask (index=15):(Active: 5.23ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.900ms - CloseTime: 3.840us - GetBlockTime: 77.717us - OpenTime: 2.854us - PrepareTime: 109.533us - SinkTime: 4.769ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.434ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 900ns - DeserializeAndMergeTime: 4.559ms - ExecTime: 4.800ms - ExprTime: 0ns - HashTableComputeTime: 165.531us - HashTableEmplaceTime: 114.314us - HashTableInputCount: 832 - InputRows: 832 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 4.757ms - OpenTime: 33.70us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.358us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 130.272us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 454.50 KB - MemoryUsage: - Blocks: 227.25 KB - PeakMemoryUsage: 227.25 KB - OpenTime: 55.897us - ProjectionTime: 0ns - RowsProduced: 832 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s673ms PipelineXTask (index=17):(Active: 820.900us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 748.580us - CloseTime: 6.187us - GetBlockTime: 75.555us - OpenTime: 2.682us - PrepareTime: 58.254us - SinkTime: 629.871us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 802.764us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.42ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 647ns - DeserializeAndMergeTime: 435.548us - ExecTime: 650.374us - ExprTime: 0ns - HashTableComputeTime: 161.103us - HashTableEmplaceTime: 110.529us - HashTableInputCount: 776 - InputRows: 776 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 619.53us - OpenTime: 22.457us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.802us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.823us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 125.50 KB - MemoryUsage: - Blocks: 62.25 KB - PeakMemoryUsage: 62.25 KB - OpenTime: 23.858us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s675ms PipelineXTask (index=19):(Active: 752.948us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 641.410us - CloseTime: 4.864us - GetBlockTime: 72.837us - OpenTime: 2.594us - PrepareTime: 97.223us - SinkTime: 524.907us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 735.190us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.388ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 459ns - DeserializeAndMergeTime: 357.989us - ExecTime: 549.853us - ExprTime: 0ns - HashTableComputeTime: 136.227us - HashTableEmplaceTime: 93.232us - HashTableInputCount: 816 - InputRows: 816 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 516.783us - OpenTime: 26.241us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.913us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.440us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 115.00 KB - MemoryUsage: - Blocks: 57.75 KB - PeakMemoryUsage: 57.75 KB - OpenTime: 27.343us - ProjectionTime: 0ns - RowsProduced: 816 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s677ms PipelineXTask (index=21):(Active: 841.411us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 767.724us - CloseTime: 2.984us - GetBlockTime: 77.771us - OpenTime: 3.460us - PrepareTime: 61.506us - SinkTime: 636.24us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 824.777us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.742ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 596ns - DeserializeAndMergeTime: 439.539us - ExecTime: 659.588us - ExprTime: 0ns - HashTableComputeTime: 155.994us - HashTableEmplaceTime: 107.540us - HashTableInputCount: 825 - InputRows: 825 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 624.837us - OpenTime: 26.49us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.912us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.275us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 118.50 KB - MemoryUsage: - Blocks: 59.25 KB - PeakMemoryUsage: 59.25 KB - OpenTime: 19.757us - ProjectionTime: 0ns - RowsProduced: 825 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s675ms PipelineXTask (index=23):(Active: 802.817us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 731.124us - CloseTime: 2.943us - GetBlockTime: 76.874us - OpenTime: 3.925us - PrepareTime: 58.674us - SinkTime: 604.260us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 786.521us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.85ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 563ns - DeserializeAndMergeTime: 402.537us - ExecTime: 628.181us - ExprTime: 0ns - HashTableComputeTime: 168.954us - HashTableEmplaceTime: 109.308us - HashTableInputCount: 809 - InputRows: 809 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 594.273us - OpenTime: 25.924us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.915us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.444us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 129.00 KB - MemoryUsage: - Blocks: 33.63 KB - PeakMemoryUsage: 33.63 KB - OpenTime: 17.186us - ProjectionTime: 0ns - RowsProduced: 809 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s670ms Fragment 116: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 817.486us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 674.38us - CloseTime: 10.749us - GetBlockTime: 346.850us - OpenTime: 3.755us - PrepareTime: 122.621us - SinkTime: 294.544us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 797.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.289ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.343us - CompressTime: 0ns - ExecTime: 390.896us - InputRows: 776 - LocalBytesSent: 96.68 KB - LocalSendTime: 78.699us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 155.25 KB - MergeBlockTime: 0ns - OpenTime: 87.828us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 776 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 115.692us - SplitBlockHashComputeTime: 26.155us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 282ns - DeserializeAndMergeTime: 0ns - ExecTime: 355.933us - GetResultsTime: 341.591us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 9.123us - HashTableSize: 776 - InsertKeysToColumnTime: 36.781us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.716us - ProjectionTime: 0ns - RowsProduced: 776 - SerializeDataTime: 283.174us - SerializeResultTime: 344.469us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s615ms PipelineXTask (index=4):(Active: 808.623us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 696.805us - CloseTime: 16.613us - GetBlockTime: 416.194us - OpenTime: 4.170us - PrepareTime: 85.456us - SinkTime: 260.269us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 784.730us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.19ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.801us - CompressTime: 0ns - ExecTime: 337.284us - InputRows: 841 - LocalBytesSent: 112.18 KB - LocalSendTime: 51.33us - LocalSentRows: 841 - MemoryUsage: - PeakMemoryUsage: 176.50 KB - MergeBlockTime: 0ns - OpenTime: 63.91us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 841 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 127.6us - SplitBlockHashComputeTime: 21.963us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 400ns - DeserializeAndMergeTime: 0ns - ExecTime: 421.520us - GetResultsTime: 411.241us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 10.82us - HashTableSize: 841 - InsertKeysToColumnTime: 37.38us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.959us - ProjectionTime: 0ns - RowsProduced: 841 - SerializeDataTime: 353.647us - SerializeResultTime: 413.528us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s621ms PipelineXTask (index=8):(Active: 690.360us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 560.870us - CloseTime: 10.259us - GetBlockTime: 271.231us - OpenTime: 3.463us - PrepareTime: 109.345us - SinkTime: 247.978us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 672.261us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.840ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.710us - CompressTime: 0ns - ExecTime: 335.652us - InputRows: 809 - LocalBytesSent: 100.95 KB - LocalSendTime: 57.731us - LocalSentRows: 809 - MemoryUsage: - PeakMemoryUsage: 157.50 KB - MergeBlockTime: 0ns - OpenTime: 79.427us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 809 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 113.779us - SplitBlockHashComputeTime: 20.718us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 296ns - DeserializeAndMergeTime: 0ns - ExecTime: 277.944us - GetResultsTime: 266.280us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.903us - HashTableSize: 809 - InsertKeysToColumnTime: 32.218us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.70us - ProjectionTime: 0ns - RowsProduced: 809 - SerializeDataTime: 219.49us - SerializeResultTime: 269.218us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s636ms PipelineXTask (index=12):(Active: 928.217us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 789.669us - CloseTime: 16.120us - GetBlockTime: 360.254us - OpenTime: 4.228us - PrepareTime: 111.510us - SinkTime: 405.673us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 904.569us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.159ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.569us - CompressTime: 0ns - ExecTime: 496.755us - InputRows: 837 - LocalBytesSent: 105.60 KB - LocalSendTime: 101.716us - LocalSentRows: 837 - MemoryUsage: - PeakMemoryUsage: 162.00 KB - MergeBlockTime: 0ns - OpenTime: 78.408us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 837 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 158.415us - SplitBlockHashComputeTime: 22.426us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 640ns - DeserializeAndMergeTime: 0ns - ExecTime: 366.843us - GetResultsTime: 352.662us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 10.290us - HashTableSize: 837 - InsertKeysToColumnTime: 41.222us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.420us - ProjectionTime: 0ns - RowsProduced: 837 - SerializeDataTime: 284.488us - SerializeResultTime: 357.360us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s671ms PipelineXTask (index=16):(Active: 731.894us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 581.482us - CloseTime: 12.438us - GetBlockTime: 283.953us - OpenTime: 3.683us - PrepareTime: 128.102us - SinkTime: 277.948us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 711.531us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.713ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.492us - CompressTime: 0ns - ExecTime: 384.523us - InputRows: 801 - LocalBytesSent: 108.31 KB - LocalSendTime: 65.192us - LocalSentRows: 801 - MemoryUsage: - PeakMemoryUsage: 177.00 KB - MergeBlockTime: 0ns - OpenTime: 96.906us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 801 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 113.719us - SplitBlockHashComputeTime: 21.758us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 296ns - DeserializeAndMergeTime: 0ns - ExecTime: 296.342us - GetResultsTime: 278.743us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.735us - HashTableSize: 801 - InsertKeysToColumnTime: 28.643us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.85us - ProjectionTime: 0ns - RowsProduced: 801 - SerializeDataTime: 228.814us - SerializeResultTime: 281.203us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s648ms PipelineXTask (index=20):(Active: 844.413us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 687.277us - CloseTime: 16.307us - GetBlockTime: 337.502us - OpenTime: 3.45us - PrepareTime: 131.224us - SinkTime: 326.421us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 820.536us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.709ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.861us - CompressTime: 0ns - ExecTime: 429.259us - InputRows: 807 - LocalBytesSent: 103.42 KB - LocalSendTime: 94.978us - LocalSentRows: 807 - MemoryUsage: - PeakMemoryUsage: 162.00 KB - MergeBlockTime: 0ns - OpenTime: 89.655us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 807 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 116.490us - SplitBlockHashComputeTime: 20.863us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 617ns - DeserializeAndMergeTime: 0ns - ExecTime: 344.757us - GetResultsTime: 328.939us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.18us - HashTableSize: 807 - InsertKeysToColumnTime: 36.700us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.624us - ProjectionTime: 0ns - RowsProduced: 807 - SerializeDataTime: 264.973us - SerializeResultTime: 334.622us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s676ms PipelineXTask (index=24):(Active: 879.643us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 722.241us - CloseTime: 16.95us - GetBlockTime: 372.739us - OpenTime: 2.911us - PrepareTime: 131.852us - SinkTime: 327.671us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 855.283us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.448ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.859us - CompressTime: 0ns - ExecTime: 432.525us - InputRows: 770 - LocalBytesSent: 98.85 KB - LocalSendTime: 89.337us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 159.75 KB - MergeBlockTime: 0ns - OpenTime: 91.737us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 770 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 136.900us - SplitBlockHashComputeTime: 21.879us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 365ns - DeserializeAndMergeTime: 0ns - ExecTime: 385.241us - GetResultsTime: 366.457us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 9.716us - HashTableSize: 770 - InsertKeysToColumnTime: 52.380us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.182us - ProjectionTime: 0ns - RowsProduced: 770 - SerializeDataTime: 286.682us - SerializeResultTime: 370.360us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s618ms PipelineXTask (index=28):(Active: 696.893us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 576.715us - CloseTime: 10.323us - GetBlockTime: 272.89us - OpenTime: 2.372us - PrepareTime: 101.720us - SinkTime: 285.798us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 679.104us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.744ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.693us - CompressTime: 0ns - ExecTime: 364.381us - InputRows: 861 - LocalBytesSent: 116.77 KB - LocalSendTime: 41.284us - LocalSentRows: 861 - MemoryUsage: - PeakMemoryUsage: 190.00 KB - MergeBlockTime: 0ns - OpenTime: 70.561us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 861 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 161.791us - SplitBlockHashComputeTime: 21.170us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 297ns - DeserializeAndMergeTime: 0ns - ExecTime: 279.440us - GetResultsTime: 267.564us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.690us - HashTableSize: 861 - InsertKeysToColumnTime: 36.979us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.735us - ProjectionTime: 0ns - RowsProduced: 861 - SerializeDataTime: 215.821us - SerializeResultTime: 269.836us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s636ms PipelineXTask (index=32):(Active: 1.62ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 907.177us - CloseTime: 15.14us - GetBlockTime: 455.915us - OpenTime: 2.660us - PrepareTime: 130.981us - SinkTime: 423.744us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.38ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.751ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.761us - CompressTime: 0ns - ExecTime: 530.723us - InputRows: 831 - LocalBytesSent: 104.26 KB - LocalSendTime: 75.628us - LocalSentRows: 831 - MemoryUsage: - PeakMemoryUsage: 178.00 KB - MergeBlockTime: 0ns - OpenTime: 95.194us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 831 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.318us - SplitBlockHashComputeTime: 37.623us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 491ns - DeserializeAndMergeTime: 0ns - ExecTime: 463.4us - GetResultsTime: 447.369us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 8.299us - HashTableSize: 831 - InsertKeysToColumnTime: 63.836us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.47us - ProjectionTime: 0ns - RowsProduced: 831 - SerializeDataTime: 363.332us - SerializeResultTime: 452.355us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s633ms PipelineXTask (index=36):(Active: 633.677us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 519.511us - CloseTime: 13.723us - GetBlockTime: 185.164us - OpenTime: 3.930us - PrepareTime: 90.352us - SinkTime: 309.222us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 611.641us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.193ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.258us - CompressTime: 0ns - ExecTime: 381.932us - InputRows: 825 - LocalBytesSent: 101.42 KB - LocalSendTime: 82.517us - LocalSentRows: 825 - MemoryUsage: - PeakMemoryUsage: 155.75 KB - MergeBlockTime: 0ns - OpenTime: 61.120us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 825 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 127.684us - SplitBlockHashComputeTime: 27.987us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 189ns - DeserializeAndMergeTime: 0ns - ExecTime: 191.345us - GetResultsTime: 180.456us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.630us - HashTableSize: 825 - InsertKeysToColumnTime: 44.909us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.10us - ProjectionTime: 0ns - RowsProduced: 825 - SerializeDataTime: 122.332us - SerializeResultTime: 183.40us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s629ms PipelineXTask (index=40):(Active: 828.839us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 708.892us - CloseTime: 11.438us - GetBlockTime: 385.52us - OpenTime: 4.506us - PrepareTime: 97.904us - SinkTime: 281.962us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 808.537us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.959ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.747us - CompressTime: 0ns - ExecTime: 358.835us - InputRows: 845 - LocalBytesSent: 121.70 KB - LocalSendTime: 42.549us - LocalSentRows: 845 - MemoryUsage: - PeakMemoryUsage: 175.75 KB - MergeBlockTime: 0ns - OpenTime: 67.669us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 845 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 153.923us - SplitBlockHashComputeTime: 22.76us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 337ns - DeserializeAndMergeTime: 0ns - ExecTime: 395.132us - GetResultsTime: 379.267us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 10.163us - HashTableSize: 845 - InsertKeysToColumnTime: 53.205us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.193us - ProjectionTime: 0ns - RowsProduced: 845 - SerializeDataTime: 308.68us - SerializeResultTime: 382.31us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s624ms PipelineXTask (index=44):(Active: 790.493us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 556.263us - CloseTime: 16.153us - GetBlockTime: 189.402us - OpenTime: 3.737us - PrepareTime: 206.786us - SinkTime: 316.205us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 763.687us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 315.364us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.998us - CompressTime: 0ns - ExecTime: 497.944us - InputRows: 807 - LocalBytesSent: 98.37 KB - LocalSendTime: 82.200us - LocalSentRows: 807 - MemoryUsage: - PeakMemoryUsage: 156.00 KB - MergeBlockTime: 0ns - OpenTime: 168.399us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 807 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 117.375us - SplitBlockHashComputeTime: 20.60us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: 1 - CloseTime: 405ns - DeserializeAndMergeTime: 0ns - ExecTime: 200.620us - GetResultsTime: 184.717us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.825us - HashTableSize: 807 - InsertKeysToColumnTime: 30.147us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.793us - ProjectionTime: 0ns - RowsProduced: 807 - SerializeDataTime: 133.730us - SerializeResultTime: 186.983us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s654ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.553ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.411ms - CloseTime: 18.604us - GetBlockTime: 1.944ms - OpenTime: 9.556us - PrepareTime: 107.670us - SinkTime: 1.414ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.308ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.405ms - CloseTime: 993ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.449ms - ExprTime: 8.452us - HashTableComputeTime: 533.217us - HashTableEmplaceTime: 369.927us - HashTableInputCount: 3.562K (3562) - InputRows: 3.562K (3562) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 35.540us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 14.444us - ExecTime: 1.205ms - InitProbeSideTime: 319.269us - JoinFilterTimer: 460ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.181us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.516us - ProbeFindNextTime: 0ns - ProbeRows: 12.816K (12816) - ProbeTime: 894.366us - ProbeWhenBuildSideOutputTime: 84.460us - ProbeWhenProbeSideOutputTime: 17.307us - ProbeWhenProcessHashTableTime: 170.82us - ProbeWhenSearchHashTableTime: 229.864us - ProjectionTime: 263.932us - RowsProduced: 3.562K (3562) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s465ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 487ns - DeserializeAndMergeTime: 0ns - ExecTime: 752.319us - GetResultsTime: 723.283us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 96.909us - HashTableSize: 12.816K (12816) - InsertKeysToColumnTime: 354.667us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.643us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s134ms PipelineXTask (index=5):(Active: 3.835ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.689ms - CloseTime: 15.572us - GetBlockTime: 2.235ms - OpenTime: 5.371us - PrepareTime: 121.743us - SinkTime: 1.420ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.811ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.749ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.407ms - CloseTime: 1.325us - DeserializeAndMergeTime: 0ns - ExecTime: 1.440ms - ExprTime: 7.875us - HashTableComputeTime: 578.599us - HashTableEmplaceTime: 413.908us - HashTableInputCount: 4.375K (4375) - InputRows: 4.375K (4375) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 21.179us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 11.382us - ExecTime: 1.406ms - InitProbeSideTime: 343.263us - JoinFilterTimer: 574ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.666us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.931us - ProbeFindNextTime: 0ns - ProbeRows: 12.634K (12634) - ProbeTime: 1.67ms - ProbeWhenBuildSideOutputTime: 106.685us - ProbeWhenProbeSideOutputTime: 16.434us - ProbeWhenProcessHashTableTime: 240.329us - ProbeWhenSearchHashTableTime: 284.323us - ProjectionTime: 295.554us - RowsProduced: 4.375K (4375) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s654ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 493ns - DeserializeAndMergeTime: 0ns - ExecTime: 869.1us - GetResultsTime: 819.173us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 98.156us - HashTableSize: 12.634K (12634) - InsertKeysToColumnTime: 382.258us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 27.294us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s959ms PipelineXTask (index=9):(Active: 3.497ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.321ms - CloseTime: 18.922us - GetBlockTime: 1.882ms - OpenTime: 7.229us - PrepareTime: 141.551us - SinkTime: 1.390ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.464ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.581ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.381ms - CloseTime: 634ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.449ms - ExprTime: 8.330us - HashTableComputeTime: 538.988us - HashTableEmplaceTime: 365.739us - HashTableInputCount: 3.753K (3753) - InputRows: 3.753K (3753) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 59.768us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.724us - ExecTime: 1.222ms - InitProbeSideTime: 321.169us - JoinFilterTimer: 418ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 21.600us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.739us - ProbeFindNextTime: 0ns - ProbeRows: 12.699K (12699) - ProbeTime: 911.452us - ProbeWhenBuildSideOutputTime: 92.355us - ProbeWhenProbeSideOutputTime: 15.899us - ProbeWhenProcessHashTableTime: 171.772us - ProbeWhenSearchHashTableTime: 248.596us - ProjectionTime: 261.259us - RowsProduced: 3.753K (3753) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s468ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 444ns - DeserializeAndMergeTime: 0ns - ExecTime: 702.301us - GetResultsTime: 665.40us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 70.272us - HashTableSize: 12.699K (12699) - InsertKeysToColumnTime: 372.190us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 17.479us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s156ms PipelineXTask (index=13):(Active: 30.858ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 30.735ms - CloseTime: 18.498us - GetBlockTime: 29.237ms - OpenTime: 6.374us - PrepareTime: 92.739us - SinkTime: 1.459ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.822ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.40ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.447ms - CloseTime: 1.180us - DeserializeAndMergeTime: 0ns - ExecTime: 1.480ms - ExprTime: 9.716us - HashTableComputeTime: 566.785us - HashTableEmplaceTime: 418.191us - HashTableInputCount: 3.946K (3946) - InputRows: 3.946K (3946) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 22.492us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 12.926us - ExecTime: 28.538ms - InitProbeSideTime: 27.368ms - JoinFilterTimer: 408ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.777us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.284us - ProbeFindNextTime: 0ns - ProbeRows: 12.761K (12761) - ProbeTime: 28.197ms - ProbeWhenBuildSideOutputTime: 117.564us - ProbeWhenProbeSideOutputTime: 34.21us - ProbeWhenProcessHashTableTime: 222.658us - ProbeWhenSearchHashTableTime: 379.737us - ProjectionTime: 295.265us - RowsProduced: 3.946K (3946) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s592ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 1.54us - DeserializeAndMergeTime: 0ns - ExecTime: 722.954us - GetResultsTime: 691.125us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 84.4us - HashTableSize: 12.761K (12761) - InsertKeysToColumnTime: 366.498us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.684us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s1ms PipelineXTask (index=17):(Active: 3.789ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.662ms - CloseTime: 13.255us - GetBlockTime: 2.164ms - OpenTime: 5.366us - PrepareTime: 102.652us - SinkTime: 1.461ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.746ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.770ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.449ms - CloseTime: 864ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.483ms - ExprTime: 7.418us - HashTableComputeTime: 519.659us - HashTableEmplaceTime: 365.625us - HashTableInputCount: 4.243K (4243) - InputRows: 4.243K (4243) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 24.148us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 8.946us - ExecTime: 1.375ms - InitProbeSideTime: 340.751us - JoinFilterTimer: 472ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.488us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.699us - ProbeFindNextTime: 0ns - ProbeRows: 12.661K (12661) - ProbeTime: 1.55ms - ProbeWhenBuildSideOutputTime: 103.527us - ProbeWhenProbeSideOutputTime: 22.226us - ProbeWhenProcessHashTableTime: 225.231us - ProbeWhenSearchHashTableTime: 298.501us - ProjectionTime: 276.571us - RowsProduced: 4.243K (4243) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s593ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 805ns - DeserializeAndMergeTime: 0ns - ExecTime: 813.398us - GetResultsTime: 770.548us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 104.973us - HashTableSize: 12.661K (12661) - InsertKeysToColumnTime: 404.421us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.64us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s4ms PipelineXTask (index=21):(Active: 34.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.737ms - CloseTime: 20.294us - GetBlockTime: 2.159ms - OpenTime: 6.348us - PrepareTime: 77.674us - SinkTime: 32.537ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.802ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.204ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 32.526ms - CloseTime: 834ns - DeserializeAndMergeTime: 0ns - ExecTime: 32.557ms - ExprTime: 10.555us - HashTableComputeTime: 31.605ms - HashTableEmplaceTime: 397.698us - HashTableInputCount: 3.889K (3889) - InputRows: 3.889K (3889) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 21.364us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 14.638us - ExecTime: 1.448ms - InitProbeSideTime: 320.941us - JoinFilterTimer: 273ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.681us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.455us - ProbeFindNextTime: 0ns - ProbeRows: 12.574K (12574) - ProbeTime: 1.100ms - ProbeWhenBuildSideOutputTime: 106.158us - ProbeWhenProbeSideOutputTime: 25.84us - ProbeWhenProcessHashTableTime: 208.471us - ProbeWhenSearchHashTableTime: 370.779us - ProjectionTime: 298.671us - RowsProduced: 3.889K (3889) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s428ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 1.80us - DeserializeAndMergeTime: 0ns - ExecTime: 729.84us - GetResultsTime: 697.886us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 76.709us - HashTableSize: 12.574K (12574) - InsertKeysToColumnTime: 375.21us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.50us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s166ms PipelineXTask (index=25):(Active: 3.458ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.339ms - CloseTime: 13.591us - GetBlockTime: 1.916ms - OpenTime: 5.501us - PrepareTime: 94.556us - SinkTime: 1.382ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.376ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.396ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.372ms - CloseTime: 1.235us - DeserializeAndMergeTime: 0ns - ExecTime: 1.398ms - ExprTime: 8.915us - HashTableComputeTime: 523.954us - HashTableEmplaceTime: 359.981us - HashTableInputCount: 3.732K (3732) - InputRows: 3.732K (3732) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 17.816us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 8.926us - ExecTime: 1.106ms - InitProbeSideTime: 294.303us - JoinFilterTimer: 269ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 25.107us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.391us - ProbeFindNextTime: 0ns - ProbeRows: 12.788K (12788) - ProbeTime: 785.18us - ProbeWhenBuildSideOutputTime: 67.661us - ProbeWhenProbeSideOutputTime: 20.931us - ProbeWhenProcessHashTableTime: 162.743us - ProbeWhenSearchHashTableTime: 172.818us - ProjectionTime: 272.998us - RowsProduced: 3.732K (3732) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s326ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 820ns - DeserializeAndMergeTime: 0ns - ExecTime: 836.349us - GetResultsTime: 800.331us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 87.2us - HashTableSize: 12.788K (12788) - InsertKeysToColumnTime: 359.898us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.91us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s221ms PipelineXTask (index=29):(Active: 3.683ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.526ms - CloseTime: 21.655us - GetBlockTime: 2.77ms - OpenTime: 8.112us - PrepareTime: 119.546us - SinkTime: 1.407ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.652ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.624ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.398ms - CloseTime: 845ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.429ms - ExprTime: 10.466us - HashTableComputeTime: 538.989us - HashTableEmplaceTime: 319.888us - HashTableInputCount: 4.609K (4609) - InputRows: 4.609K (4609) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 23.240us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 18.767us - ExecTime: 1.390ms - InitProbeSideTime: 294.833us - JoinFilterTimer: 493ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.737us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.892us - ProbeFindNextTime: 0ns - ProbeRows: 12.577K (12577) - ProbeTime: 1.19ms - ProbeWhenBuildSideOutputTime: 114.370us - ProbeWhenProbeSideOutputTime: 21.897us - ProbeWhenProcessHashTableTime: 242.90us - ProbeWhenSearchHashTableTime: 267.197us - ProjectionTime: 315.723us - RowsProduced: 4.609K (4609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s597ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 466ns - DeserializeAndMergeTime: 0ns - ExecTime: 724.892us - GetResultsTime: 684.192us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 72.325us - HashTableSize: 12.577K (12577) - InsertKeysToColumnTime: 371.428us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 18.923us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s0ms PipelineXTask (index=33):(Active: 4.974ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.850ms - CloseTime: 21.169us - GetBlockTime: 2.879ms - OpenTime: 4.927us - PrepareTime: 91.943us - SinkTime: 1.932ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.944ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.203ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.919ms - CloseTime: 1.356us - DeserializeAndMergeTime: 0ns - ExecTime: 1.964ms - ExprTime: 10.92us - HashTableComputeTime: 654.8us - HashTableEmplaceTime: 466.654us - HashTableInputCount: 3.876K (3876) - InputRows: 3.876K (3876) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 34.188us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.362us - ExecTime: 1.794ms - InitProbeSideTime: 414.737us - JoinFilterTimer: 508ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.861us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.249us - ProbeFindNextTime: 0ns - ProbeRows: 12.843K (12843) - ProbeTime: 1.354ms - ProbeWhenBuildSideOutputTime: 136.525us - ProbeWhenProbeSideOutputTime: 34.449us - ProbeWhenProcessHashTableTime: 250.212us - ProbeWhenSearchHashTableTime: 411.636us - ProjectionTime: 387.171us - RowsProduced: 3.876K (3876) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s655ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 1.81us - DeserializeAndMergeTime: 0ns - ExecTime: 1.100ms - GetResultsTime: 1.51ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 111.752us - HashTableSize: 12.843K (12843) - InsertKeysToColumnTime: 604.398us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.254us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s957ms PipelineXTask (index=37):(Active: 3.224ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.102ms - CloseTime: 12.664us - GetBlockTime: 1.790ms - OpenTime: 6.393us - PrepareTime: 97.934us - SinkTime: 1.277ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.201ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.881ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.269ms - CloseTime: 831ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.307ms - ExprTime: 6.664us - HashTableComputeTime: 477.529us - HashTableEmplaceTime: 348.665us - HashTableInputCount: 3.72K (3720) - InputRows: 3.72K (3720) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 31.590us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 9.193us - ExecTime: 1.177ms - InitProbeSideTime: 295.839us - JoinFilterTimer: 237ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.431us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.468us - ProbeFindNextTime: 0ns - ProbeRows: 12.728K (12728) - ProbeTime: 891.281us - ProbeWhenBuildSideOutputTime: 83.197us - ProbeWhenProbeSideOutputTime: 19.846us - ProbeWhenProcessHashTableTime: 175.749us - ProbeWhenSearchHashTableTime: 262.348us - ProjectionTime: 245.938us - RowsProduced: 3.72K (3720) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s646ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 810ns - DeserializeAndMergeTime: 0ns - ExecTime: 634.231us - GetResultsTime: 612.778us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 73.188us - HashTableSize: 12.728K (12728) - InsertKeysToColumnTime: 350.474us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.909us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s949ms PipelineXTask (index=41):(Active: 3.666ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.438ms - CloseTime: 11.809us - GetBlockTime: 1.932ms - OpenTime: 4.363us - PrepareTime: 206.229us - SinkTime: 1.453ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.156ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.444ms - CloseTime: 762ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.481ms - ExprTime: 10.280us - HashTableComputeTime: 524.117us - HashTableEmplaceTime: 362.403us - HashTableInputCount: 4.966K (4966) - InputRows: 4.966K (4966) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 29.122us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 8.899us - ExecTime: 1.337ms - InitProbeSideTime: 305.321us - JoinFilterTimer: 374ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 28.595us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.687us - ProbeFindNextTime: 0ns - ProbeRows: 12.775K (12775) - ProbeTime: 990.899us - ProbeWhenBuildSideOutputTime: 97.299us - ProbeWhenProbeSideOutputTime: 17.968us - ProbeWhenProcessHashTableTime: 222.769us - ProbeWhenSearchHashTableTime: 282.33us - ProjectionTime: 296.9us - RowsProduced: 4.966K (4966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s598ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 507ns - DeserializeAndMergeTime: 0ns - ExecTime: 619.76us - GetResultsTime: 594.914us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 82.221us - HashTableSize: 12.775K (12775) - InsertKeysToColumnTime: 334.774us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.255us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s993ms PipelineXTask (index=45):(Active: 4.699ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.580ms - CloseTime: 21.134us - GetBlockTime: 2.711ms - OpenTime: 9.760us - PrepareTime: 81.579us - SinkTime: 1.816ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.784ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.804ms - CloseTime: 1.291us - DeserializeAndMergeTime: 0ns - ExecTime: 1.841ms - ExprTime: 8.817us - HashTableComputeTime: 640.486us - HashTableEmplaceTime: 458.13us - HashTableInputCount: 3.587K (3587) - InputRows: 3.587K (3587) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 27.168us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.819us - ExecTime: 1.697ms - InitProbeSideTime: 417.681us - JoinFilterTimer: 688ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 21.753us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.724us - ProbeFindNextTime: 0ns - ProbeRows: 12.563K (12563) - ProbeTime: 1.290ms - ProbeWhenBuildSideOutputTime: 142.138us - ProbeWhenProbeSideOutputTime: 30.566us - ProbeWhenProcessHashTableTime: 234.77us - ProbeWhenSearchHashTableTime: 374.413us - ProjectionTime: 349.204us - RowsProduced: 3.587K (3587) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s656ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 4 - CloseTime: 875ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.35ms - GetResultsTime: 1.1ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 125.823us - HashTableSize: 12.563K (12563) - InsertKeysToColumnTime: 575.671us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.941us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s969ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 857.455us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 759.547us - CloseTime: 15.376us - GetBlockTime: 136.480us - OpenTime: 4.78us - PrepareTime: 72.81us - SinkTime: 555.9us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 825.546us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.853ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.196us - BuildRows: 3.563K (3563) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 284.782us - BuildTableInsertTime: 156.477us - BuildTableTime: 159.498us - CloseTime: 0ns - ExecTime: 584.278us - InputRows: 3.562K (3562) - MemoryUsage: - BuildBlocks: 271.30 KB - BuildKeyArena: 84.00 KB - HashTable: 33.40 KB - PeakMemoryUsage: 384.69 KB - OpenTime: 33.453us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.467us - RuntimeFilterComputeTime: 47.340us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.699us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 140.405us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 417.74 KB - MemoryUsage: - Blocks: 150.03 KB - PeakMemoryUsage: 159.44 KB - OpenTime: 17.132us - ProjectionTime: 0ns - RowsProduced: 3.562K (3562) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s547ms PipelineXTask (index=6):(Active: 996.67us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 887.82us - CloseTime: 14.59us - GetBlockTime: 113.701us - OpenTime: 3.602us - PrepareTime: 84.168us - SinkTime: 698.700us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 964.367us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.297ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.527us - BuildRows: 4.376K (4376) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 393.84us - BuildTableInsertTime: 182.709us - BuildTableTime: 186.230us - CloseTime: 0ns - ExecTime: 734.117us - InputRows: 4.375K (4375) - MemoryUsage: - BuildBlocks: 333.23 KB - BuildKeyArena: 100.00 KB - HashTable: 53.37 KB - PeakMemoryUsage: 482.60 KB - OpenTime: 38.20us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.387us - RuntimeFilterComputeTime: 45.718us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 11.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 135.917us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 468.18 KB - MemoryUsage: - Blocks: 168.84 KB - PeakMemoryUsage: 168.84 KB - OpenTime: 22.149us - ProjectionTime: 0ns - RowsProduced: 4.375K (4375) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s542ms PipelineXTask (index=10):(Active: 25.836ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 25.753ms - CloseTime: 6.409us - GetBlockTime: 119.425us - OpenTime: 3.882us - PrepareTime: 65.380us - SinkTime: 25.540ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 845.778us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.209ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.397us - BuildRows: 3.754K (3754) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.303ms - BuildTableInsertTime: 152.258us - BuildTableTime: 153.976us - CloseTime: 0ns - ExecTime: 25.561ms - InputRows: 3.753K (3753) - MemoryUsage: - BuildBlocks: 285.84 KB - BuildKeyArena: 88.00 KB - HashTable: 50.33 KB - PeakMemoryUsage: 420.17 KB - OpenTime: 23.626us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.72us - RuntimeFilterComputeTime: 28.874us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.334us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 137.540us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 360.65 KB - MemoryUsage: - Blocks: 114.06 KB - PeakMemoryUsage: 114.06 KB - OpenTime: 21.878us - ProjectionTime: 0ns - RowsProduced: 3.753K (3753) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s553ms PipelineXTask (index=14):(Active: 821.915us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 749.514us - CloseTime: 11.268us - GetBlockTime: 102.53us - OpenTime: 2.797us - PrepareTime: 52.414us - SinkTime: 587.371us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 797.624us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.874ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.644us - BuildRows: 3.947K (3947) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 270.938us - BuildTableInsertTime: 172.844us - BuildTableTime: 175.663us - CloseTime: 0ns - ExecTime: 603.839us - InputRows: 3.946K (3946) - MemoryUsage: - BuildBlocks: 300.54 KB - BuildKeyArena: 92.00 KB - HashTable: 51.28 KB - PeakMemoryUsage: 439.80 KB - OpenTime: 19.986us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.891us - RuntimeFilterComputeTime: 60.666us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.311us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 114.334us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 452.43 KB - MemoryUsage: - Blocks: 162.09 KB - PeakMemoryUsage: 162.09 KB - OpenTime: 13.208us - ProjectionTime: 0ns - RowsProduced: 3.946K (3946) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s556ms PipelineXTask (index=18):(Active: 899.518us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 800.359us - CloseTime: 5.6us - GetBlockTime: 95.235us - OpenTime: 2.295us - PrepareTime: 84.992us - SinkTime: 657.554us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 882.12us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.246ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.973us - BuildRows: 4.244K (4244) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 428.449us - BuildTableInsertTime: 164.30us - BuildTableTime: 165.641us - CloseTime: 0ns - ExecTime: 683.67us - InputRows: 4.243K (4243) - MemoryUsage: - BuildBlocks: 323.18 KB - BuildKeyArena: 96.00 KB - HashTable: 52.73 KB - PeakMemoryUsage: 467.90 KB - OpenTime: 29.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.310us - RuntimeFilterComputeTime: 22.761us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.545us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 112.466us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 486.68 KB - MemoryUsage: - Blocks: 217.40 KB - PeakMemoryUsage: 217.40 KB - OpenTime: 20.947us - ProjectionTime: 0ns - RowsProduced: 4.243K (4243) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s555ms PipelineXTask (index=22):(Active: 780.742us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 703.521us - CloseTime: 5.220us - GetBlockTime: 142.166us - OpenTime: 2.623us - PrepareTime: 63.652us - SinkTime: 508.355us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 762.230us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.724ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.26us - BuildRows: 3.89K (3890) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 279.375us - BuildTableInsertTime: 158.317us - BuildTableTime: 159.626us - CloseTime: 0ns - ExecTime: 527.570us - InputRows: 3.889K (3889) - MemoryUsage: - BuildBlocks: 296.23 KB - BuildKeyArena: 88.00 KB - HashTable: 51.00 KB - PeakMemoryUsage: 431.22 KB - OpenTime: 21.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.586us - RuntimeFilterComputeTime: 25.601us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.776us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 157.559us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 384.05 KB - MemoryUsage: - Blocks: 137.43 KB - PeakMemoryUsage: 137.43 KB - OpenTime: 21.336us - ProjectionTime: 0ns - RowsProduced: 3.889K (3889) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s554ms PipelineXTask (index=26):(Active: 707.994us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 621.158us - CloseTime: 3.311us - GetBlockTime: 103.964us - OpenTime: 2.682us - PrepareTime: 74.776us - SinkTime: 472.123us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 692.804us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.33ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.405us - BuildRows: 3.733K (3733) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 233.996us - BuildTableInsertTime: 157.890us - BuildTableTime: 159.698us - CloseTime: 0ns - ExecTime: 493.416us - InputRows: 3.732K (3732) - MemoryUsage: - BuildBlocks: 284.26 KB - BuildKeyArena: 88.00 KB - HashTable: 50.23 KB - PeakMemoryUsage: 418.48 KB - OpenTime: 23.497us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 988ns - RuntimeFilterComputeTime: 39.350us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.827us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.473us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 418.27 KB - MemoryUsage: - Blocks: 313.56 KB - PeakMemoryUsage: 313.56 KB - OpenTime: 14.393us - ProjectionTime: 0ns - RowsProduced: 3.732K (3732) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s553ms PipelineXTask (index=30):(Active: 1.58ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 975.398us - CloseTime: 7.443us - GetBlockTime: 125.97us - OpenTime: 4.33us - PrepareTime: 66.845us - SinkTime: 802.843us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.39ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 124.882ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.503us - BuildRows: 4.61K (4610) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 394.547us - BuildTableInsertTime: 166.199us - BuildTableTime: 168.365us - CloseTime: 0ns - ExecTime: 821.180us - InputRows: 4.609K (4609) - MemoryUsage: - BuildBlocks: 351.07 KB - BuildKeyArena: 104.00 KB - HashTable: 54.51 KB - PeakMemoryUsage: 505.58 KB - OpenTime: 20.867us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 162.581us - RuntimeFilterComputeTime: 33.764us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 147.890us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 536.55 KB - MemoryUsage: - Blocks: 480.24 KB - PeakMemoryUsage: 480.24 KB - OpenTime: 20.849us - ProjectionTime: 0ns - RowsProduced: 4.609K (4609) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s509ms PipelineXTask (index=34):(Active: 670.334us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 580.113us - CloseTime: 8.707us - GetBlockTime: 94.230us - OpenTime: 3.100us - PrepareTime: 72.729us - SinkTime: 438.275us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 651.93us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.498ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.465us - BuildRows: 3.877K (3877) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 232.633us - BuildTableInsertTime: 120.558us - BuildTableTime: 122.511us - CloseTime: 0ns - ExecTime: 462.984us - InputRows: 3.876K (3876) - MemoryUsage: - BuildBlocks: 295.23 KB - BuildKeyArena: 88.00 KB - HashTable: 50.93 KB - PeakMemoryUsage: 430.16 KB - OpenTime: 27.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.767us - RuntimeFilterComputeTime: 38.252us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.567us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.576us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 412.24 KB - MemoryUsage: - Blocks: 228.56 KB - PeakMemoryUsage: 228.56 KB - OpenTime: 15.716us - ProjectionTime: 0ns - RowsProduced: 3.876K (3876) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s553ms PipelineXTask (index=38):(Active: 723.184us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 641.935us - CloseTime: 4.863us - GetBlockTime: 123.262us - OpenTime: 2.723us - PrepareTime: 69.804us - SinkTime: 467.299us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 706.824us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.234ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.144us - BuildRows: 3.721K (3721) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 268.412us - BuildTableInsertTime: 110.330us - BuildTableTime: 111.584us - CloseTime: 0ns - ExecTime: 483.13us - InputRows: 3.72K (3720) - MemoryUsage: - BuildBlocks: 283.32 KB - BuildKeyArena: 84.00 KB - HashTable: 50.17 KB - PeakMemoryUsage: 413.48 KB - OpenTime: 18.460us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.640us - RuntimeFilterComputeTime: 29.358us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.450us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 147.238us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 370.05 KB - MemoryUsage: - Blocks: 161.09 KB - PeakMemoryUsage: 161.09 KB - OpenTime: 28.634us - ProjectionTime: 0ns - RowsProduced: 3.72K (3720) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s552ms PipelineXTask (index=42):(Active: 925.425us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 833.751us - CloseTime: 2.902us - GetBlockTime: 97.680us - OpenTime: 2.847us - PrepareTime: 80.624us - SinkTime: 680.82us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 908.92us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.618ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.3us - BuildRows: 4.967K (4967) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 423.748us - BuildTableInsertTime: 177.861us - BuildTableTime: 179.85us - CloseTime: 0ns - ExecTime: 709.229us - InputRows: 4.966K (4966) - MemoryUsage: - BuildBlocks: 378.25 KB - BuildKeyArena: 112.00 KB - HashTable: 56.26 KB - PeakMemoryUsage: 542.50 KB - OpenTime: 31.737us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.575us - RuntimeFilterComputeTime: 23.530us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.268us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 579.30 KB - MemoryUsage: - Blocks: 203.59 KB - PeakMemoryUsage: 203.59 KB - OpenTime: 19.43us - ProjectionTime: 0ns - RowsProduced: 4.966K (4966) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s541ms PipelineXTask (index=46):(Active: 707.270us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 629.508us - CloseTime: 4.108us - GetBlockTime: 95.511us - OpenTime: 4.12us - PrepareTime: 64.341us - SinkTime: 487.987us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 691.242us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.611ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.365us - BuildRows: 3.588K (3588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 255.977us - BuildTableInsertTime: 147.121us - BuildTableTime: 148.546us - CloseTime: 0ns - ExecTime: 514.670us - InputRows: 3.587K (3587) - MemoryUsage: - BuildBlocks: 273.20 KB - BuildKeyArena: 84.00 KB - HashTable: 49.52 KB - PeakMemoryUsage: 402.71 KB - OpenTime: 28.609us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.244us - RuntimeFilterComputeTime: 26.746us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.721us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 416.90 KB - MemoryUsage: - Blocks: 243.96 KB - PeakMemoryUsage: 243.96 KB - OpenTime: 18.212us - ProjectionTime: 0ns - RowsProduced: 3.587K (3587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s535ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 4.187ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.41ms - CloseTime: 15.240us - GetBlockTime: 85.364us - OpenTime: 3.100us - PrepareTime: 121.920us - SinkTime: 3.916ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.161ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 700.819ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 3.180us - DeserializeAndMergeTime: 105.102us - ExecTime: 3.968ms - ExprTime: 0ns - HashTableComputeTime: 3.670ms - HashTableEmplaceTime: 3.268ms - HashTableInputCount: 12.816K (12816) - InputRows: 12.816K (12816) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.903ms - OpenTime: 51.465us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 117.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 28.286us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s453ms PipelineXTask (index=7):(Active: 4.463ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.374ms - CloseTime: 21.461us - GetBlockTime: 94.307us - OpenTime: 3.495us - PrepareTime: 58.798us - SinkTime: 4.224ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.429ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 674.589ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 6.846us - DeserializeAndMergeTime: 118.523us - ExecTime: 4.255ms - ExprTime: 0ns - HashTableComputeTime: 4.50ms - HashTableEmplaceTime: 3.582ms - HashTableInputCount: 12.634K (12634) - InputRows: 12.634K (12634) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.206ms - OpenTime: 26.730us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.93us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.637us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 504.64 KB - OpenTime: 16.259us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s293ms PipelineXTask (index=11):(Active: 4.210ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.139ms - CloseTime: 14.68us - GetBlockTime: 86.702us - OpenTime: 3.615us - PrepareTime: 48.409us - SinkTime: 4.13ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.186ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 701.594ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 6.825us - DeserializeAndMergeTime: 156.273us - ExecTime: 4.34ms - ExprTime: 0ns - HashTableComputeTime: 3.753ms - HashTableEmplaceTime: 3.303ms - HashTableInputCount: 12.699K (12699) - InputRows: 12.699K (12699) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.1ms - OpenTime: 15.447us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.155us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 96.884us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 9.687us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s452ms PipelineXTask (index=15):(Active: 45.321ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.186ms - CloseTime: 18.888us - GetBlockTime: 94.485us - OpenTime: 2.795us - PrepareTime: 106.472us - SinkTime: 45.37ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.908ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 768.237ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.74us - DeserializeAndMergeTime: 142.118us - ExecTime: 45.56ms - ExprTime: 0ns - HashTableComputeTime: 44.704ms - HashTableEmplaceTime: 3.688ms - HashTableInputCount: 12.761K (12761) - InputRows: 12.761K (12761) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 45.16ms - OpenTime: 17.294us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 123.187us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 21.458us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s191ms PipelineXTask (index=19):(Active: 4.670ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.598ms - CloseTime: 17.50us - GetBlockTime: 123.922us - OpenTime: 2.898us - PrepareTime: 46.47us - SinkTime: 4.421ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 812.984ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.207us - DeserializeAndMergeTime: 119.63us - ExecTime: 4.439ms - ExprTime: 0ns - HashTableComputeTime: 4.167ms - HashTableEmplaceTime: 3.677ms - HashTableInputCount: 12.661K (12661) - InputRows: 12.661K (12661) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.407ms - OpenTime: 15.301us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.263us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 14.656us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s189ms PipelineXTask (index=23):(Active: 14.45ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.959ms - CloseTime: 29.529us - GetBlockTime: 98.508us - OpenTime: 2.872us - PrepareTime: 48.431us - SinkTime: 13.812ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.376ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 703.59ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 12.704us - DeserializeAndMergeTime: 156.965us - ExecTime: 13.846ms - ExprTime: 0ns - HashTableComputeTime: 13.483ms - HashTableEmplaceTime: 4.302ms - HashTableInputCount: 12.574K (12574) - InputRows: 12.574K (12574) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 13.791ms - OpenTime: 24.845us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 15.101us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 8.363us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s451ms PipelineXTask (index=27):(Active: 4.279ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.111ms - CloseTime: 19.205us - GetBlockTime: 82.456us - OpenTime: 5.87us - PrepareTime: 136.706us - SinkTime: 3.973ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.246ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 937.353ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.835us - DeserializeAndMergeTime: 140.381us - ExecTime: 4.70ms - ExprTime: 0ns - HashTableComputeTime: 3.780ms - HashTableEmplaceTime: 3.379ms - HashTableInputCount: 12.788K (12788) - InputRows: 12.788K (12788) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.960ms - OpenTime: 95.525us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 14.982us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.818us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 672.00 KB - PeakMemoryUsage: 673.50 KB - OpenTime: 14.543us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s304ms PipelineXTask (index=31):(Active: 4.851ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.772ms - CloseTime: 23.625us - GetBlockTime: 108.221us - OpenTime: 3.706us - PrepareTime: 46.300us - SinkTime: 4.589ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.764ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 471.732ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 6.638us - DeserializeAndMergeTime: 114.389us - ExecTime: 4.606ms - ExprTime: 0ns - HashTableComputeTime: 4.236ms - HashTableEmplaceTime: 3.589ms - HashTableInputCount: 12.577K (12577) - InputRows: 12.577K (12577) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.569ms - OpenTime: 14.896us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 15.991us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 131.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 336.43 KB - OpenTime: 14.972us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s540ms PipelineXTask (index=35):(Active: 4.241ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.150ms - CloseTime: 14.245us - GetBlockTime: 82.285us - OpenTime: 3.918us - PrepareTime: 66.992us - SinkTime: 4.13ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.214ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.894ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 3.539us - DeserializeAndMergeTime: 128.850us - ExecTime: 4.36ms - ExprTime: 0ns - HashTableComputeTime: 3.676ms - HashTableEmplaceTime: 3.138ms - HashTableInputCount: 12.843K (12843) - InputRows: 12.843K (12843) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.995ms - OpenTime: 22.494us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 113.172us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 504.64 KB - OpenTime: 28.29us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s713ms PipelineXTask (index=39):(Active: 4.39ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.920ms - CloseTime: 16.425us - GetBlockTime: 72.164us - OpenTime: 2.786us - PrepareTime: 93.345us - SinkTime: 3.782ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.999ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 259.603ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 4.261us - DeserializeAndMergeTime: 112.922us - ExecTime: 3.844ms - ExprTime: 0ns - HashTableComputeTime: 3.553ms - HashTableEmplaceTime: 3.136ms - HashTableInputCount: 12.728K (12728) - InputRows: 12.728K (12728) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 3.767ms - OpenTime: 59.595us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.33us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.502us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 504.64 KB - OpenTime: 15.391us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s710ms PipelineXTask (index=43):(Active: 14.822ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 14.748ms - CloseTime: 10.638us - GetBlockTime: 97.73us - OpenTime: 4.940us - PrepareTime: 51.697us - SinkTime: 14.591ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.517ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 476.449ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 4.352us - DeserializeAndMergeTime: 127.728us - ExecTime: 14.611ms - ExprTime: 0ns - HashTableComputeTime: 14.294ms - HashTableEmplaceTime: 13.786ms - HashTableInputCount: 12.775K (12775) - InputRows: 12.775K (12775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 14.565ms - OpenTime: 16.274us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 5.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.111us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 336.43 KB - OpenTime: 11.508us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s526ms PipelineXTask (index=47):(Active: 4.467ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.370ms - CloseTime: 21.390us - GetBlockTime: 102.920us - OpenTime: 3.440us - PrepareTime: 68.207us - SinkTime: 4.192ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.424ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 361.735ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 7.690us - DeserializeAndMergeTime: 138.45us - ExecTime: 4.237ms - ExprTime: 0ns - HashTableComputeTime: 3.968ms - HashTableEmplaceTime: 3.458ms - HashTableInputCount: 12.563K (12563) - InputRows: 12.563K (12563) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 4.172ms - OpenTime: 44.238us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.15us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 115.408us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 336.43 KB - OpenTime: 8.393us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s603ms Fragment 117: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 40.895ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 39.708ms - CloseTime: 558.738us - GetBlockTime: 35.759ms - OpenTime: 257.472us - PrepareTime: 359.349us - SinkTime: 3.580ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.191ms - WaitBfTime: 884.779ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 63.594ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.852us - CompressTime: 0ns - ExecTime: 3.682ms - InputRows: 30.907K (30907) - LocalBytesSent: 1.27 MB - LocalSendTime: 89.94us - LocalSentRows: 30.907K (30907) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 92.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.907K (30907) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.572ms - SplitBlockHashComputeTime: 502.939us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 33.757ms - CloseTime: 404.939us - DeserializeAndMergeTime: 0ns - ExecTime: 35.903ms - ExprTime: 31.689us - GetResultsTime: 1.644ms - HashTableComputeTime: 33.460ms - HashTableEmplaceTime: 31.773ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 224.606us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 660.262us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 29.482us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 533.777us - SerializeKeyTime: 0ns - SerializeResultTime: 1.662ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15311, 15325, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.627us - BlocksProduced: 19 - CloseTime: 135.218us - ExecTime: 92.553ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 364.533us - ProcessConjunctTime: 65.296us - ProjectionTime: 2.920ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 304.683ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 88.859ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [10.660us, 9.332us, 5.752us, 8.060ms, ] - PerScannerRowsRead: [0, 0, 0, 68.65K, ] - PerScannerWaitTime: [75.693ms, 76.139ms, 76.352ms, 76.497ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.663ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 114.363ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 741ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 59.626ms - ScannerCtxSchedTime: 304.676ms - ScannerFilterTime: 14.780us - ScannerGetBlockTime: 8.36ms - ScannerInitTime: 154.812us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 906ns - BlockConditionsFilteredBloomFilterTime: 355ns - BlockConditionsFilteredDictTime: 3.430us - BlockConditionsFilteredTime: 13.425us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 322ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 50.258us - BlockInitTime: 188.408us - BlockLoadTime: 121.485ms - BlocksLoad: 262 - CachedPagesNum: 220 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 108.673ms - FirstReadSeekCount: 453 - FirstReadSeekTime: 179.992us - FirstReadTime: 7.377ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.946us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.299ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 501.482us - OutputIndexResultColumnTimer: 22.211us - RawRowsRead: 1.033281M (1033281) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.206K (245206) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.785ms - ShortPredEvalTime: 580.393us - TotalPagesNum: 220 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 27.877us PipelineXTask (index=1):(Active: 43.460ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.77ms - CloseTime: 673.530us - GetBlockTime: 37.997ms - OpenTime: 415.854us - PrepareTime: 284.294us - SinkTime: 3.549ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.905ms - WaitBfTime: 1s204ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 766.572ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.490us - CompressTime: 0ns - ExecTime: 3.632ms - InputRows: 30.552K (30552) - LocalBytesSent: 1.25 MB - LocalSendTime: 106.431us - LocalSentRows: 30.552K (30552) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 71.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.552K (30552) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.419ms - SplitBlockHashComputeTime: 536.8us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 24.933ms - CloseTime: 480.248us - DeserializeAndMergeTime: 0ns - ExecTime: 38.168ms - ExprTime: 39.956us - GetResultsTime: 12.632ms - HashTableComputeTime: 24.569ms - HashTableEmplaceTime: 22.562ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 267.486us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 11.272ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 36.830us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 876.833us - SerializeKeyTime: 0ns - SerializeResultTime: 12.658ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299, 15313, 15347, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.249us - BlocksProduced: 19 - CloseTime: 165.137us - ExecTime: 58.716ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 482.300us - ProcessConjunctTime: 110.945us - ProjectionTime: 3.415ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 173.158ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 54.326ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.074us, 9.348us, 6.052us, 7.923ms, ] - PerScannerRowsRead: [0, 0, 0, 67.72K, ] - PerScannerWaitTime: [41.414ms, 42.337ms, 43.970ms, 45.436ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.619ms - MemoryUsage: - FreeBlocks: 2.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 51.493ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 942ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.672ms - ScannerCtxSchedTime: 173.151ms - ScannerFilterTime: 13.566us - ScannerGetBlockTime: 7.903ms - ScannerInitTime: 250.871us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.247us - BlockConditionsFilteredBloomFilterTime: 513ns - BlockConditionsFilteredDictTime: 237ns - BlockConditionsFilteredTime: 15.504us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 273ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 43.370us - BlockInitTime: 169.115us - BlockLoadTime: 58.494ms - BlocksLoad: 282 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 44.768ms - FirstReadSeekCount: 493 - FirstReadSeekTime: 191.96us - FirstReadTime: 8.402ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.671us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.300ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 531.612us - OutputIndexResultColumnTimer: 19.38us - RawRowsRead: 1.112979M (1112979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 245.246K (245246) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.748ms - ShortPredEvalTime: 315.676us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 28.521us PipelineXTask (index=2):(Active: 37.904ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.522ms - CloseTime: 699.855us - GetBlockTime: 14.773ms - OpenTime: 9.320ms - PrepareTime: 351.793us - SinkTime: 3.278ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.413ms - WaitBfTime: 1s423ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 728.760ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.574us - CompressTime: 0ns - ExecTime: 3.457ms - InputRows: 30.201K (30201) - LocalBytesSent: 1.24 MB - LocalSendTime: 122.180us - LocalSentRows: 30.201K (30201) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 159.183us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.201K (30201) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.218ms - SplitBlockHashComputeTime: 530.917us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 12.364ms - CloseTime: 444.799us - DeserializeAndMergeTime: 0ns - ExecTime: 14.834ms - ExprTime: 25.927us - GetResultsTime: 1.930ms - HashTableComputeTime: 11.945ms - HashTableEmplaceTime: 10.129ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 263.616us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 784.26us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 26.620us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 730.14us - SerializeKeyTime: 0ns - SerializeResultTime: 1.951ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15315, 15349, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.449us - BlocksProduced: 19 - CloseTime: 223.647us - ExecTime: 21.719ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 9.387ms - ProcessConjunctTime: 89.480us - ProjectionTime: 3.821ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.19ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 7.895ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.606us, 6.260us, 4.086us, 10.814ms, ] - PerScannerRowsRead: [0, 0, 0, 66.76K, ] - PerScannerWaitTime: [36.007us, 618.237us, 8.964ms, 401.136us, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.406ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.452ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.13us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.96ms - ScannerCtxSchedTime: 10.10ms - ScannerFilterTime: 19.873us - ScannerGetBlockTime: 10.780ms - ScannerInitTime: 212.690us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 907ns - BlockConditionsFilteredBloomFilterTime: 474ns - BlockConditionsFilteredDictTime: 200ns - BlockConditionsFilteredTime: 8.594us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 275ns - BlockInitSeekCount: 57 - BlockInitSeekTime: 71.459us - BlockInitTime: 221.998us - BlockLoadTime: 72.326ms - BlocksLoad: 288 - CachedPagesNum: 241 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 59.5ms - FirstReadSeekCount: 502 - FirstReadSeekTime: 161.837us - FirstReadTime: 7.739ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.502us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.451ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 551.571us - OutputIndexResultColumnTimer: 17.868us - RawRowsRead: 1.137363M (1137363) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 259.643K (259643) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.819ms - ShortPredEvalTime: 640.928us - TotalPagesNum: 241 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 28.447us PipelineXTask (index=3):(Active: 30.516ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 29.242ms - CloseTime: 596.470us - GetBlockTime: 25.358ms - OpenTime: 347.99us - PrepareTime: 321.312us - SinkTime: 3.410ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.277ms - WaitBfTime: 1s433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 751.224ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.920us - CompressTime: 0ns - ExecTime: 3.521ms - InputRows: 30.3K (30300) - LocalBytesSent: 1.24 MB - LocalSendTime: 82.927us - LocalSentRows: 30.3K (30300) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 95.214us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.3K (30300) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.416ms - SplitBlockHashComputeTime: 516.980us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 23.57ms - CloseTime: 384.626us - DeserializeAndMergeTime: 0ns - ExecTime: 25.365ms - ExprTime: 28.642us - GetResultsTime: 1.804ms - HashTableComputeTime: 22.718ms - HashTableEmplaceTime: 21.64ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 205.419us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 725.763us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 49.897us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 569.398us - SerializeKeyTime: 0ns - SerializeResultTime: 1.825ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15327, 15351, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.310us - BlocksProduced: 19 - CloseTime: 187.965us - ExecTime: 17.981ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 429.720us - ProcessConjunctTime: 72.274us - ProjectionTime: 3.325ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.596ms - TabletNum: 4 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.625ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [5.899us, 7.798us, 7.747us, 51.819ms, ] - PerScannerRowsRead: [0, 0, 0, 68.07K, ] - PerScannerWaitTime: [366.198us, 502.120us, 675.979us, 1.052ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.450ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 155.132ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.49us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.509ms - ScannerCtxSchedTime: 2.589ms - ScannerFilterTime: 14.510us - ScannerGetBlockTime: 51.792ms - ScannerInitTime: 212.545us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 878ns - BlockConditionsFilteredBloomFilterTime: 623ns - BlockConditionsFilteredDictTime: 292ns - BlockConditionsFilteredTime: 10.538us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 494ns - BlockInitSeekCount: 43 - BlockInitSeekTime: 54.242us - BlockInitTime: 189.558us - BlockLoadTime: 206.15ms - BlocksLoad: 259 - CachedPagesNum: 219 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 85.764ms - FirstReadSeekCount: 429 - FirstReadSeekTime: 139.524us - FirstReadTime: 23.310ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.694us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 50.43ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 623.5us - OutputIndexResultColumnTimer: 16.39us - RawRowsRead: 1.023006M (1023006) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 317.994K (317994) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 93.415ms - ShortPredEvalTime: 673.953us - TotalPagesNum: 219 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 32.606us PipelineXTask (index=4):(Active: 919.885us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 363.669us - CloseTime: 114.406us - GetBlockTime: 105.818us - OpenTime: 162.81us - PrepareTime: 269.990us - SinkTime: 67.969us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 791.517us - WaitBfTime: 1s433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 752.517ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.791us - CompressTime: 0ns - ExecTime: 141.910us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.5us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.963us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 359ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 875ns - DeserializeAndMergeTime: 0ns - ExecTime: 46.977us - ExprTime: 0ns - GetResultsTime: 12.597us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 148ns - HashTableSize: 0 - InsertKeysToColumnTime: 710ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.720us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.45us - SerializeKeyTime: 0ns - SerializeResultTime: 15.891us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15329, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.478us - BlocksProduced: 0 - CloseTime: 100.700us - ExecTime: 12.656ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 238.584us - ProcessConjunctTime: 30.382us - ProjectionTime: 4.546us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.43ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 12.225ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.967us, 4.130us, 4.858us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [1.550ms, 1.605ms, 2.887ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 42.281ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 204ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.495ms - ScannerCtxSchedTime: 6.37ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.782us - ScannerInitTime: 84.721us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 624ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.285us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 30.778us - BlockInitTime: 108.177us - BlockLoadTime: 41.860ms - BlocksLoad: 240 - CachedPagesNum: 183 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 33.467ms - FirstReadSeekCount: 474 - FirstReadSeekTime: 124.906us - FirstReadTime: 7.121ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.33us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 41.46us - OutputIndexResultColumnTimer: 21.833us - RawRowsRead: 955.571K (955571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 183 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.17ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 366.518us - CloseTime: 109.777us - GetBlockTime: 87.653us - OpenTime: 161.883us - PrepareTime: 359.15us - SinkTime: 85.519us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 897.913us - WaitBfTime: 1s433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 750.825ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.513us - CompressTime: 0ns - ExecTime: 175.851us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.204us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.275us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 565ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.88us - DeserializeAndMergeTime: 0ns - ExecTime: 42.755us - ExprTime: 0ns - GetResultsTime: 8.583us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 130ns - HashTableSize: 0 - InsertKeysToColumnTime: 584ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.330us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 937ns - SerializeKeyTime: 0ns - SerializeResultTime: 11.624us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287, 15331, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.409us - BlocksProduced: 0 - CloseTime: 94.610us - ExecTime: 19.89ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 323.215us - ProcessConjunctTime: 37.63us - ProjectionTime: 4.76us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.486ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 18.594ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.843us, 6.996us, 6.139us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [3.350ms, 4.068ms, 4.066ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 180.209ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 191ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.158ms - ScannerCtxSchedTime: 11.478ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.803us - ScannerInitTime: 86.349us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 877ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.943us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 39.554us - BlockInitTime: 143.456us - BlockLoadTime: 166.482ms - BlocksLoad: 264 - CachedPagesNum: 203 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 144.264ms - FirstReadSeekCount: 522 - FirstReadSeekTime: 189.455us - FirstReadTime: 9.54ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.547us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 98.192us - OutputIndexResultColumnTimer: 18.785us - RawRowsRead: 1.050326M (1050326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 203 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.281ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 534.961us - CloseTime: 205.930us - GetBlockTime: 117.243us - OpenTime: 284.4us - PrepareTime: 246.565us - SinkTime: 98.186us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.61ms - WaitBfTime: 1s396ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s10ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.17us - CompressTime: 0ns - ExecTime: 173.766us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.64us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.124us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 469ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 807ns - DeserializeAndMergeTime: 0ns - ExecTime: 48.212us - ExprTime: 0ns - GetResultsTime: 5.614us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 178ns - HashTableSize: 0 - InsertKeysToColumnTime: 395ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 36.423us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 993ns - SerializeKeyTime: 0ns - SerializeResultTime: 9.561us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289, 15333, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.630us - BlocksProduced: 0 - CloseTime: 190.40us - ExecTime: 31.277ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 345.348us - ProcessConjunctTime: 85.693us - ProjectionTime: 4.826us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.715ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 30.634ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.103us, 6.878us, 9.242us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [627.476us, 979.547us, 1.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 107.362ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 275ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.802ms - ScannerCtxSchedTime: 2.709ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 5.252us - ScannerInitTime: 134.358us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.5us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.764us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 24 - BlockInitSeekTime: 36.442us - BlockInitTime: 141.565us - BlockLoadTime: 95.775ms - BlocksLoad: 255 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 83.704ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 250.718us - FirstReadTime: 9.901ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.198us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 71.434us - OutputIndexResultColumnTimer: 20.323us - RawRowsRead: 1.017091M (1017091) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.52ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 388.240us - CloseTime: 165.82us - GetBlockTime: 110.317us - OpenTime: 145.280us - PrepareTime: 345.274us - SinkTime: 101.308us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 877.274us - WaitBfTime: 1s433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 846.997ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.208us - CompressTime: 0ns - ExecTime: 260.605us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 53.241us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 145.551us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 409ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.707us - DeserializeAndMergeTime: 0ns - ExecTime: 52.332us - ExprTime: 0ns - GetResultsTime: 11.94us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 116ns - HashTableSize: 0 - InsertKeysToColumnTime: 920ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.857us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.957us - SerializeKeyTime: 0ns - SerializeResultTime: 15.268us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15335, 15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.117us - BlocksProduced: 0 - CloseTime: 144.916us - ExecTime: 48.853ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 212.554us - ProcessConjunctTime: 34.288us - ProjectionTime: 4.527us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.897ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 48.401ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.600us, 5.742us, 5.624us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [3.953ms, 3.969ms, 3.974ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 218.368ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 173ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.9ms - ScannerCtxSchedTime: 11.890ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.731us - ScannerInitTime: 66.579us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 699ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.331us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 36 - BlockInitSeekTime: 35.651us - BlockInitTime: 122.801us - BlockLoadTime: 209.694ms - BlocksLoad: 259 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 89.93ms - FirstReadSeekCount: 512 - FirstReadSeekTime: 208.827us - FirstReadTime: 84.392ms - IOTimer: 0ns - InvertedIndexFilterTime: 935ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 91.816us - OutputIndexResultColumnTimer: 20.521us - RawRowsRead: 1.031134M (1031134) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 198 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.271ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 559.611us - CloseTime: 161.765us - GetBlockTime: 138.607us - OpenTime: 248.300us - PrepareTime: 291.444us - SinkTime: 135.219us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.97ms - WaitBfTime: 1s397ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 982.957ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.654us - CompressTime: 0ns - ExecTime: 227.377us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 70.808us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 511ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.404us - DeserializeAndMergeTime: 0ns - ExecTime: 67.631us - ExprTime: 0ns - GetResultsTime: 11.711us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 47ns - HashTableSize: 0 - InsertKeysToColumnTime: 889ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 47.57us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.367us - SerializeKeyTime: 0ns - SerializeResultTime: 17.248us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15317, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.953us - BlocksProduced: 0 - CloseTime: 142.44us - ExecTime: 17.166ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 321.952us - ProcessConjunctTime: 64.748us - ProjectionTime: 4.914us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.556ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 16.580ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.635us, 9.032us, 8.512us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [1.028ms, 1.059ms, 1.468ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.869ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 211ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.561ms - ScannerCtxSchedTime: 3.548ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 6.98us - ScannerInitTime: 122.31us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 750ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.809us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 38.85us - BlockInitTime: 136.854us - BlockLoadTime: 62.276ms - BlocksLoad: 267 - CachedPagesNum: 204 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 52.249ms - FirstReadSeekCount: 528 - FirstReadSeekTime: 158.998us - FirstReadTime: 8.394ms - IOTimer: 0ns - InvertedIndexFilterTime: 919ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 59.281us - OutputIndexResultColumnTimer: 15.493us - RawRowsRead: 1.066254M (1066254) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 204 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 1.133ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 417.244us - CloseTime: 164.109us - GetBlockTime: 91.550us - OpenTime: 186.379us - PrepareTime: 354.401us - SinkTime: 102.11us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 955.112us - WaitBfTime: 1s397ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s20ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.193us - CompressTime: 0ns - ExecTime: 176.795us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.361us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.146us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 602ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.603us - DeserializeAndMergeTime: 0ns - ExecTime: 82.622us - ExprTime: 0ns - GetResultsTime: 5.785us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 151ns - HashTableSize: 0 - InsertKeysToColumnTime: 330ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 70.400us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.257us - SerializeKeyTime: 0ns - SerializeResultTime: 8.777us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15319, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.466us - BlocksProduced: 0 - CloseTime: 147.371us - ExecTime: 21.536ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 300.604us - ProcessConjunctTime: 43.935us - ProjectionTime: 4.821us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.767ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 21.4ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.244us, 5.000us, 7.380us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [1.680ms, 2.429ms, 2.657ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 111.779ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 236ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 60.903ms - ScannerCtxSchedTime: 6.760ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.957us - ScannerInitTime: 88.13us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 698ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.498us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 22 - BlockInitSeekTime: 36.962us - BlockInitTime: 133.62us - BlockLoadTime: 111.233ms - BlocksLoad: 269 - CachedPagesNum: 206 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 98.676ms - FirstReadSeekCount: 532 - FirstReadSeekTime: 217.388us - FirstReadTime: 10.488ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.93us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 73.80us - OutputIndexResultColumnTimer: 20.643us - RawRowsRead: 1.073036M (1073036) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 206 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 1.162ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 516.146us - CloseTime: 185.590us - GetBlockTime: 153.64us - OpenTime: 174.694us - PrepareTime: 275.19us - SinkTime: 146.795us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 961.938us - WaitBfTime: 1s397ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s20ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.967us - CompressTime: 0ns - ExecTime: 236.770us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 70.962us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.712us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 606ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.610us - DeserializeAndMergeTime: 0ns - ExecTime: 50.648us - ExprTime: 0ns - GetResultsTime: 14.52us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 63ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.133us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.947us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.325us - SerializeKeyTime: 0ns - SerializeResultTime: 19.987us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15321, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.578us - BlocksProduced: 0 - CloseTime: 162.196us - ExecTime: 20.255ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 267.835us - ProcessConjunctTime: 30.958us - ProjectionTime: 3.983us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.120ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 19.694ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.238us, 6.778us, 4.927us, ] - PerScannerRowsRead: [0, 0, 0, ] - PerScannerWaitTime: [3.981ms, 4.481ms, 4.658ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 94.409ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 269ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 55.535ms - ScannerCtxSchedTime: 13.111ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.865us - ScannerInitTime: 81.720us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 871ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.173us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 29.564us - BlockInitTime: 118.24us - BlockLoadTime: 93.898ms - BlocksLoad: 274 - CachedPagesNum: 213 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 82.139ms - FirstReadSeekCount: 542 - FirstReadSeekTime: 167.656us - FirstReadTime: 9.853ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.157us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 100.813us - OutputIndexResultColumnTimer: 20.941us - RawRowsRead: 1.099211M (1099211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 213 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 63.811ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 62.505ms - CloseTime: 646.782us - GetBlockTime: 29.561ms - OpenTime: 424.138us - PrepareTime: 225.599us - SinkTime: 32.359ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.333ms - WaitBfTime: 1s319ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 996.771ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.781us - CompressTime: 0ns - ExecTime: 32.436ms - InputRows: 30.459K (30459) - LocalBytesSent: 1.25 MB - LocalSendTime: 108.979us - LocalSentRows: 30.459K (30459) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 62.364us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 30.459K (30459) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 31.46ms - SplitBlockHashComputeTime: 658.374us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 26.856ms - CloseTime: 467.890us - DeserializeAndMergeTime: 0ns - ExecTime: 29.631ms - ExprTime: 35.195us - GetResultsTime: 2.202ms - HashTableComputeTime: 26.511ms - HashTableEmplaceTime: 24.701ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 241.259us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 887.801us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 24.581us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 692.703us - SerializeKeyTime: 0ns - SerializeResultTime: 2.225ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : RuntimeFilter: (id = 34, type = minmax), RuntimeFilter: (id = 35, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15323, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.898us - BlocksProduced: 19 - CloseTime: 155.17us - ExecTime: 23.495ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 478.398us - ProcessConjunctTime: 107.221us - ProjectionTime: 2.774ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 4.353ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 19.690ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 34, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 35, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [6.374us, 11.229us, 23.480ms, ] - PerScannerRowsRead: [0, 0, 67.46K, ] - PerScannerWaitTime: [1.128ms, 1.116ms, 2.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.106ms - MemoryUsage: - FreeBlocks: 2.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 44.775ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.269us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.136ms - ScannerCtxSchedTime: 4.344ms - ScannerFilterTime: 11.907us - ScannerGetBlockTime: 23.459ms - ScannerInitTime: 216.624us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.92us - BlockConditionsFilteredBloomFilterTime: 325ns - BlockConditionsFilteredDictTime: 228ns - BlockConditionsFilteredTime: 8.191us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 388ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 57.111us - BlockInitTime: 173.441us - BlockLoadTime: 67.545ms - BlocksLoad: 201 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 57.610ms - FirstReadSeekCount: 375 - FirstReadSeekTime: 179.974us - FirstReadTime: 6.621ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.422us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.262ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 219.617us - OutputIndexResultColumnTimer: 15.737us - RawRowsRead: 788.265K (788265) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 74.545K (74545) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 659.576us - ShortPredEvalTime: 103.518us - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 8.387us Fragment 118: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.510ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.310ms - CloseTime: 21.27us - GetBlockTime: 1.342ms - OpenTime: 5.524us - PrepareTime: 164.470us - SinkTime: 867.784us - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.474ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.754ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.773us - CompressTime: 0ns - ExecTime: 944.237us - InputRows: 3.523K (3523) - LocalBytesSent: 268.31 KB - LocalSendTime: 84.953us - LocalSentRows: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 341.56 KB - MergeBlockTime: 0ns - OpenTime: 70.726us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.523K (3523) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 510.167us - SplitBlockHashComputeTime: 75.700us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.5us - ExecTime: 1.254ms - InitProbeSideTime: 289.6us - JoinFilterTimer: 847ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 46.111us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.214us - ProbeFindNextTime: 0ns - ProbeRows: 3.523K (3523) - ProbeTime: 1.77ms - ProbeWhenBuildSideOutputTime: 61.580us - ProbeWhenProbeSideOutputTime: 125.123us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 478.54us - ProjectionTime: 87.711us - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 99.6us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 350.00 KB - OpenTime: 807ns - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s376ms PipelineXTask (index=3):(Active: 2.481ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.316ms - CloseTime: 23.620us - GetBlockTime: 1.278ms - OpenTime: 6.419us - PrepareTime: 128.812us - SinkTime: 976.366us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.448ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.533ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.175us - CompressTime: 0ns - ExecTime: 1.59ms - InputRows: 3.591K (3591) - LocalBytesSent: 273.51 KB - LocalSendTime: 140.954us - LocalSentRows: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 420.94 KB - MergeBlockTime: 0ns - OpenTime: 75.805us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.591K (3591) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 543.585us - SplitBlockHashComputeTime: 77.367us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.324us - ExecTime: 1.235ms - InitProbeSideTime: 306.27us - JoinFilterTimer: 522ns - MemoryUsage: - PeakMemoryUsage: 28.00 KB - ProbeKeyArena: 28.00 KB - OpenTime: 17.671us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.545us - ProbeFindNextTime: 0ns - ProbeRows: 3.591K (3591) - ProbeTime: 1.90ms - ProbeWhenBuildSideOutputTime: 52.262us - ProbeWhenProbeSideOutputTime: 111.717us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 478.917us - ProjectionTime: 90.201us - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 50.873us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - OpenTime: 698ns - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s392ms PipelineXTask (index=6):(Active: 26.862ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.683ms - CloseTime: 42.715us - GetBlockTime: 24.542ms - OpenTime: 9.122us - PrepareTime: 119.846us - SinkTime: 2.29ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.711ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.213ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.223us - CompressTime: 0ns - ExecTime: 2.116ms - InputRows: 3.484K (3484) - LocalBytesSent: 265.39 KB - LocalSendTime: 121.777us - LocalSentRows: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 338.94 KB - MergeBlockTime: 0ns - OpenTime: 71.680us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.484K (3484) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 506.716us - SplitBlockHashComputeTime: 75.109us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 17.131us - ExecTime: 24.449ms - InitProbeSideTime: 312.347us - JoinFilterTimer: 994ns - MemoryUsage: - PeakMemoryUsage: 28.00 KB - ProbeKeyArena: 28.00 KB - OpenTime: 17.297us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.561us - ProbeFindNextTime: 0ns - ProbeRows: 3.484K (3484) - ProbeTime: 24.276ms - ProbeWhenBuildSideOutputTime: 66.549us - ProbeWhenProbeSideOutputTime: 136.168us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.598ms - ProjectionTime: 96.811us - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 77.370us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 338.00 KB - OpenTime: 654ns - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s399ms PipelineXTask (index=9):(Active: 2.763ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.585ms - CloseTime: 26.159us - GetBlockTime: 1.406ms - OpenTime: 7.775us - PrepareTime: 137.532us - SinkTime: 1.83ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.721ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.298ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.118us - CompressTime: 0ns - ExecTime: 1.161ms - InputRows: 3.473K (3473) - LocalBytesSent: 264.52 KB - LocalSendTime: 142.572us - LocalSentRows: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 335.88 KB - MergeBlockTime: 0ns - OpenTime: 71.585us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.473K (3473) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 637.529us - SplitBlockHashComputeTime: 93.831us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 11.601us - ExecTime: 1.321ms - InitProbeSideTime: 287.21us - JoinFilterTimer: 1.49us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 16.298us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.641us - ProbeFindNextTime: 0ns - ProbeRows: 3.473K (3473) - ProbeTime: 1.162ms - ProbeWhenBuildSideOutputTime: 56.11us - ProbeWhenProbeSideOutputTime: 107.761us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 540.691us - ProjectionTime: 92.982us - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 79.708us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 245.00 KB - OpenTime: 653ns - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s374ms PipelineXTask (index=12):(Active: 3.889ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.714ms - CloseTime: 22.51us - GetBlockTime: 2.69ms - OpenTime: 6.559us - PrepareTime: 141.214us - SinkTime: 1.506ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.848ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 197.230ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.508us - CompressTime: 0ns - ExecTime: 1.591ms - InputRows: 3.529K (3529) - LocalBytesSent: 268.78 KB - LocalSendTime: 144.5us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 418.25 KB - MergeBlockTime: 0ns - OpenTime: 82.76us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 912.313us - SplitBlockHashComputeTime: 111.65us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.397us - ExecTime: 1.958ms - InitProbeSideTime: 379.36us - JoinFilterTimer: 1.746us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 27.598us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.291us - ProbeFindNextTime: 0ns - ProbeRows: 3.529K (3529) - ProbeTime: 1.692ms - ProbeWhenBuildSideOutputTime: 91.186us - ProbeWhenProbeSideOutputTime: 156.103us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 771.877us - ProjectionTime: 168.104us - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 95.612us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 183.00 KB - OpenTime: 769ns - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s411ms PipelineXTask (index=15):(Active: 40.932ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.781ms - CloseTime: 18.492us - GetBlockTime: 1.544ms - OpenTime: 7.468us - PrepareTime: 118.899us - SinkTime: 1.69ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.851ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.62ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.663us - CompressTime: 0ns - ExecTime: 1.140ms - InputRows: 3.497K (3497) - LocalBytesSent: 266.36 KB - LocalSendTime: 80.538us - LocalSentRows: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 338.50 KB - MergeBlockTime: 0ns - OpenTime: 66.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.497K (3497) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 672.200us - SplitBlockHashComputeTime: 86.340us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 7.967us - ExecTime: 1.469ms - InitProbeSideTime: 331.723us - JoinFilterTimer: 1.570us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 22.434us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.327us - ProbeFindNextTime: 0ns - ProbeRows: 3.497K (3497) - ProbeTime: 1.288ms - ProbeWhenBuildSideOutputTime: 92.23us - ProbeWhenProbeSideOutputTime: 121.816us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 564.707us - ProjectionTime: 108.997us - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 64.580us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 537ns - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s368ms PipelineXTask (index=18):(Active: 2.493ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.305ms - CloseTime: 27.172us - GetBlockTime: 1.289ms - OpenTime: 24.470us - PrepareTime: 129.563us - SinkTime: 916.572us - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.3ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.577us - CompressTime: 0ns - ExecTime: 1.6ms - InputRows: 3.516K (3516) - LocalBytesSent: 267.79 KB - LocalSendTime: 117.890us - LocalSentRows: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 353.94 KB - MergeBlockTime: 0ns - OpenTime: 78.792us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.516K (3516) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 531.677us - SplitBlockHashComputeTime: 78.48us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.439us - ExecTime: 1.227ms - InitProbeSideTime: 265.677us - JoinFilterTimer: 1.64us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 14.342us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.994us - ProbeFindNextTime: 0ns - ProbeRows: 3.516K (3516) - ProbeTime: 1.80ms - ProbeWhenBuildSideOutputTime: 61.241us - ProbeWhenProbeSideOutputTime: 98.475us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 512.717us - ProjectionTime: 78.312us - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 59.581us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 801ns - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s395ms PipelineXTask (index=21):(Active: 3.271ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.93ms - CloseTime: 31.247us - GetBlockTime: 1.646ms - OpenTime: 7.278us - PrepareTime: 132.928us - SinkTime: 1.310ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.223ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.912ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.650us - CompressTime: 0ns - ExecTime: 1.403ms - InputRows: 3.665K (3665) - LocalBytesSent: 279.15 KB - LocalSendTime: 164.448us - LocalSentRows: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 458.06 KB - MergeBlockTime: 0ns - OpenTime: 82.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.665K (3665) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 808.979us - SplitBlockHashComputeTime: 94.541us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 11.64us - ExecTime: 1.555ms - InitProbeSideTime: 335.597us - JoinFilterTimer: 883ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.722us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.401us - ProbeFindNextTime: 0ns - ProbeRows: 3.665K (3665) - ProbeTime: 1.384ms - ProbeWhenBuildSideOutputTime: 77.144us - ProbeWhenProbeSideOutputTime: 119.176us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 647.170us - ProjectionTime: 102.965us - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 66.558us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 175.00 KB - OpenTime: 619ns - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s442ms PipelineXTask (index=24):(Active: 35.200ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.963ms - CloseTime: 25.108ms - GetBlockTime: 1.961ms - OpenTime: 4.42us - PrepareTime: 118.537us - SinkTime: 7.870ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.205ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.115us - CompressTime: 0ns - ExecTime: 7.937ms - InputRows: 3.657K (3657) - LocalBytesSent: 278.53 KB - LocalSendTime: 6.632ms - LocalSentRows: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 421.00 KB - MergeBlockTime: 0ns - OpenTime: 60.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.657K (3657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 821.29us - SplitBlockHashComputeTime: 126.311us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 25.88ms - ExecTime: 26.940ms - InitProbeSideTime: 419.544us - JoinFilterTimer: 1.814us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 22.714us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.438us - ProbeFindNextTime: 0ns - ProbeRows: 3.657K (3657) - ProbeTime: 1.627ms - ProbeWhenBuildSideOutputTime: 97.808us - ProbeWhenProbeSideOutputTime: 161.764us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 712.986us - ProjectionTime: 151.232us - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 74.732us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 105.00 KB - OpenTime: 764ns - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s413ms PipelineXTask (index=27):(Active: 2.249ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.107ms - CloseTime: 17.987us - GetBlockTime: 1.244ms - OpenTime: 5.453us - PrepareTime: 113.164us - SinkTime: 798.498us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.219ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 129.991ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.890us - CompressTime: 0ns - ExecTime: 869.774us - InputRows: 3.529K (3529) - LocalBytesSent: 268.81 KB - LocalSendTime: 84.961us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 404.94 KB - MergeBlockTime: 0ns - OpenTime: 66.102us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 454.51us - SplitBlockHashComputeTime: 73.920us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 7.843us - ExecTime: 1.196ms - InitProbeSideTime: 316.120us - JoinFilterTimer: 709ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 12.283us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.869us - ProbeFindNextTime: 0ns - ProbeRows: 3.529K (3529) - ProbeTime: 1.57ms - ProbeWhenBuildSideOutputTime: 69.617us - ProbeWhenProbeSideOutputTime: 127.333us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 421.847us - ProjectionTime: 93.96us - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 49.647us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - OpenTime: 510ns - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s399ms PipelineXTask (index=30):(Active: 5.631ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.471ms - CloseTime: 25.287us - GetBlockTime: 3.211ms - OpenTime: 8.203us - PrepareTime: 119.420us - SinkTime: 2.136ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.587ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.968ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.293us - CompressTime: 0ns - ExecTime: 2.211ms - InputRows: 9.221K (9221) - LocalBytesSent: 702.37 KB - LocalSendTime: 97.150us - LocalSentRows: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 1.04 MB - MergeBlockTime: 0ns - OpenTime: 71.478us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.221K (9221) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.529ms - SplitBlockHashComputeTime: 206.79us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 12.393us - ExecTime: 3.119ms - InitProbeSideTime: 719.198us - JoinFilterTimer: 1.455us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 17.331us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.715us - ProbeFindNextTime: 0ns - ProbeRows: 9.221K (9221) - ProbeTime: 2.843ms - ProbeWhenBuildSideOutputTime: 154.806us - ProbeWhenProbeSideOutputTime: 208.276us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.476ms - ProjectionTime: 181.180us - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 71.924us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 312.00 KB - OpenTime: 531ns - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s364ms PipelineXTask (index=33):(Active: 22.219ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.61ms - CloseTime: 26.718us - GetBlockTime: 20.549ms - OpenTime: 6.3us - PrepareTime: 119.112us - SinkTime: 1.374ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.655ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.241ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.324us - CompressTime: 0ns - ExecTime: 1.453ms - InputRows: 3.573K (3573) - LocalBytesSent: 272.13 KB - LocalSendTime: 110.353us - LocalSentRows: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 405.00 KB - MergeBlockTime: 0ns - OpenTime: 71.984us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.573K (3573) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 832.108us - SplitBlockHashComputeTime: 135.155us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.737us - ExecTime: 20.467ms - InitProbeSideTime: 374.75us - JoinFilterTimer: 1.900us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 11.87us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.544us - ProbeFindNextTime: 0ns - ProbeRows: 3.573K (3573) - ProbeTime: 20.287ms - ProbeWhenBuildSideOutputTime: 96.171us - ProbeWhenProbeSideOutputTime: 161.689us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 19.440ms - ProjectionTime: 107.537us - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 71.431us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 385.00 KB - OpenTime: 642ns - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 4s389ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.362ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.189ms - CloseTime: 13.46us - GetBlockTime: 2.28ms - OpenTime: 3.333us - PrepareTime: 150.243us - SinkTime: 111.955us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.317ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.884ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 99.333us - InputRows: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.159us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 1.875ms - CloseTime: 5.40us - ExecTime: 1.895ms - HashTableComputeTime: 1.406ms - HashTableEmplaceTime: 1.50ms - HashTableInputCount: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.95us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.267us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 161.449us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 420.00 KB - OpenTime: 20.305us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s314ms PipelineXTask (index=4):(Active: 39.10ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 38.924ms - CloseTime: 29.293us - GetBlockTime: 38.823ms - OpenTime: 2.273us - PrepareTime: 50.283us - SinkTime: 63.133us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.348ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.149ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 59.646us - InputRows: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.104us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.5ms - CloseTime: 17.480us - ExecTime: 2.37ms - HashTableComputeTime: 1.568ms - HashTableEmplaceTime: 1.183ms - HashTableInputCount: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.929us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.529us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.818ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 428.00 KB - PeakMemoryUsage: 428.00 KB - OpenTime: 14.675us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s307ms PipelineXTask (index=7):(Active: 2.527ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.447ms - CloseTime: 18.927us - GetBlockTime: 2.267ms - OpenTime: 3.717us - PrepareTime: 51.291us - SinkTime: 121.33us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.495ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.912ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 116.766us - InputRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.109us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.134ms - CloseTime: 593ns - ExecTime: 2.154ms - HashTableComputeTime: 1.742ms - HashTableEmplaceTime: 1.332ms - HashTableInputCount: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.335us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 13.703us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 131.760us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 350.00 KB - PeakMemoryUsage: 350.00 KB - OpenTime: 15.777us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s376ms PipelineXTask (index=10):(Active: 2.661ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.576ms - CloseTime: 19.54us - GetBlockTime: 2.354ms - OpenTime: 2.507us - PrepareTime: 58.117us - SinkTime: 157.554us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.627ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.930ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 152.14us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.106us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.224ms - CloseTime: 5.971us - ExecTime: 2.250ms - HashTableComputeTime: 1.808ms - HashTableEmplaceTime: 1.396ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.760us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.571us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 315.00 KB - PeakMemoryUsage: 315.00 KB - OpenTime: 25.38us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s340ms PipelineXTask (index=13):(Active: 3.309ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.241ms - CloseTime: 12.737us - GetBlockTime: 3.54ms - OpenTime: 1.958us - PrepareTime: 49.83us - SinkTime: 127.255us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.285ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.26ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.716us - InputRows: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.907ms - CloseTime: 222ns - ExecTime: 2.931ms - HashTableComputeTime: 2.377ms - HashTableEmplaceTime: 1.918ms - HashTableInputCount: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.454us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.881us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 127.929us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 315.00 KB - PeakMemoryUsage: 315.00 KB - OpenTime: 13.486us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s362ms PipelineXTask (index=16):(Active: 29.176ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.72ms - CloseTime: 8.437us - GetBlockTime: 28.959ms - OpenTime: 2.792us - PrepareTime: 86.83us - SinkTime: 66.699us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.340ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.211ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 62.76us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1000ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 28.830ms - CloseTime: 4.629us - ExecTime: 28.852ms - HashTableComputeTime: 1.542ms - HashTableEmplaceTime: 1.195ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.529us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.822us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 152.713us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 451.00 KB - MemoryUsage: - Blocks: 416.00 KB - PeakMemoryUsage: 416.00 KB - OpenTime: 49.340us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s304ms PipelineXTask (index=19):(Active: 2.281ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.209ms - CloseTime: 14.506us - GetBlockTime: 2.37ms - OpenTime: 3.138us - PrepareTime: 48.793us - SinkTime: 122.20us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.256ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.31ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 117.618us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.4us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 1.926ms - CloseTime: 2.258us - ExecTime: 1.944ms - HashTableComputeTime: 1.503ms - HashTableEmplaceTime: 1.132ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.752us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.644us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.861us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 428.00 KB - PeakMemoryUsage: 428.00 KB - OpenTime: 14.313us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s337ms PipelineXTask (index=22):(Active: 2.614ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.543ms - CloseTime: 18.879us - GetBlockTime: 2.340ms - OpenTime: 2.720us - PrepareTime: 44.978us - SinkTime: 131.635us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.583ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 157.809ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 126.276us - InputRows: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.111us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.193ms - CloseTime: 3.285us - ExecTime: 2.212ms - HashTableComputeTime: 1.736ms - HashTableEmplaceTime: 1.332ms - HashTableInputCount: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.850us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 12.56us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 145.973us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 350.00 KB - PeakMemoryUsage: 350.00 KB - OpenTime: 15.845us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s335ms PipelineXTask (index=25):(Active: 2.7ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.909ms - CloseTime: 6.318us - GetBlockTime: 1.821ms - OpenTime: 2.716us - PrepareTime: 83.368us - SinkTime: 50.273us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.992ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.72ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 50.83us - InputRows: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.382us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 1.724ms - CloseTime: 1.465us - ExecTime: 1.740ms - HashTableComputeTime: 1.397ms - HashTableEmplaceTime: 1.84ms - HashTableInputCount: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.833us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.661us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.401us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 428.00 KB - PeakMemoryUsage: 428.00 KB - OpenTime: 31.590us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s333ms PipelineXTask (index=28):(Active: 2.104ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.9ms - CloseTime: 9.577us - GetBlockTime: 1.853ms - OpenTime: 3.653us - PrepareTime: 74.446us - SinkTime: 100.368us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.79ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.537ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 97.686us - InputRows: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.163us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 1.735ms - CloseTime: 2.113us - ExecTime: 1.753ms - HashTableComputeTime: 1.363ms - HashTableEmplaceTime: 1.25ms - HashTableInputCount: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.954us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.460us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 136.90us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 428.00 KB - PeakMemoryUsage: 428.00 KB - OpenTime: 39.763us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s349ms PipelineXTask (index=31):(Active: 22.464ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.368ms - CloseTime: 28.786us - GetBlockTime: 22.223ms - OpenTime: 2.277us - PrepareTime: 59.813us - SinkTime: 95.500us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.367ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.920ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 91.718us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.57us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 22.59ms - CloseTime: 19.387us - ExecTime: 22.92ms - HashTableComputeTime: 21.593ms - HashTableEmplaceTime: 21.203ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.314us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.512us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 165.364us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 455.00 KB - MemoryUsage: - Blocks: 455.00 KB - PeakMemoryUsage: 455.00 KB - OpenTime: 16.856us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s311ms PipelineXTask (index=34):(Active: 2.547ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.470ms - CloseTime: 12.450us - GetBlockTime: 2.277ms - OpenTime: 2.248us - PrepareTime: 57.296us - SinkTime: 132.384us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.524ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.525ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 130.473us - InputRows: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.40us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.132ms - CloseTime: 203ns - ExecTime: 2.148ms - HashTableComputeTime: 1.749ms - HashTableEmplaceTime: 1.364ms - HashTableInputCount: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.680us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.984us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 145.261us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 463.00 KB - MemoryUsage: - Blocks: 175.00 KB - PeakMemoryUsage: 175.00 KB - OpenTime: 16.518us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s293ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 13.937ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 13.863ms - CloseTime: 16.680us - GetBlockTime: 2.773ms - OpenTime: 2.675us - PrepareTime: 48.440us - SinkTime: 10.681ms - GetBlockCounter: 493 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.875ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 259.52ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 109.979us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.637ms - BuildTableInsertTime: 4.438ms - BuildTableTime: 4.542ms - CloseTime: 0ns - ExecTime: 10.634ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 9.637us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=71): - BlocksProduced: 492 - BytesReceived: 0.00 - CloseTime: 11.984us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.695ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.81 MB - MemoryUsage: - Blocks: 2.84 MB - PeakMemoryUsage: 12.11 MB - OpenTime: 16.306us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s987ms PipelineXTask (index=5):(Active: 132.731us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.839us - CloseTime: 11.204us - GetBlockTime: 0ns - OpenTime: 2.194us - PrepareTime: 75.702us - SinkTime: 23.277us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.925us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.854ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.87us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.185us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s256ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.988us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.234us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 107.389us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.184us - CloseTime: 14.42us - GetBlockTime: 0ns - OpenTime: 2.490us - PrepareTime: 44.837us - SinkTime: 24.877us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.460us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.10ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.767us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.221us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s260ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.967us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.231us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.427us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 118.374us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.529us - CloseTime: 15.898us - GetBlockTime: 0ns - OpenTime: 3.111us - PrepareTime: 43.460us - SinkTime: 22.183us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.750us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.64ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.734us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.633us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s255ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.863us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.965us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 100.136us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.823us - CloseTime: 11.617us - GetBlockTime: 0ns - OpenTime: 3.140us - PrepareTime: 41.664us - SinkTime: 18.396us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.754us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.753ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.623us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.550us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s244ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.517us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.290us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.839us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 97.387us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.877us - CloseTime: 5.28us - GetBlockTime: 0ns - OpenTime: 3.690us - PrepareTime: 59.986us - SinkTime: 6.767us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.766us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.689ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.690us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.956us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s238ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.44us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.725us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 147.405us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 19.763us - CloseTime: 2.880us - GetBlockTime: 0ns - OpenTime: 2.312us - PrepareTime: 102.132us - SinkTime: 4.568us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 138.10us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.846ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 20.891us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.309us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s244ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.23us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.631us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 111.555us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 42.166us - CloseTime: 14.647us - GetBlockTime: 0ns - OpenTime: 3.669us - PrepareTime: 47.1us - SinkTime: 22.973us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.144us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.755ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.676us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.15us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s248ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.539us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.344us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.98us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 71.441us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.527us - CloseTime: 5.296us - GetBlockTime: 0ns - OpenTime: 2.413us - PrepareTime: 39.626us - SinkTime: 4.754us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 60.734us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.686ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.469us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.704us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s242ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.26us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.408us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.682us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 75.613us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.69us - CloseTime: 6.393us - GetBlockTime: 0ns - OpenTime: 2.484us - PrepareTime: 38.731us - SinkTime: 6.553us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 62.695us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.206ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.727us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.179us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s260ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.938us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.222us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 103.504us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.443us - CloseTime: 12.920us - GetBlockTime: 0ns - OpenTime: 3.495us - PrepareTime: 35.360us - SinkTime: 19.852us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.209us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.838ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.844us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.195us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s250ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.829us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.785us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.149us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 108.901us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 43.895us - CloseTime: 8.809us - GetBlockTime: 0ns - OpenTime: 2.330us - PrepareTime: 50.596us - SinkTime: 26.331us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.588us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.178ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896306e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.599us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.46us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s247ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.349us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.517us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 119: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 90.774ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 90.556ms - CloseTime: 29.222us - GetBlockTime: 82.147ms - OpenTime: 4.918us - PrepareTime: 172.855us - SinkTime: 6.336ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.632ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 625.591ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.661us - CompressTime: 0ns - ExecTime: 6.245ms - InputRows: 3.591K (3591) - LocalBytesSent: 255.97 KB - LocalSendTime: 67.583us - LocalSentRows: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 73.414us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.591K (3591) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.54ms - SplitBlockHashComputeTime: 1.568ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.213ms - CloseTime: 2.176us - ExecTime: 4.555ms - HashTableComputeTime: 3.68ms - HashTableEmplaceTime: 2.412ms - HashTableInputCount: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.299us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 735 - BuildOutputBlock: 0ns - CloseTime: 5.987us - ExecTime: 71.146ms - InitProbeSideTime: 20.412ms - JoinFilterTimer: 52.946us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 14.54us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 104.25us - ProbeFindNextTime: 0ns - ProbeRows: 3.296837M (3296837) - ProbeTime: 64.894ms - ProbeWhenBuildSideOutputTime: 2.873ms - ProbeWhenProbeSideOutputTime: 450.563us - ProbeWhenProcessHashTableTime: 10.57us - ProbeWhenSearchHashTableTime: 35.427ms - ProjectionTime: 4.178ms - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s365ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 6.507us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.940ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.10 MB - MemoryUsage: - Blocks: 19.06 MB - PeakMemoryUsage: 19.06 MB - OpenTime: 16.902us - ProjectionTime: 0ns - RowsProduced: 3.296837M (3296837) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s232ms PipelineXTask (index=2):(Active: 128.218ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 127.901ms - CloseTime: 45.980us - GetBlockTime: 118.499ms - OpenTime: 10.986us - PrepareTime: 252.8us - SinkTime: 7.456ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.398ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 863.574ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.666us - CompressTime: 0ns - ExecTime: 7.355ms - InputRows: 9.221K (9221) - LocalBytesSent: 657.32 KB - LocalSendTime: 105.510us - LocalSentRows: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 0ns - OpenTime: 75.285us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 9.221K (9221) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.643ms - SplitBlockHashComputeTime: 1.832ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 6.377ms - CloseTime: 5.117us - ExecTime: 6.811ms - HashTableComputeTime: 4.797ms - HashTableEmplaceTime: 3.637ms - HashTableInputCount: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.526us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 736 - BuildOutputBlock: 0ns - CloseTime: 8.792us - ExecTime: 65.740ms - InitProbeSideTime: 22.648ms - JoinFilterTimer: 49.285us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 105.262us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 101.879us - ProbeFindNextTime: 0ns - ProbeRows: 3.295461M (3295461) - ProbeTime: 59.285ms - ProbeWhenBuildSideOutputTime: 3.80ms - ProbeWhenProbeSideOutputTime: 460.239us - ProbeWhenProcessHashTableTime: 283.51us - ProbeWhenSearchHashTableTime: 27.210ms - ProjectionTime: 4.332ms - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s133ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 11.706us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.677ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.16 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 28.339us - ProjectionTime: 0ns - RowsProduced: 3.295461M (3295461) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s209ms PipelineXTask (index=4):(Active: 106.261ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 106.30ms - CloseTime: 33.531us - GetBlockTime: 97.847ms - OpenTime: 7.958us - PrepareTime: 181.398us - SinkTime: 6.433ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.854ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 670.430ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.705us - CompressTime: 0ns - ExecTime: 6.358ms - InputRows: 3.523K (3523) - LocalBytesSent: 251.10 KB - LocalSendTime: 107.187us - LocalSentRows: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 77.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.523K (3523) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.257ms - SplitBlockHashComputeTime: 1.541ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 3.565ms - CloseTime: 1.904us - ExecTime: 3.937ms - HashTableComputeTime: 2.478ms - HashTableEmplaceTime: 1.854ms - HashTableInputCount: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 19.499us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 721 - BuildOutputBlock: 0ns - CloseTime: 7.127us - ExecTime: 75.103ms - InitProbeSideTime: 20.744ms - JoinFilterTimer: 44.624us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 15.304us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 98.79us - ProbeFindNextTime: 0ns - ProbeRows: 3.295492M (3295492) - ProbeTime: 69.415ms - ProbeWhenBuildSideOutputTime: 2.475ms - ProbeWhenProbeSideOutputTime: 392.275us - ProbeWhenProcessHashTableTime: 8.184us - ProbeWhenSearchHashTableTime: 33.242ms - ProjectionTime: 3.749ms - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s276ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 6.329us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.532ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.92 MB - MemoryUsage: - Blocks: 18.99 MB - PeakMemoryUsage: 18.99 MB - OpenTime: 14.151us - ProjectionTime: 0ns - RowsProduced: 3.295492M (3295492) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s258ms PipelineXTask (index=6):(Active: 75.682ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 75.485ms - CloseTime: 27.240us - GetBlockTime: 67.298ms - OpenTime: 7.45us - PrepareTime: 152.474us - SinkTime: 6.472ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.214ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 666.362ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.917us - CompressTime: 0ns - ExecTime: 6.406ms - InputRows: 3.657K (3657) - LocalBytesSent: 260.66 KB - LocalSendTime: 84.410us - LocalSentRows: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 71.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.657K (3657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.360ms - SplitBlockHashComputeTime: 1.441ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.261ms - CloseTime: 2.991us - ExecTime: 4.634ms - HashTableComputeTime: 3.58ms - HashTableEmplaceTime: 2.370ms - HashTableInputCount: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.761us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 736 - BuildOutputBlock: 0ns - CloseTime: 5.237us - ExecTime: 56.476ms - InitProbeSideTime: 20.844ms - JoinFilterTimer: 44.782us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 14.452us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.265us - ProbeFindNextTime: 0ns - ProbeRows: 3.296171M (3296171) - ProbeTime: 50.964ms - ProbeWhenBuildSideOutputTime: 2.431ms - ProbeWhenProbeSideOutputTime: 390.343us - ProbeWhenProcessHashTableTime: 8.83us - ProbeWhenSearchHashTableTime: 22.364ms - ProjectionTime: 3.620ms - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s435ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 4.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.870ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.98 MB - MemoryUsage: - Blocks: 19.12 MB - PeakMemoryUsage: 19.12 MB - OpenTime: 16.462us - ProjectionTime: 0ns - RowsProduced: 3.296171M (3296171) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s140ms PipelineXTask (index=8):(Active: 117.25ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 116.743ms - CloseTime: 49.240us - GetBlockTime: 99.194ms - OpenTime: 8.540us - PrepareTime: 214.693us - SinkTime: 15.959ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.542ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 535.480ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.444us - CompressTime: 0ns - ExecTime: 15.917ms - InputRows: 3.665K (3665) - LocalBytesSent: 261.25 KB - LocalSendTime: 112.364us - LocalSentRows: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 94.898us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.665K (3665) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.36ms - SplitBlockHashComputeTime: 1.356ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.70ms - CloseTime: 13.943us - ExecTime: 4.417ms - HashTableComputeTime: 3.3ms - HashTableEmplaceTime: 2.395ms - HashTableInputCount: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.686us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 728 - BuildOutputBlock: 0ns - CloseTime: 9.97us - ExecTime: 57.273ms - InitProbeSideTime: 22.449ms - JoinFilterTimer: 38.940us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 16.779us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 97.611us - ProbeFindNextTime: 0ns - ProbeRows: 3.29521M (3295210) - ProbeTime: 51.968ms - ProbeWhenBuildSideOutputTime: 2.352ms - ProbeWhenProbeSideOutputTime: 329.163us - ProbeWhenProcessHashTableTime: 9.658us - ProbeWhenSearchHashTableTime: 22.391ms - ProjectionTime: 3.383ms - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s578ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 5.999us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.358ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.58 MB - MemoryUsage: - Blocks: 19.39 MB - PeakMemoryUsage: 19.39 MB - OpenTime: 14.815us - ProjectionTime: 0ns - RowsProduced: 3.29521M (3295210) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s86ms PipelineXTask (index=10):(Active: 110.36ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 109.790ms - CloseTime: 53.68us - GetBlockTime: 90.467ms - OpenTime: 11.0us - PrepareTime: 170.968us - SinkTime: 17.307ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 45 - NumBlockedTimes: 47 - NumScheduleTimes: 47 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.490ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 446.479ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.494us - CompressTime: 0ns - ExecTime: 17.218ms - InputRows: 3.497K (3497) - LocalBytesSent: 249.27 KB - LocalSendTime: 75.279us - LocalSentRows: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 412.00 KB - MergeBlockTime: 0ns - OpenTime: 65.316us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.497K (3497) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.924ms - SplitBlockHashComputeTime: 1.540ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 3.865ms - CloseTime: 4.327us - ExecTime: 4.219ms - HashTableComputeTime: 2.672ms - HashTableEmplaceTime: 1.973ms - HashTableInputCount: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.500us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 730 - BuildOutputBlock: 0ns - CloseTime: 31.954us - ExecTime: 79.564ms - InitProbeSideTime: 30.826ms - JoinFilterTimer: 41.652us - MemoryUsage: - PeakMemoryUsage: 68.88 KB - ProbeKeyArena: 68.88 KB - OpenTime: 31.500us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 111.731us - ProbeFindNextTime: 0ns - ProbeRows: 3.295336M (3295336) - ProbeTime: 73.523ms - ProbeWhenBuildSideOutputTime: 4.103ms - ProbeWhenProbeSideOutputTime: 437.662us - ProbeWhenProcessHashTableTime: 8.138us - ProbeWhenSearchHashTableTime: 32.651ms - ProjectionTime: 3.956ms - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s666ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 4.535us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.304ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.99 MB - MemoryUsage: - Blocks: 19.31 MB - PeakMemoryUsage: 19.31 MB - OpenTime: 14.396us - ProjectionTime: 0ns - RowsProduced: 3.295336M (3295336) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s92ms PipelineXTask (index=12):(Active: 91.140ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 90.916ms - CloseTime: 34.521us - GetBlockTime: 83.824ms - OpenTime: 6.235us - PrepareTime: 174.370us - SinkTime: 5.471ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.83ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 481.684ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.677us - CompressTime: 0ns - ExecTime: 5.442ms - InputRows: 3.473K (3473) - LocalBytesSent: 247.56 KB - LocalSendTime: 99.479us - LocalSentRows: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 97.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.473K (3473) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.520ms - SplitBlockHashComputeTime: 1.399ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 3.319ms - CloseTime: 6.360us - ExecTime: 3.665ms - HashTableComputeTime: 2.323ms - HashTableEmplaceTime: 1.751ms - HashTableInputCount: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.575us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 4.645us - ExecTime: 73.648ms - InitProbeSideTime: 21.229ms - JoinFilterTimer: 37.943us - MemoryUsage: - PeakMemoryUsage: 68.91 KB - ProbeKeyArena: 68.91 KB - OpenTime: 11.60us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 87.788us - ProbeFindNextTime: 0ns - ProbeRows: 3.295972M (3295972) - ProbeTime: 68.498ms - ProbeWhenBuildSideOutputTime: 2.200ms - ProbeWhenProbeSideOutputTime: 344.23us - ProbeWhenProcessHashTableTime: 10.388us - ProbeWhenSearchHashTableTime: 40.233ms - ProjectionTime: 3.229ms - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s666ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 8.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.349ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.70 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 14.50us - ProjectionTime: 0ns - RowsProduced: 3.295972M (3295972) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s75ms PipelineXTask (index=14):(Active: 109.531ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 109.281ms - CloseTime: 20.472us - GetBlockTime: 101.210ms - OpenTime: 6.820us - PrepareTime: 214.24us - SinkTime: 6.291ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 29 - NumBlockedTimes: 31 - NumScheduleTimes: 31 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 461.7ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.734us - CompressTime: 0ns - ExecTime: 6.216ms - InputRows: 3.529K (3529) - LocalBytesSent: 251.54 KB - LocalSendTime: 63.595us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 86.685us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.83ms - SplitBlockHashComputeTime: 1.527ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 6.244ms - CloseTime: 3.367us - ExecTime: 6.587ms - HashTableComputeTime: 5.122ms - HashTableEmplaceTime: 1.873ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.324us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 731 - BuildOutputBlock: 0ns - CloseTime: 3.47us - ExecTime: 87.908ms - InitProbeSideTime: 19.632ms - JoinFilterTimer: 47.815us - MemoryUsage: - PeakMemoryUsage: 68.91 KB - ProbeKeyArena: 68.91 KB - OpenTime: 22.652us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.662us - ProbeFindNextTime: 0ns - ProbeRows: 3.295121M (3295121) - ProbeTime: 82.316ms - ProbeWhenBuildSideOutputTime: 2.608ms - ProbeWhenProbeSideOutputTime: 398.643us - ProbeWhenProcessHashTableTime: 9.373us - ProbeWhenSearchHashTableTime: 54.270ms - ProjectionTime: 3.661ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s666ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 786 - BytesReceived: 0.00 - CloseTime: 3.456us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.484ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.45 MB - MemoryUsage: - Blocks: 18.97 MB - PeakMemoryUsage: 18.97 MB - OpenTime: 45.570us - ProjectionTime: 0ns - RowsProduced: 3.295121M (3295121) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s77ms PipelineXTask (index=16):(Active: 146.819ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 146.563ms - CloseTime: 24.837us - GetBlockTime: 113.378ms - OpenTime: 8.91us - PrepareTime: 205.542us - SinkTime: 20.220ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 68 - NumBlockedTimes: 70 - NumScheduleTimes: 70 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.53ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 637.806ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.680us - CompressTime: 0ns - ExecTime: 20.120ms - InputRows: 3.484K (3484) - LocalBytesSent: 248.36 KB - LocalSendTime: 83.647us - LocalSentRows: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 408.00 KB - MergeBlockTime: 0ns - OpenTime: 95.571us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.484K (3484) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.216ms - SplitBlockHashComputeTime: 1.813ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.209ms - CloseTime: 2.888us - ExecTime: 4.592ms - HashTableComputeTime: 2.815ms - HashTableEmplaceTime: 2.6ms - HashTableInputCount: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.568us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 729 - BuildOutputBlock: 0ns - CloseTime: 5.357us - ExecTime: 98.276ms - InitProbeSideTime: 22.120ms - JoinFilterTimer: 54.341us - MemoryUsage: - PeakMemoryUsage: 69.05 KB - ProbeKeyArena: 69.05 KB - OpenTime: 11.913us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 117.508us - ProbeFindNextTime: 0ns - ProbeRows: 3.295033M (3295033) - ProbeTime: 91.532ms - ProbeWhenBuildSideOutputTime: 3.150ms - ProbeWhenProbeSideOutputTime: 487.78us - ProbeWhenProcessHashTableTime: 7.596us - ProbeWhenSearchHashTableTime: 59.155ms - ProjectionTime: 4.637ms - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s279ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 4.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 8.785ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.13 MB - MemoryUsage: - Blocks: 18.84 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 13.258us - ProjectionTime: 0ns - RowsProduced: 3.295033M (3295033) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s249ms PipelineXTask (index=18):(Active: 119.120ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 118.899ms - CloseTime: 48.631us - GetBlockTime: 109.93ms - OpenTime: 10.783us - PrepareTime: 154.246us - SinkTime: 7.567ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.575ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 333.842ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.99us - CompressTime: 0ns - ExecTime: 7.453ms - InputRows: 3.573K (3573) - LocalBytesSent: 254.68 KB - LocalSendTime: 142.252us - LocalSentRows: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 64.20us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.573K (3573) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.838ms - SplitBlockHashComputeTime: 1.780ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.3ms - CloseTime: 5.193us - ExecTime: 4.477ms - HashTableComputeTime: 2.631ms - HashTableEmplaceTime: 1.898ms - HashTableInputCount: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.242us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 15.951us - ExecTime: 97.900ms - InitProbeSideTime: 21.753ms - JoinFilterTimer: 59.440us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 18.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 121.727us - ProbeFindNextTime: 0ns - ProbeRows: 3.296297M (3296297) - ProbeTime: 78.268ms - ProbeWhenBuildSideOutputTime: 3.264ms - ProbeWhenProbeSideOutputTime: 494.514us - ProbeWhenProcessHashTableTime: 9.234us - ProbeWhenSearchHashTableTime: 46.259ms - ProjectionTime: 4.479ms - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s701ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 8.769us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 5.147ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.21 MB - MemoryUsage: - Blocks: 18.96 MB - PeakMemoryUsage: 18.96 MB - OpenTime: 22.853us - ProjectionTime: 0ns - RowsProduced: 3.296297M (3296297) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s235ms PipelineXTask (index=20):(Active: 90.270ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 89.997ms - CloseTime: 23.687us - GetBlockTime: 81.658ms - OpenTime: 10.258us - PrepareTime: 227.444us - SinkTime: 6.414ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.288ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 650.92ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.922us - CompressTime: 0ns - ExecTime: 6.389ms - InputRows: 3.529K (3529) - LocalBytesSent: 251.57 KB - LocalSendTime: 60.895us - LocalSentRows: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 147.628us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.529K (3529) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.144ms - SplitBlockHashComputeTime: 1.559ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 3.725ms - CloseTime: 2.556us - ExecTime: 4.36ms - HashTableComputeTime: 2.575ms - HashTableEmplaceTime: 1.938ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.363us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 4.943us - ExecTime: 71.402ms - InitProbeSideTime: 19.722ms - JoinFilterTimer: 43.42us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 12.630us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 114.200us - ProbeFindNextTime: 0ns - ProbeRows: 3.295637M (3295637) - ProbeTime: 65.701ms - ProbeWhenBuildSideOutputTime: 2.684ms - ProbeWhenProbeSideOutputTime: 400.865us - ProbeWhenProcessHashTableTime: 9.248us - ProbeWhenSearchHashTableTime: 37.494ms - ProjectionTime: 3.753ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s436ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 4.139us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.881ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.95 MB - MemoryUsage: - Blocks: 19.51 MB - PeakMemoryUsage: 19.51 MB - OpenTime: 12.784us - ProjectionTime: 0ns - RowsProduced: 3.295637M (3295637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s142ms PipelineXTask (index=22):(Active: 108.961ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 108.763ms - CloseTime: 27.809us - GetBlockTime: 101.60ms - OpenTime: 27.20us - PrepareTime: 135.411us - SinkTime: 5.932ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.413ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 649.857ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.809us - CompressTime: 0ns - ExecTime: 5.818ms - InputRows: 3.516K (3516) - LocalBytesSent: 250.62 KB - LocalSendTime: 66.665us - LocalSentRows: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 64.436us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.516K (3516) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.858ms - SplitBlockHashComputeTime: 1.500ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 3.547ms - CloseTime: 2.510us - ExecTime: 3.917ms - HashTableComputeTime: 2.400ms - HashTableEmplaceTime: 1.779ms - HashTableInputCount: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 12.198us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 731 - BuildOutputBlock: 0ns - CloseTime: 5.507us - ExecTime: 91.26ms - InitProbeSideTime: 44.688ms - JoinFilterTimer: 48.609us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 9.615us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 91.904us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 85.352ms - ProbeWhenBuildSideOutputTime: 2.664ms - ProbeWhenProbeSideOutputTime: 450.282us - ProbeWhenProcessHashTableTime: 8.409us - ProbeWhenSearchHashTableTime: 31.724ms - ProjectionTime: 3.800ms - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s335ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 4.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.789ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.12 MB - MemoryUsage: - Blocks: 19.27 MB - PeakMemoryUsage: 19.27 MB - OpenTime: 17.313us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s222ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 691.542us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 617.844us - CloseTime: 8.681us - GetBlockTime: 154.211us - OpenTime: 2.804us - PrepareTime: 56.883us - SinkTime: 404.46us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 670.701us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 230.218ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.837us - BuildRows: 3.592K (3592) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 255.535us - BuildTableInsertTime: 51.348us - BuildTableTime: 54.140us - CloseTime: 0ns - ExecTime: 427.145us - InputRows: 3.591K (3591) - MemoryUsage: - BuildBlocks: 241.94 KB - BuildKeyArena: 56.13 KB - HashTable: 49.54 KB - PeakMemoryUsage: 347.60 KB - OpenTime: 25.328us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.329us - RuntimeFilterComputeTime: 27.220us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 7.489us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.732us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 12.555us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s582ms PipelineXTask (index=3):(Active: 1.94ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.14ms - CloseTime: 3.804us - GetBlockTime: 168.158us - OpenTime: 1.763us - PrepareTime: 71.161us - SinkTime: 796.141us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.82ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 257.587ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.504us - BuildRows: 9.222K (9222) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 506.336us - BuildTableInsertTime: 152.876us - BuildTableTime: 153.841us - CloseTime: 0ns - ExecTime: 820.309us - InputRows: 9.221K (9221) - MemoryUsage: - BuildBlocks: 621.30 KB - BuildKeyArena: 144.09 KB - HashTable: 109.03 KB - PeakMemoryUsage: 874.42 KB - OpenTime: 26.518us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.215us - RuntimeFilterComputeTime: 98.849us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.110us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 181.810us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 864.00 KB - MemoryUsage: - Blocks: 798.00 KB - PeakMemoryUsage: 798.00 KB - OpenTime: 13.897us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s555ms PipelineXTask (index=5):(Active: 679.768us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 619.187us - CloseTime: 7.217us - GetBlockTime: 164.654us - OpenTime: 1.960us - PrepareTime: 46.137us - SinkTime: 422.770us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 664.893us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 244.276ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.628us - BuildRows: 3.524K (3524) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 250.327us - BuildTableInsertTime: 67.82us - BuildTableTime: 70.299us - CloseTime: 0ns - ExecTime: 436.575us - InputRows: 3.523K (3523) - MemoryUsage: - BuildBlocks: 237.34 KB - BuildKeyArena: 55.06 KB - HashTable: 33.21 KB - PeakMemoryUsage: 325.60 KB - OpenTime: 15.205us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.784us - RuntimeFilterComputeTime: 38.581us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.515us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 183.255us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 14.845us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s510ms PipelineXTask (index=7):(Active: 866.398us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 790.138us - CloseTime: 12.601us - GetBlockTime: 157.734us - OpenTime: 3.320us - PrepareTime: 55.497us - SinkTime: 560.716us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 837.751us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 243.964ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.795us - BuildRows: 3.658K (3658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 341.632us - BuildTableInsertTime: 71.475us - BuildTableTime: 75.331us - CloseTime: 0ns - ExecTime: 576.70us - InputRows: 3.657K (3657) - MemoryUsage: - BuildBlocks: 246.38 KB - BuildKeyArena: 57.16 KB - HashTable: 49.87 KB - PeakMemoryUsage: 353.39 KB - OpenTime: 18.57us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.565us - RuntimeFilterComputeTime: 52.920us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 166.645us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 99.00 KB - OpenTime: 9.494us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s669ms PipelineXTask (index=9):(Active: 7.366ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.277ms - CloseTime: 4.880us - GetBlockTime: 6.750ms - OpenTime: 1.767us - PrepareTime: 77.484us - SinkTime: 473.595us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 771.401us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 244.764ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.29us - BuildRows: 3.666K (3666) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 317.473us - BuildTableInsertTime: 68.628us - BuildTableTime: 70.851us - CloseTime: 0ns - ExecTime: 506.951us - InputRows: 3.665K (3665) - MemoryUsage: - BuildBlocks: 246.93 KB - BuildKeyArena: 57.28 KB - HashTable: 49.90 KB - PeakMemoryUsage: 354.11 KB - OpenTime: 37.836us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.61us - RuntimeFilterComputeTime: 33.723us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.726us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 6.758ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 99.00 KB - OpenTime: 12.964us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s662ms PipelineXTask (index=11):(Active: 759.348us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 671.886us - CloseTime: 5.78us - GetBlockTime: 175.499us - OpenTime: 3.389us - PrepareTime: 73.449us - SinkTime: 441.457us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 740.99us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 276.677ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.684us - BuildRows: 3.498K (3498) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 293.499us - BuildTableInsertTime: 66.724us - BuildTableTime: 68.75us - CloseTime: 0ns - ExecTime: 474.938us - InputRows: 3.497K (3497) - MemoryUsage: - BuildBlocks: 235.61 KB - BuildKeyArena: 54.66 KB - HashTable: 33.08 KB - PeakMemoryUsage: 323.34 KB - OpenTime: 37.177us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.805us - RuntimeFilterComputeTime: 29.21us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.355us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 183.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 382.00 KB - MemoryUsage: - Blocks: 151.00 KB - PeakMemoryUsage: 151.00 KB - OpenTime: 11.556us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s636ms PipelineXTask (index=13):(Active: 661.154us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 586.442us - CloseTime: 6.962us - GetBlockTime: 128.952us - OpenTime: 2.872us - PrepareTime: 58.850us - SinkTime: 411.275us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 641.965us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 277.327ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.832us - BuildRows: 3.474K (3474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 282.248us - BuildTableInsertTime: 48.611us - BuildTableTime: 49.990us - CloseTime: 0ns - ExecTime: 430.666us - InputRows: 3.473K (3473) - MemoryUsage: - BuildBlocks: 233.99 KB - BuildKeyArena: 54.28 KB - HashTable: 32.97 KB - PeakMemoryUsage: 321.23 KB - OpenTime: 21.737us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.388us - RuntimeFilterComputeTime: 30.780us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 139.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 382.00 KB - MemoryUsage: - Blocks: 151.00 KB - PeakMemoryUsage: 151.00 KB - OpenTime: 14.54us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s636ms PipelineXTask (index=15):(Active: 633.576us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 572.253us - CloseTime: 4.454us - GetBlockTime: 154.595us - OpenTime: 2.658us - PrepareTime: 48.587us - SinkTime: 371.156us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 616.120us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 278.231ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.210us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 241.209us - BuildTableInsertTime: 50.591us - BuildTableTime: 51.763us - CloseTime: 0ns - ExecTime: 382.960us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.76 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.15 KB - OpenTime: 13.917us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.686us - RuntimeFilterComputeTime: 30.64us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.57us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 159.51us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 165.00 KB - PeakMemoryUsage: 165.00 KB - OpenTime: 8.991us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s635ms PipelineXTask (index=17):(Active: 747.579us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 677.563us - CloseTime: 12.245us - GetBlockTime: 156.403us - OpenTime: 2.667us - PrepareTime: 49.527us - SinkTime: 424.550us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 687.62us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.414ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.540us - BuildRows: 3.485K (3485) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 280.93us - BuildTableInsertTime: 52.785us - BuildTableTime: 56.569us - CloseTime: 0ns - ExecTime: 445.616us - InputRows: 3.484K (3484) - MemoryUsage: - BuildBlocks: 234.75 KB - BuildKeyArena: 54.45 KB - HashTable: 33.02 KB - PeakMemoryUsage: 322.22 KB - OpenTime: 23.758us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.469us - RuntimeFilterComputeTime: 26.409us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.59us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 169.294us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 165.00 KB - PeakMemoryUsage: 165.00 KB - OpenTime: 9.632us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s594ms PipelineXTask (index=19):(Active: 670.793us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 594.491us - CloseTime: 12.946us - GetBlockTime: 133.320us - OpenTime: 2.492us - PrepareTime: 55.783us - SinkTime: 328.882us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 561.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 275.510ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.738us - BuildRows: 3.574K (3574) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 192.926us - BuildTableInsertTime: 56.713us - BuildTableTime: 59.74us - CloseTime: 0ns - ExecTime: 341.491us - InputRows: 3.573K (3573) - MemoryUsage: - BuildBlocks: 240.72 KB - BuildKeyArena: 55.84 KB - HashTable: 33.46 KB - PeakMemoryUsage: 330.01 KB - OpenTime: 14.587us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.998us - RuntimeFilterComputeTime: 23.107us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 149.502us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 396.00 KB - PeakMemoryUsage: 396.00 KB - OpenTime: 8.606us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s510ms PipelineXTask (index=21):(Active: 838.60us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 748.139us - CloseTime: 6.694us - GetBlockTime: 127.801us - OpenTime: 3.777us - PrepareTime: 72.251us - SinkTime: 562.502us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 815.41us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 277.598ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.117us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 226.791us - BuildTableInsertTime: 56.757us - BuildTableTime: 59.326us - CloseTime: 0ns - ExecTime: 573.545us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.78 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.17 KB - OpenTime: 13.15us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 204.991us - RuntimeFilterComputeTime: 29.424us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.441us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 143.643us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 165.00 KB - PeakMemoryUsage: 165.00 KB - OpenTime: 19.259us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s636ms PipelineXTask (index=23):(Active: 698.781us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 598.296us - CloseTime: 5.519us - GetBlockTime: 129.159us - OpenTime: 3.766us - PrepareTime: 84.775us - SinkTime: 414.618us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 681.172us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 200.357ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.542us - BuildRows: 3.517K (3517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 276.438us - BuildTableInsertTime: 55.151us - BuildTableTime: 56.364us - CloseTime: 0ns - ExecTime: 432.671us - InputRows: 3.516K (3516) - MemoryUsage: - BuildBlocks: 236.88 KB - BuildKeyArena: 54.95 KB - HashTable: 33.18 KB - PeakMemoryUsage: 325.01 KB - OpenTime: 20.551us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.503us - RuntimeFilterComputeTime: 35.752us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.990us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 144.764us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 16.956us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s613ms Fragment 120: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 278.491ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 278.107ms - CloseTime: 81.681us - GetBlockTime: 4.530ms - OpenTime: 73.221us - PrepareTime: 220.779us - SinkTime: 253.317ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 161.471ms - WaitBfTime: 884.984ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 654.106ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.805us - CompressTime: 0ns - ExecTime: 253.81ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 41.19 MB - LocalSendTime: 4.574ms - LocalSentRows: 4.799089M (4799089) - MemoryUsage: - PeakMemoryUsage: 60.55 MB - MergeBlockTime: 0ns - OpenTime: 66.722us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 158.11ms - SplitBlockHashComputeTime: 59.635ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.620us - BlocksProduced: 1.183K (1183) - CloseTime: 64.427us - ExecTime: 98.260ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 156.349us - ProcessConjunctTime: 14.463us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 245.184ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.873ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [15.862ms, 26.618ms, 121.502ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [82.162ms, 81.813ms, 81.208ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 161.480ms - MemoryUsage: - FreeBlocks: 23.17 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 685.319us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 48.758us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.289ms - ScannerCtxSchedTime: 245.175ms - ScannerFilterTime: 367.715us - ScannerGetBlockTime: 163.167ms - ScannerInitTime: 37.680us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.773us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 23.785us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 26.746us - BlockInitTime: 274.271us - BlockLoadTime: 161.619ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 274.597us - FirstReadTime: 152.551ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.514us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 150.94us - OutputIndexResultColumnTimer: 100.937us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 589 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 263.90ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 262.597ms - CloseTime: 87.329us - GetBlockTime: 14.773ms - OpenTime: 60.890us - PrepareTime: 337.426us - SinkTime: 244.893ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 179.131ms - WaitBfTime: 885.52ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 674.25ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.144K (1144) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.716us - CompressTime: 0ns - ExecTime: 244.657ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 41.19 MB - LocalSendTime: 4.990ms - LocalSentRows: 4.79901M (4799010) - MemoryUsage: - PeakMemoryUsage: 61.39 MB - MergeBlockTime: 0ns - OpenTime: 74.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 115.710ms - SplitBlockHashComputeTime: 92.763ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.701us - BlocksProduced: 1.182K (1182) - CloseTime: 68.346us - ExecTime: 122.921ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 150.595us - ProcessConjunctTime: 8.584us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 262.213ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 108.244ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [26.547ms, 54.998ms, 22.098ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [83.223ms, 95.306ms, 83.683ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 101.699ms - MemoryUsage: - FreeBlocks: 23.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 504.9us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 53.813us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.936ms - ScannerCtxSchedTime: 262.205ms - ScannerFilterTime: 277.269us - ScannerGetBlockTime: 103.54ms - ScannerInitTime: 35.659us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.867us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.968us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 26.752us - BlockInitTime: 171.387us - BlockLoadTime: 101.790ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 211.863us - FirstReadTime: 99.285ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.404us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 140.762us - OutputIndexResultColumnTimer: 85.968us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 590 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 115.743ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 115.303ms - CloseTime: 78.503us - GetBlockTime: 2.865ms - OpenTime: 165.480us - PrepareTime: 186.367us - SinkTime: 110.340ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 101.197ms - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 980.119ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.308us - CompressTime: 0ns - ExecTime: 110.146ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 29.80 MB - LocalSendTime: 2.948ms - LocalSentRows: 3.472164M (3472164) - MemoryUsage: - PeakMemoryUsage: 43.17 MB - MergeBlockTime: 0ns - OpenTime: 54.166us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 47.866ms - SplitBlockHashComputeTime: 37.601ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.86us - BlocksProduced: 856 - CloseTime: 58.890us - ExecTime: 96.589ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 233.439us - ProcessConjunctTime: 18.471us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.688ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.606ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [82.739ms, 88.128ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [3.465ms, 8.223ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 166.193ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 33.412ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40.945us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.174ms - ScannerCtxSchedTime: 11.681ms - ScannerFilterTime: 3.265ms - ScannerGetBlockTime: 167.355ms - ScannerInitTime: 92.39us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.628us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.992us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 39.537us - BlockInitTime: 210.309us - BlockLoadTime: 188.329ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 168.615us - FirstReadTime: 164.781ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.678us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 76.975us - OutputIndexResultColumnTimer: 46.199us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 76.554ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 76.146ms - CloseTime: 82.889us - GetBlockTime: 2.550ms - OpenTime: 128.558us - PrepareTime: 187.880us - SinkTime: 72.326ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.351ms - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s48ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 830 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.285us - CompressTime: 0ns - ExecTime: 72.250ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 29.80 MB - LocalSendTime: 1.948ms - LocalSentRows: 3.472126M (3472126) - MemoryUsage: - PeakMemoryUsage: 43.58 MB - MergeBlockTime: 0ns - OpenTime: 64.422us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.768ms - SplitBlockHashComputeTime: 28.918ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.991us - BlocksProduced: 856 - CloseTime: 67.187us - ExecTime: 83.450ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 192.917us - ProcessConjunctTime: 11.760us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 14.155ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 80.777ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [17.822ms, 56.338ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [9.505ms, 4.649ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 69.563ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.188ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.585us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.217ms - ScannerCtxSchedTime: 14.149ms - ScannerFilterTime: 3.135ms - ScannerGetBlockTime: 70.755ms - ScannerInitTime: 73.777us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.793us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.204us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 38.6us - BlockInitTime: 189.552us - BlockLoadTime: 91.574ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 135.908us - FirstReadTime: 89.985ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.430us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 83.323us - OutputIndexResultColumnTimer: 48.433us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 430 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 103.409ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 103.56ms - CloseTime: 59.118us - GetBlockTime: 1.839ms - OpenTime: 79.763us - PrepareTime: 200.188us - SinkTime: 99.983ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 70.633ms - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s15ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 543 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.318us - CompressTime: 0ns - ExecTime: 99.928ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 19.40 MB - LocalSendTime: 1.828ms - LocalSentRows: 2.259795M (2259795) - MemoryUsage: - PeakMemoryUsage: 27.94 MB - MergeBlockTime: 0ns - OpenTime: 70.884us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 56.262ms - SplitBlockHashComputeTime: 27.525ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.704us - BlocksProduced: 557 - CloseTime: 42.993us - ExecTime: 79.889ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 141.114us - ProcessConjunctTime: 15.755us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.897ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 77.985ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [40.774ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [10.897ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 36.893ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 128.793us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.762us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.831ms - ScannerCtxSchedTime: 10.895ms - ScannerFilterTime: 3.176ms - ScannerGetBlockTime: 37.456ms - ScannerInitTime: 43.634us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 816ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.784us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.864us - BlockInitTime: 44.596us - BlockLoadTime: 36.867ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 89.428us - FirstReadTime: 35.973ms - IOTimer: 0ns - InvertedIndexFilterTime: 921ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 53.107us - OutputIndexResultColumnTimer: 35.22us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 103.497ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 103.155ms - CloseTime: 60.115us - GetBlockTime: 1.552ms - OpenTime: 62.823us - PrepareTime: 210.719us - SinkTime: 100.606ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 55.169ms - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s5ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 542 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.131us - CompressTime: 0ns - ExecTime: 100.576ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 19.40 MB - LocalSendTime: 1.434ms - LocalSentRows: 2.259785M (2259785) - MemoryUsage: - PeakMemoryUsage: 27.40 MB - MergeBlockTime: 0ns - OpenTime: 73.771us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 48.144ms - SplitBlockHashComputeTime: 20.912ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.888us - BlocksProduced: 557 - CloseTime: 43.555us - ExecTime: 90.737ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 159.194us - ProcessConjunctTime: 10.407us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.456ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 89.68ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [57.442ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [5.456ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.961ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.76ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.928us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.78ms - ScannerCtxSchedTime: 5.453ms - ScannerFilterTime: 4.709ms - ScannerGetBlockTime: 52.563ms - ScannerInitTime: 34.784us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 939ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.307us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 12.115us - BlockInitTime: 85.411us - BlockLoadTime: 51.938ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 104.351us - FirstReadTime: 50.869ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.592us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 57.816us - OutputIndexResultColumnTimer: 36.511us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 277 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 66.277ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 65.857ms - CloseTime: 52.501us - GetBlockTime: 1.304ms - OpenTime: 181.734us - PrepareTime: 177.292us - SinkTime: 63.745ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.219ms - WaitBfTime: 965.500ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.499ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.191us - CompressTime: 0ns - ExecTime: 63.765ms - InputRows: 876.719K (876719) - LocalBytesSent: 7.52 MB - LocalSendTime: 1.243ms - LocalSentRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 10.47 MB - MergeBlockTime: 0ns - OpenTime: 72.438us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.719K (876719) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 32.692ms - SplitBlockHashComputeTime: 22.172ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.644us - BlocksProduced: 216 - CloseTime: 34.337us - ExecTime: 135.707ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 236.150us - ProcessConjunctTime: 34.990us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 121.939ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.207ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [8.913ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [121.939ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.554ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 136.972us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.732us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.250ms - ScannerCtxSchedTime: 121.937ms - ScannerFilterTime: 42.551us - ScannerGetBlockTime: 8.813ms - ScannerInitTime: 112.960us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 463ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.412us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 7.862us - BlockInitTime: 42.258us - BlockLoadTime: 8.575ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 34.635us - FirstReadTime: 8.108ms - IOTimer: 0ns - InvertedIndexFilterTime: 718ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 28.507us - OutputIndexResultColumnTimer: 13.783us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 19.735ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.434ms - CloseTime: 35.199us - GetBlockTime: 657.235us - OpenTime: 52.316us - PrepareTime: 203.623us - SinkTime: 18.415ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.673ms - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s13ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.660us - CompressTime: 0ns - ExecTime: 18.469ms - InputRows: 876.727K (876727) - LocalBytesSent: 7.53 MB - LocalSendTime: 477.292us - LocalSentRows: 876.727K (876727) - MemoryUsage: - PeakMemoryUsage: 10.83 MB - MergeBlockTime: 0ns - OpenTime: 82.399us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.727K (876727) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.498ms - SplitBlockHashComputeTime: 7.298ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.957us - BlocksProduced: 216 - CloseTime: 21.368us - ExecTime: 102.354ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 131.198us - ProcessConjunctTime: 8.850us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.348ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 101.578ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [62.473ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [3.348ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 62.153ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 33.50ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.113us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.343ms - ScannerCtxSchedTime: 3.347ms - ScannerFilterTime: 45.852us - ScannerGetBlockTime: 62.373ms - ScannerInitTime: 26.626us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 352ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.898us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 13.147us - BlockInitTime: 52.58us - BlockLoadTime: 62.224ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 26.779us - FirstReadTime: 61.843ms - IOTimer: 0ns - InvertedIndexFilterTime: 908ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 18.530us - OutputIndexResultColumnTimer: 13.262us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 109 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 165.105ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 164.787ms - CloseTime: 71.371us - GetBlockTime: 3.605ms - OpenTime: 64.125us - PrepareTime: 173.95us - SinkTime: 159.71ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 130.244ms - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 729.990ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 806 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.960us - CompressTime: 0ns - ExecTime: 158.930ms - InputRows: 3.39021M (3390210) - LocalBytesSent: 29.10 MB - LocalSendTime: 24.711ms - LocalSentRows: 3.39021M (3390210) - MemoryUsage: - PeakMemoryUsage: 46.67 MB - MergeBlockTime: 0ns - OpenTime: 57.490us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.39021M (3390210) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 58.574ms - SplitBlockHashComputeTime: 53.526ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.56us - BlocksProduced: 836 - CloseTime: 43.821us - ExecTime: 44.535ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 131.196us - ProcessConjunctTime: 7.850us - ProjectionTime: 0ns - RowsProduced: 3.39021M (3390210) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.270ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 40.972ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [15.972ms, 61.289ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [3.812ms, 5.458ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 75.995ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.553ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38.254us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 36.253ms - ScannerCtxSchedTime: 9.265ms - ScannerFilterTime: 164.738us - ScannerGetBlockTime: 76.876ms - ScannerInitTime: 29.200us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.165us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.311us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 18.493us - BlockInitTime: 135.355us - BlockLoadTime: 76.62ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 132.9us - FirstReadTime: 74.586ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.910us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 79.833us - OutputIndexResultColumnTimer: 49.676us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 309.857ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 309.515ms - CloseTime: 73.164us - GetBlockTime: 3.544ms - OpenTime: 51.265us - PrepareTime: 210.85us - SinkTime: 303.978ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 125.63ms - WaitBfTime: 885.109ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 506.642ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 808 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.862us - CompressTime: 0ns - ExecTime: 303.826ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 29.09 MB - LocalSendTime: 12.873ms - LocalSentRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 46.20 MB - MergeBlockTime: 0ns - OpenTime: 56.494us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 124.103ms - SplitBlockHashComputeTime: 36.585ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.112us - BlocksProduced: 836 - CloseTime: 56.196us - ExecTime: 104.349ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 156.403us - ProcessConjunctTime: 8.566us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 171.481ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.790ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [51.789ms, 12.239ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [84.808ms, 86.673ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 62.436ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 613.585us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.368us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.762ms - ScannerCtxSchedTime: 171.474ms - ScannerFilterTime: 209.316us - ScannerGetBlockTime: 63.535ms - ScannerInitTime: 26.482us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.749us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.660us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 26.646us - BlockInitTime: 156.757us - BlockLoadTime: 62.677ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 149.416us - FirstReadTime: 60.821ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.372us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 114.562us - OutputIndexResultColumnTimer: 69.836us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 416 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 227.422ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 226.986ms - CloseTime: 107.381us - GetBlockTime: 5.837ms - OpenTime: 96.48us - PrepareTime: 205.643us - SinkTime: 217.495ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 187.886ms - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s12ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.186K (1186) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.96us - CompressTime: 0ns - ExecTime: 217.183ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 42.71 MB - LocalSendTime: 30.39ms - LocalSentRows: 4.97661M (4976610) - MemoryUsage: - PeakMemoryUsage: 64.78 MB - MergeBlockTime: 0ns - OpenTime: 75.803us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 76.632ms - SplitBlockHashComputeTime: 68.229ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.19us - BlocksProduced: 1.227K (1227) - CloseTime: 90.18us - ExecTime: 55.675ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 181.461us - ProcessConjunctTime: 8.868us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.775ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 49.907ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [70.023ms, 39.280ms, 8.152ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [6.445ms, 7.840ms, 3.489ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 111.446ms - MemoryUsage: - FreeBlocks: 26.82 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.42ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 68.988us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.584ms - ScannerCtxSchedTime: 17.766ms - ScannerFilterTime: 4.214ms - ScannerGetBlockTime: 112.909ms - ScannerInitTime: 59.95us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.562us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.289us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 42.437us - BlockInitTime: 241.471us - BlockLoadTime: 111.627ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 194.620us - FirstReadTime: 109.512ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.619us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 112.984us - OutputIndexResultColumnTimer: 77.970us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 615 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 291.739ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 291.380ms - CloseTime: 83.470us - GetBlockTime: 4.527ms - OpenTime: 111.175us - PrepareTime: 155.838us - SinkTime: 284.185ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 149.608ms - WaitBfTime: 965.676ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 739.140ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.186K (1186) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.196us - CompressTime: 0ns - ExecTime: 283.946ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 42.71 MB - LocalSendTime: 27.430ms - LocalSentRows: 4.976137M (4976137) - MemoryUsage: - PeakMemoryUsage: 65.34 MB - MergeBlockTime: 0ns - OpenTime: 53.702us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 161.791ms - SplitBlockHashComputeTime: 54.991ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s979ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 205.960ms - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=81. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 32, type = minmax), RuntimeFilter: (id = 33, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.837us - BlocksProduced: 1.228K (1228) - CloseTime: 70.318us - ExecTime: 144.77ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 160.521us - ProcessConjunctTime: 10.584us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 371.733ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 139.590ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [181.190ms, 15.755ms, 14.598ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [122.770ms, 123.785ms, 125.177ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 194.849ms - MemoryUsage: - FreeBlocks: 26.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 588.956us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 68.28us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 61.173ms - ScannerCtxSchedTime: 371.721ms - ScannerFilterTime: 6.314ms - ScannerGetBlockTime: 204.799ms - ScannerInitTime: 80.172us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.807us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.518us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 71.744us - BlockInitTime: 327.342us - BlockLoadTime: 202.910ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 255.830us - FirstReadTime: 199.865ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.972us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 142.876us - OutputIndexResultColumnTimer: 113.575us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 620 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 121: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 52.990ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 52.725ms - CloseTime: 41.381us - GetBlockTime: 47.232ms - OpenTime: 6.193us - PrepareTime: 202.893us - SinkTime: 4.716ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.616ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s453ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.876us - CompressTime: 0ns - ExecTime: 4.817ms - InputRows: 4.001K (4001) - LocalBytesSent: 269.55 KB - LocalSendTime: 122.601us - LocalSentRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 134.325us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.001K (4001) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.950ms - SplitBlockHashComputeTime: 401.632us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 9.214us - ExecTime: 36.236ms - InitProbeSideTime: 15.946ms - JoinFilterTimer: 16.627us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.954us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 54.174us - ProbeFindNextTime: 0ns - ProbeRows: 694.762K (694762) - ProbeTime: 34.838ms - ProbeWhenBuildSideOutputTime: 1.262ms - ProbeWhenProbeSideOutputTime: 624.320us - ProbeWhenProcessHashTableTime: 16.677us - ProbeWhenSearchHashTableTime: 14.814ms - ProjectionTime: 711.619us - RowsProduced: 4.001K (4001) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 13.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 10.735ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.10 MB - MemoryUsage: - Blocks: 8.64 MB - PeakMemoryUsage: 8.64 MB - OpenTime: 22.964us - ProjectionTime: 0ns - RowsProduced: 694.762K (694762) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s105ms PipelineXTask (index=2):(Active: 37.746ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 37.550ms - CloseTime: 41.794us - GetBlockTime: 33.167ms - OpenTime: 4.322us - PrepareTime: 133.892us - SinkTime: 3.859ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.665ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s838ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.169us - CompressTime: 0ns - ExecTime: 3.888ms - InputRows: 4.088K (4088) - LocalBytesSent: 275.43 KB - LocalSendTime: 95.840us - LocalSentRows: 4.088K (4088) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 60.587us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.088K (4088) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.389ms - SplitBlockHashComputeTime: 314.167us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 7.749us - ExecTime: 30.395ms - InitProbeSideTime: 13.834ms - JoinFilterTimer: 14.295us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 9.678us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.698us - ProbeFindNextTime: 0ns - ProbeRows: 694.437K (694437) - ProbeTime: 29.210ms - ProbeWhenBuildSideOutputTime: 1.47ms - ProbeWhenProbeSideOutputTime: 554.677us - ProbeWhenProcessHashTableTime: 14.168us - ProbeWhenSearchHashTableTime: 11.900ms - ProjectionTime: 596.957us - RowsProduced: 4.088K (4088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 13.229us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.580ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.40 MB - MemoryUsage: - Blocks: 12.57 MB - PeakMemoryUsage: 12.57 MB - OpenTime: 18.181us - ProjectionTime: 0ns - RowsProduced: 694.437K (694437) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s818ms PipelineXTask (index=4):(Active: 40.918ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 40.692ms - CloseTime: 55.411us - GetBlockTime: 35.706ms - OpenTime: 5.369us - PrepareTime: 154.965us - SinkTime: 4.369ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.475ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s417ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.22us - CompressTime: 0ns - ExecTime: 4.388ms - InputRows: 4.133K (4133) - LocalBytesSent: 278.45 KB - LocalSendTime: 74.892us - LocalSentRows: 4.133K (4133) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 59.763us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.133K (4133) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.831ms - SplitBlockHashComputeTime: 341.441us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 29.762us - ExecTime: 32.969ms - InitProbeSideTime: 15.126ms - JoinFilterTimer: 14.498us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 15.728us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.18us - ProbeFindNextTime: 0ns - ProbeRows: 696.514K (696514) - ProbeTime: 31.675ms - ProbeWhenBuildSideOutputTime: 1.68ms - ProbeWhenProbeSideOutputTime: 584.732us - ProbeWhenProcessHashTableTime: 25.0us - ProbeWhenSearchHashTableTime: 12.955ms - ProjectionTime: 657.229us - RowsProduced: 4.133K (4133) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 168 - BytesReceived: 0.00 - CloseTime: 7.227us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.556ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.02 MB - MemoryUsage: - Blocks: 12.88 MB - PeakMemoryUsage: 12.88 MB - OpenTime: 17.98us - ProjectionTime: 0ns - RowsProduced: 696.514K (696514) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s155ms PipelineXTask (index=6):(Active: 66.878ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 66.716ms - CloseTime: 32.210us - GetBlockTime: 61.502ms - OpenTime: 4.562us - PrepareTime: 115.953us - SinkTime: 4.586ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.845ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s386ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.761us - CompressTime: 0ns - ExecTime: 4.602ms - InputRows: 4.044K (4044) - LocalBytesSent: 272.47 KB - LocalSendTime: 76.537us - LocalSentRows: 4.044K (4044) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 59.105us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.044K (4044) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.934ms - SplitBlockHashComputeTime: 367.160us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 15.741us - ExecTime: 32.837ms - InitProbeSideTime: 14.368ms - JoinFilterTimer: 15.396us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.242us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 41.251us - ProbeFindNextTime: 0ns - ProbeRows: 694.142K (694142) - ProbeTime: 31.519ms - ProbeWhenBuildSideOutputTime: 1.189ms - ProbeWhenProbeSideOutputTime: 609.263us - ProbeWhenProcessHashTableTime: 23.202us - ProbeWhenSearchHashTableTime: 13.291ms - ProjectionTime: 690.210us - RowsProduced: 4.044K (4044) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 5.260us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.433ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.82 MB - MemoryUsage: - Blocks: 11.80 MB - PeakMemoryUsage: 11.80 MB - OpenTime: 11.336us - ProjectionTime: 0ns - RowsProduced: 694.142K (694142) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s209ms PipelineXTask (index=8):(Active: 42.13ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 41.696ms - CloseTime: 45.389us - GetBlockTime: 36.988ms - OpenTime: 7.0us - PrepareTime: 255.140us - SinkTime: 4.41ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s292ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.338us - CompressTime: 0ns - ExecTime: 4.163ms - InputRows: 4.055K (4055) - LocalBytesSent: 273.22 KB - LocalSendTime: 103.877us - LocalSentRows: 4.055K (4055) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 160.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.055K (4055) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.437ms - SplitBlockHashComputeTime: 371.528us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 17.117us - ExecTime: 33.918ms - InitProbeSideTime: 15.623ms - JoinFilterTimer: 14.867us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 16.359us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.210us - ProbeFindNextTime: 0ns - ProbeRows: 695.925K (695925) - ProbeTime: 32.618ms - ProbeWhenBuildSideOutputTime: 1.170ms - ProbeWhenProbeSideOutputTime: 600.154us - ProbeWhenProcessHashTableTime: 14.724us - ProbeWhenSearchHashTableTime: 13.209ms - ProjectionTime: 651.754us - RowsProduced: 4.055K (4055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 11.276us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.887ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.27 MB - MemoryUsage: - Blocks: 10.86 MB - PeakMemoryUsage: 10.86 MB - OpenTime: 34.490us - ProjectionTime: 0ns - RowsProduced: 695.925K (695925) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s197ms PipelineXTask (index=10):(Active: 112.570ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 112.387ms - CloseTime: 27.101us - GetBlockTime: 106.986ms - OpenTime: 7.505us - PrepareTime: 137.808us - SinkTime: 4.724ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.377ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s417ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.48us - CompressTime: 0ns - ExecTime: 4.751ms - InputRows: 4.073K (4073) - LocalBytesSent: 274.43 KB - LocalSendTime: 99.394us - LocalSentRows: 4.073K (4073) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 77.351us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.073K (4073) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.8ms - SplitBlockHashComputeTime: 395.88us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 8.755us - ExecTime: 104.385ms - InitProbeSideTime: 84.38ms - JoinFilterTimer: 15.961us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 18.748us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 50.593us - ProbeFindNextTime: 0ns - ProbeRows: 695.772K (695772) - ProbeTime: 103.51ms - ProbeWhenBuildSideOutputTime: 1.246ms - ProbeWhenProbeSideOutputTime: 662.915us - ProbeWhenProcessHashTableTime: 40.242us - ProbeWhenSearchHashTableTime: 14.953ms - ProjectionTime: 685.13us - RowsProduced: 4.073K (4073) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 5.809us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.327ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.28 MB - MemoryUsage: - Blocks: 9.23 MB - PeakMemoryUsage: 9.23 MB - OpenTime: 12.140us - ProjectionTime: 0ns - RowsProduced: 695.772K (695772) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s83ms PipelineXTask (index=12):(Active: 44.811ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 44.610ms - CloseTime: 68.9us - GetBlockTime: 38.754ms - OpenTime: 6.96us - PrepareTime: 120.46us - SinkTime: 5.88ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.656ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s385ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.325us - CompressTime: 0ns - ExecTime: 5.93ms - InputRows: 3.922K (3922) - LocalBytesSent: 264.26 KB - LocalSendTime: 123.203us - LocalSentRows: 3.922K (3922) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 63.112us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.922K (3922) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.252ms - SplitBlockHashComputeTime: 424.817us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 23.922us - ExecTime: 36.99ms - InitProbeSideTime: 16.128ms - JoinFilterTimer: 15.940us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 10.574us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 50.961us - ProbeFindNextTime: 0ns - ProbeRows: 695.832K (695832) - ProbeTime: 34.653ms - ProbeWhenBuildSideOutputTime: 1.307ms - ProbeWhenProbeSideOutputTime: 576.996us - ProbeWhenProcessHashTableTime: 21.676us - ProbeWhenSearchHashTableTime: 14.568ms - ProjectionTime: 774.481us - RowsProduced: 3.922K (3922) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 25.427us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.419ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.40 MB - MemoryUsage: - Blocks: 10.72 MB - PeakMemoryUsage: 10.72 MB - OpenTime: 20.390us - ProjectionTime: 0ns - RowsProduced: 695.832K (695832) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s231ms PipelineXTask (index=14):(Active: 75.30ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 74.831ms - CloseTime: 56.22us - GetBlockTime: 56.955ms - OpenTime: 4.488us - PrepareTime: 130.523us - SinkTime: 17.259ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.926ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s472ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.755us - CompressTime: 0ns - ExecTime: 17.290ms - InputRows: 3.96K (3960) - LocalBytesSent: 266.83 KB - LocalSendTime: 88.40us - LocalSentRows: 3.96K (3960) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 65.180us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.96K (3960) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.642ms - SplitBlockHashComputeTime: 374.709us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 18.176us - ExecTime: 54.339ms - InitProbeSideTime: 14.525ms - JoinFilterTimer: 16.4us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 15.421us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.930us - ProbeFindNextTime: 0ns - ProbeRows: 694.136K (694136) - ProbeTime: 53.61ms - ProbeWhenBuildSideOutputTime: 1.85ms - ProbeWhenProbeSideOutputTime: 605.597us - ProbeWhenProcessHashTableTime: 13.857us - ProbeWhenSearchHashTableTime: 34.833ms - ProjectionTime: 657.772us - RowsProduced: 3.96K (3960) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 9.662us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.422ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.75 MB - MemoryUsage: - Blocks: 7.62 MB - PeakMemoryUsage: 7.62 MB - OpenTime: 16.662us - ProjectionTime: 0ns - RowsProduced: 694.136K (694136) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s35ms PipelineXTask (index=16):(Active: 58.29ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 57.833ms - CloseTime: 36.375us - GetBlockTime: 52.755ms - OpenTime: 5.672us - PrepareTime: 145.385us - SinkTime: 4.402ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.680ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s255ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.537us - CompressTime: 0ns - ExecTime: 4.406ms - InputRows: 3.933K (3933) - LocalBytesSent: 264.98 KB - LocalSendTime: 95.264us - LocalSentRows: 3.933K (3933) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 59.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.933K (3933) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.791ms - SplitBlockHashComputeTime: 408.802us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 6.904us - ExecTime: 33.822ms - InitProbeSideTime: 15.534ms - JoinFilterTimer: 14.810us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.522us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.248us - ProbeFindNextTime: 0ns - ProbeRows: 695.316K (695316) - ProbeTime: 32.489ms - ProbeWhenBuildSideOutputTime: 1.191ms - ProbeWhenProbeSideOutputTime: 578.859us - ProbeWhenProcessHashTableTime: 13.244us - ProbeWhenSearchHashTableTime: 13.93ms - ProjectionTime: 693.210us - RowsProduced: 3.933K (3933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 11.221us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 11.328ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.94 MB - MemoryUsage: - Blocks: 19.12 MB - PeakMemoryUsage: 19.12 MB - OpenTime: 22.726us - ProjectionTime: 0ns - RowsProduced: 695.316K (695316) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s222ms PipelineXTask (index=18):(Active: 50.236ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 50.36ms - CloseTime: 40.461us - GetBlockTime: 44.994ms - OpenTime: 9.308us - PrepareTime: 139.237us - SinkTime: 4.271ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.168ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s235ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.685us - CompressTime: 0ns - ExecTime: 4.319ms - InputRows: 3.873K (3873) - LocalBytesSent: 260.92 KB - LocalSendTime: 105.284us - LocalSentRows: 3.873K (3873) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 86.854us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.873K (3873) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.596ms - SplitBlockHashComputeTime: 364.512us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 8.552us - ExecTime: 42.197ms - InitProbeSideTime: 15.596ms - JoinFilterTimer: 17.847us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.84us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 47.719us - ProbeFindNextTime: 0ns - ProbeRows: 695.563K (695563) - ProbeTime: 33.76ms - ProbeWhenBuildSideOutputTime: 1.252ms - ProbeWhenProbeSideOutputTime: 593.959us - ProbeWhenProcessHashTableTime: 13.172us - ProbeWhenSearchHashTableTime: 13.560ms - ProjectionTime: 8.509ms - RowsProduced: 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 10.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.525ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.26 MB - MemoryUsage: - Blocks: 8.11 MB - PeakMemoryUsage: 8.11 MB - OpenTime: 17.90us - ProjectionTime: 0ns - RowsProduced: 695.563K (695563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s296ms PipelineXTask (index=20):(Active: 43.209ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 42.938ms - CloseTime: 40.278us - GetBlockTime: 36.534ms - OpenTime: 6.314us - PrepareTime: 216.812us - SinkTime: 5.725ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.363ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s468ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.569us - CompressTime: 0ns - ExecTime: 5.828ms - InputRows: 4.104K (4104) - LocalBytesSent: 276.53 KB - LocalSendTime: 89.481us - LocalSentRows: 4.104K (4104) - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 150.546us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.104K (4104) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 2.472ms - SplitBlockHashComputeTime: 391.672us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 9.480us - ExecTime: 33.546ms - InitProbeSideTime: 14.693ms - JoinFilterTimer: 14.908us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 13.758us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.759us - ProbeFindNextTime: 0ns - ProbeRows: 694.601K (694601) - ProbeTime: 32.334ms - ProbeWhenBuildSideOutputTime: 1.204ms - ProbeWhenProbeSideOutputTime: 665.293us - ProbeWhenProcessHashTableTime: 14.317us - ProbeWhenSearchHashTableTime: 13.669ms - ProjectionTime: 617.721us - RowsProduced: 4.104K (4104) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 14.497us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.761ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.19 MB - MemoryUsage: - Blocks: 19.71 MB - PeakMemoryUsage: 19.71 MB - OpenTime: 12.157us - ProjectionTime: 0ns - RowsProduced: 694.601K (694601) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s236ms PipelineXTask (index=22):(Active: 63.40ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 62.828ms - CloseTime: 39.316us - GetBlockTime: 53.981ms - OpenTime: 8.804us - PrepareTime: 154.569us - SinkTime: 8.56ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.378ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s479ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.372us - CompressTime: 0ns - ExecTime: 8.51ms - InputRows: 4.072K (4072) - LocalBytesSent: 274.33 KB - LocalSendTime: 93.118us - LocalSentRows: 4.072K (4072) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 57.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.072K (4072) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.226ms - SplitBlockHashComputeTime: 474.100us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 8.246us - ExecTime: 50.862ms - InitProbeSideTime: 16.408ms - JoinFilterTimer: 18.546us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.57us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 48.5us - ProbeFindNextTime: 0ns - ProbeRows: 695.235K (695235) - ProbeTime: 49.242ms - ProbeWhenBuildSideOutputTime: 1.345ms - ProbeWhenProbeSideOutputTime: 638.188us - ProbeWhenProcessHashTableTime: 16.220us - ProbeWhenSearchHashTableTime: 28.286ms - ProjectionTime: 869.976us - RowsProduced: 4.072K (4072) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 11.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.866ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.84 MB - MemoryUsage: - Blocks: 15.88 MB - PeakMemoryUsage: 15.88 MB - OpenTime: 26.256us - ProjectionTime: 0ns - RowsProduced: 695.235K (695235) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s996ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 960.621us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 872.934us - CloseTime: 17.608us - GetBlockTime: 90.868us - OpenTime: 2.541us - PrepareTime: 62.444us - SinkTime: 707.584us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 926.729us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 636.321ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.295us - BuildRows: 4.002K (4002) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 254.557us - BuildTableInsertTime: 199.392us - BuildTableTime: 204.57us - CloseTime: 0ns - ExecTime: 727.630us - InputRows: 4.001K (4001) - MemoryUsage: - BuildBlocks: 234.39 KB - BuildKeyArena: 148.00 KB - HashTable: 51.54 KB - PeakMemoryUsage: 429.92 KB - OpenTime: 24.557us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.247us - RuntimeFilterComputeTime: 173.998us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 12.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.789us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 187.25 KB - PeakMemoryUsage: 188.17 KB - OpenTime: 18.318us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 681.257ms PipelineXTask (index=3):(Active: 1.382ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.309ms - CloseTime: 10.547us - GetBlockTime: 87.756us - OpenTime: 2.381us - PrepareTime: 54.869us - SinkTime: 1.168ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.355ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 637.164ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.138us - BuildRows: 4.089K (4089) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 304.133us - BuildTableInsertTime: 409.3us - BuildTableTime: 413.45us - CloseTime: 0ns - ExecTime: 1.186ms - InputRows: 4.088K (4088) - MemoryUsage: - BuildBlocks: 239.50 KB - BuildKeyArena: 148.00 KB - HashTable: 51.97 KB - PeakMemoryUsage: 435.46 KB - OpenTime: 21.909us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 252.384us - RuntimeFilterComputeTime: 155.568us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 100.812us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 187.25 KB - PeakMemoryUsage: 188.17 KB - OpenTime: 11.48us - ProjectionTime: 0ns - RowsProduced: 4.088K (4088) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 680.897ms PipelineXTask (index=5):(Active: 1.272ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.152ms - CloseTime: 13.187us - GetBlockTime: 84.964us - OpenTime: 3.165us - PrepareTime: 96.962us - SinkTime: 1.12ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.245ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.542ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.430us - BuildRows: 4.134K (4134) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 529.293us - BuildTableInsertTime: 316.295us - BuildTableTime: 320.410us - CloseTime: 0ns - ExecTime: 1.39ms - InputRows: 4.133K (4133) - MemoryUsage: - BuildBlocks: 242.12 KB - BuildKeyArena: 152.00 KB - HashTable: 52.19 KB - PeakMemoryUsage: 442.30 KB - OpenTime: 30.320us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.126us - RuntimeFilterComputeTime: 111.599us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 10.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.381us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 245.17 KB - OpenTime: 21.519us - ProjectionTime: 0ns - RowsProduced: 4.133K (4133) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 648.156ms PipelineXTask (index=7):(Active: 790.999us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 724.632us - CloseTime: 12.26us - GetBlockTime: 64.276us - OpenTime: 2.923us - PrepareTime: 45.441us - SinkTime: 608.796us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 765.404us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.249ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.271us - BuildRows: 4.045K (4045) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 325.923us - BuildTableInsertTime: 111.363us - BuildTableTime: 114.993us - CloseTime: 0ns - ExecTime: 619.887us - InputRows: 4.044K (4044) - MemoryUsage: - BuildBlocks: 236.92 KB - BuildKeyArena: 148.00 KB - HashTable: 51.75 KB - PeakMemoryUsage: 432.67 KB - OpenTime: 13.372us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.334us - RuntimeFilterComputeTime: 112.797us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 9.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.237us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 187.25 KB - PeakMemoryUsage: 188.17 KB - OpenTime: 12.558us - ProjectionTime: 0ns - RowsProduced: 4.044K (4044) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 859.617ms PipelineXTask (index=9):(Active: 1.9ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 926.688us - CloseTime: 13.374us - GetBlockTime: 65.23us - OpenTime: 3.283us - PrepareTime: 60.38us - SinkTime: 803.649us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 982.140us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 487.206ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.971us - BuildRows: 4.056K (4056) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 171.475us - BuildTableInsertTime: 380.181us - BuildTableTime: 385.280us - CloseTime: 0ns - ExecTime: 825.200us - InputRows: 4.055K (4055) - MemoryUsage: - BuildBlocks: 237.58 KB - BuildKeyArena: 148.00 KB - HashTable: 51.81 KB - PeakMemoryUsage: 433.38 KB - OpenTime: 24.85us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.702us - RuntimeFilterComputeTime: 189.71us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 10.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.515us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 342.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 245.17 KB - OpenTime: 16.925us - ProjectionTime: 0ns - RowsProduced: 4.055K (4055) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 538.125ms PipelineXTask (index=11):(Active: 1.209ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.136ms - CloseTime: 14.284us - GetBlockTime: 60.730us - OpenTime: 2.137us - PrepareTime: 52.514us - SinkTime: 1.29ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 374.151ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.109us - BuildRows: 4.074K (4074) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 176.362us - BuildTableInsertTime: 608.890us - BuildTableTime: 614.528us - CloseTime: 0ns - ExecTime: 1.40ms - InputRows: 4.073K (4073) - MemoryUsage: - BuildBlocks: 238.63 KB - BuildKeyArena: 148.00 KB - HashTable: 51.90 KB - PeakMemoryUsage: 434.52 KB - OpenTime: 15.93us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.2us - RuntimeFilterComputeTime: 150.913us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 11.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 245.17 KB - OpenTime: 14.50us - ProjectionTime: 0ns - RowsProduced: 4.073K (4073) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 807.0ms PipelineXTask (index=13):(Active: 842.280us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 745.862us - CloseTime: 16.555us - GetBlockTime: 70.441us - OpenTime: 2.491us - PrepareTime: 71.874us - SinkTime: 634.543us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 814.591us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 337.844ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.369us - BuildRows: 3.923K (3923) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 168.793us - BuildTableInsertTime: 299.73us - BuildTableTime: 303.274us - CloseTime: 0ns - ExecTime: 652.802us - InputRows: 3.922K (3922) - MemoryUsage: - BuildBlocks: 229.79 KB - BuildKeyArena: 144.00 KB - HashTable: 51.16 KB - PeakMemoryUsage: 420.94 KB - OpenTime: 20.907us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.755us - RuntimeFilterComputeTime: 108.519us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 13.861us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 98.66us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.25 KB - MemoryUsage: - Blocks: 277.25 KB - PeakMemoryUsage: 278.17 KB - OpenTime: 17.911us - ProjectionTime: 0ns - RowsProduced: 3.922K (3922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 621.67ms PipelineXTask (index=15):(Active: 875.822us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 785.142us - CloseTime: 6.284us - GetBlockTime: 70.282us - OpenTime: 2.250us - PrepareTime: 76.898us - SinkTime: 678.104us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 833.131us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 267.590ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.447us - BuildRows: 3.961K (3961) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 251.692us - BuildTableInsertTime: 289.441us - BuildTableTime: 291.940us - CloseTime: 0ns - ExecTime: 702.812us - InputRows: 3.96K (3960) - MemoryUsage: - BuildBlocks: 232.02 KB - BuildKeyArena: 144.00 KB - HashTable: 51.34 KB - PeakMemoryUsage: 423.36 KB - OpenTime: 12.109us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.294us - RuntimeFilterComputeTime: 101.147us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 5.350us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.979us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 245.17 KB - OpenTime: 24.835us - ProjectionTime: 0ns - RowsProduced: 3.96K (3960) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 647.941ms PipelineXTask (index=17):(Active: 1.17ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 955.419us - CloseTime: 11.361us - GetBlockTime: 59.895us - OpenTime: 2.660us - PrepareTime: 42.697us - SinkTime: 860.432us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 996.752us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 488.95ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.140us - BuildRows: 3.934K (3934) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 234.276us - BuildTableInsertTime: 432.632us - BuildTableTime: 442.400us - CloseTime: 0ns - ExecTime: 873.860us - InputRows: 3.933K (3933) - MemoryUsage: - BuildBlocks: 230.42 KB - BuildKeyArena: 144.00 KB - HashTable: 51.21 KB - PeakMemoryUsage: 421.62 KB - OpenTime: 15.128us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.350us - RuntimeFilterComputeTime: 149.528us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 9.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.983us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.00 KB - MemoryUsage: - Blocks: 244.50 KB - PeakMemoryUsage: 245.42 KB - OpenTime: 11.589us - ProjectionTime: 0ns - RowsProduced: 3.933K (3933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 537.997ms PipelineXTask (index=19):(Active: 731.485us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 649.600us - CloseTime: 7.263us - GetBlockTime: 54.705us - OpenTime: 3.464us - PrepareTime: 67.20us - SinkTime: 540.580us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 708.814us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 338.497ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.737us - BuildRows: 3.874K (3874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 168.849us - BuildTableInsertTime: 239.985us - BuildTableTime: 242.209us - CloseTime: 0ns - ExecTime: 578.90us - InputRows: 3.873K (3873) - MemoryUsage: - BuildBlocks: 226.88 KB - BuildKeyArena: 144.00 KB - HashTable: 50.92 KB - PeakMemoryUsage: 417.79 KB - OpenTime: 39.685us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.404us - RuntimeFilterComputeTime: 95.496us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 6.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 333.75 KB - MemoryUsage: - Blocks: 276.75 KB - PeakMemoryUsage: 277.67 KB - OpenTime: 7.828us - ProjectionTime: 0ns - RowsProduced: 3.873K (3873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 620.919ms PipelineXTask (index=21):(Active: 965.87us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 897.28us - CloseTime: 5.569us - GetBlockTime: 61.601us - OpenTime: 2.42us - PrepareTime: 52.761us - SinkTime: 801.56us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 946.795us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 339.165ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.902us - BuildRows: 4.105K (4105) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 342.699us - BuildTableInsertTime: 330.671us - BuildTableTime: 333.231us - CloseTime: 0ns - ExecTime: 816.226us - InputRows: 4.104K (4104) - MemoryUsage: - BuildBlocks: 240.46 KB - BuildKeyArena: 152.00 KB - HashTable: 52.05 KB - PeakMemoryUsage: 440.50 KB - OpenTime: 17.474us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.777us - RuntimeFilterComputeTime: 91.800us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 4.523us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.320us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 358.25 KB - MemoryUsage: - Blocks: 301.25 KB - PeakMemoryUsage: 302.17 KB - OpenTime: 13.796us - ProjectionTime: 0ns - RowsProduced: 4.104K (4104) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 620.654ms PipelineXTask (index=23):(Active: 984.335us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 918.484us - CloseTime: 7.578us - GetBlockTime: 61.553us - OpenTime: 3.137us - PrepareTime: 49.862us - SinkTime: 816.657us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 966.67us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 488.945ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.541us - BuildRows: 4.073K (4073) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 317.164us - BuildTableInsertTime: 316.841us - BuildTableTime: 320.374us - CloseTime: 0ns - ExecTime: 829.160us - InputRows: 4.072K (4072) - MemoryUsage: - BuildBlocks: 238.54 KB - BuildKeyArena: 148.00 KB - HashTable: 51.89 KB - PeakMemoryUsage: 434.42 KB - OpenTime: 14.650us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.960us - RuntimeFilterComputeTime: 146.498us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 6.267us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.662us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.25 KB - MemoryUsage: - Blocks: 244.25 KB - PeakMemoryUsage: 245.17 KB - OpenTime: 13.391us - ProjectionTime: 0ns - RowsProduced: 4.072K (4072) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 537.842ms Fragment 122: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 445.967ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 445.182ms - CloseTime: 44.471us - GetBlockTime: 2.452ms - OpenTime: 400.384us - PrepareTime: 327.143us - SinkTime: 440.738ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 272.639ms - WaitBfTime: 1s335ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s768ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 497 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.534us - CompressTime: 0ns - ExecTime: 440.756ms - InputRows: 2.082064M (2082064) - LocalBytesSent: 91.34 MB - LocalSendTime: 5.122ms - LocalSentRows: 2.082064M (2082064) - MemoryUsage: - PeakMemoryUsage: 159.90 MB - MergeBlockTime: 0ns - OpenTime: 178.506us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.082064M (2082064) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 198.342ms - SplitBlockHashComputeTime: 186.375ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 289.837ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=77. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 30, type = minmax), RuntimeFilter: (id = 31, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA--1i3U-31lDLb76G6Ra-Ig : wonH-hBwAAypd_8e0PBwwiF9iVu87EHQ] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 148.36us - BlocksProduced: 514 - CloseTime: 30.131us - ExecTime: 135.556ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 488.400us - ProcessConjunctTime: 58.749us - ProjectionTime: 0ns - RowsProduced: 2.082064M (2082064) - RowsRead: 2.082064M (2082064) - RuntimeFilterInfo: - filter id = 31 filtered: 0 - filter id = 31 input: 207.264K (207264) - ScannerWorkerWaitTime: 13.628ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.775ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 30, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 31, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [120.224ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [13.628ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.867ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.241ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.378us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.421ms - ScannerCtxSchedTime: 13.614ms - ScannerFilterTime: 367.480us - ScannerGetBlockTime: 119.633ms - ScannerInitTime: 146.709us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 31: [type = BF, input = 207264, filtered = 0] - BitmapIndexFilterTimer: 1.399us - BlockConditionsFilteredBloomFilterTime: 2.451us - BlockConditionsFilteredDictTime: 978ns - BlockConditionsFilteredTime: 276.937us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 236.368us - BlockInitSeekCount: 29 - BlockInitSeekTime: 284.589us - BlockInitTime: 658.658us - BlockLoadTime: 119.636ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 305.477us - FirstReadTime: 24.391ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.295us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 57.772ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 32.125ms - OutputIndexResultColumnTimer: 53.837us - RawRowsRead: 2.082064M (2082064) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 92 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 2.082064M (2082064) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.852ms - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 162.824us PipelineXTask (index=1):(Active: 278.858ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 278.475ms - CloseTime: 74.0us - GetBlockTime: 2.463ms - OpenTime: 109.450us - PrepareTime: 188.257us - SinkTime: 274.446ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 234.264ms - WaitBfTime: 1s21ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s170ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 501 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.720us - CompressTime: 0ns - ExecTime: 274.362ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 91.52 MB - LocalSendTime: 4.343ms - LocalSentRows: 2.086234M (2086234) - MemoryUsage: - PeakMemoryUsage: 161.32 MB - MergeBlockTime: 0ns - OpenTime: 64.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 184.14ms - SplitBlockHashComputeTime: 67.919ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 289.837ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=77. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 30, type = minmax), RuntimeFilter: (id = 31, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.145us - BlocksProduced: 514 - CloseTime: 55.590us - ExecTime: 321.786ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 168.20us - ProcessConjunctTime: 28.484us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 149.236ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 319.276ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 30, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 31, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [169.226ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [149.236ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 149.272ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 943.497us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.254us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 119.267ms - ScannerCtxSchedTime: 149.220ms - ScannerFilterTime: 17.793ms - ScannerGetBlockTime: 151.166ms - ScannerInitTime: 55.689us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 964ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.662us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 20.338us - BlockInitTime: 110.959us - BlockLoadTime: 150.362ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.166ms - FirstReadTime: 147.778ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.575us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 186.435us - OutputIndexResultColumnTimer: 74.411us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 358.461ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 358.122ms - CloseTime: 61.687us - GetBlockTime: 32.360ms - OpenTime: 76.224us - PrepareTime: 189.212us - SinkTime: 324.241ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 226.897ms - WaitBfTime: 1s19ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s823ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 499 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.323us - CompressTime: 0ns - ExecTime: 324.157ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 91.56 MB - LocalSendTime: 4.567ms - LocalSentRows: 2.087045M (2087045) - MemoryUsage: - PeakMemoryUsage: 161.45 MB - MergeBlockTime: 0ns - OpenTime: 78.448us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 200.462ms - SplitBlockHashComputeTime: 82.351ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 289.837ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=77. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 30, type = minmax), RuntimeFilter: (id = 31, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.464us - BlocksProduced: 515 - CloseTime: 45.459us - ExecTime: 265.381ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 126.862us - ProcessConjunctTime: 10.514us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 179.1ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 232.988ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 30, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 31, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [94.810ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [179.001ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 77.549ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 940.702us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.483us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.309ms - ScannerCtxSchedTime: 178.989ms - ScannerFilterTime: 15.604ms - ScannerGetBlockTime: 78.984ms - ScannerInitTime: 45.622us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 899ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.450us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.256us - BlockInitTime: 122.84us - BlockLoadTime: 78.649ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 964.88us - FirstReadTime: 76.599ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.279us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 137.833us - OutputIndexResultColumnTimer: 51.997us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 230.467ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 230.133ms - CloseTime: 64.715us - GetBlockTime: 2.346ms - OpenTime: 66.599us - PrepareTime: 192.758us - SinkTime: 226.250ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 229.673ms - WaitBfTime: 1s17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s300ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 502 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.161us - CompressTime: 0ns - ExecTime: 226.164ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 91.55 MB - LocalSendTime: 4.325ms - LocalSentRows: 2.086892M (2086892) - MemoryUsage: - PeakMemoryUsage: 161.61 MB - MergeBlockTime: 0ns - OpenTime: 73.998us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 140.180ms - SplitBlockHashComputeTime: 63.820ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 289.837ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=77. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 30, type = minmax), RuntimeFilter: (id = 31, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.196us - BlocksProduced: 515 - CloseTime: 50.290us - ExecTime: 297.604ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 132.588us - ProcessConjunctTime: 13.292us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 146.336ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 295.221ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 30, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 31, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [149.512ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [146.336ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 119.906ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 666.619us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.40us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.458ms - ScannerCtxSchedTime: 146.318ms - ScannerFilterTime: 27.803ms - ScannerGetBlockTime: 121.462ms - ScannerInitTime: 35.330us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.315us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.567us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 16.788us - BlockInitTime: 115.960us - BlockLoadTime: 120.667ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 716.433us - FirstReadTime: 118.521ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.483us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 151.972us - OutputIndexResultColumnTimer: 62.770us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 123: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.198ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.18ms - CloseTime: 26.925us - GetBlockTime: 1.308ms - OpenTime: 3.802us - PrepareTime: 139.825us - SinkTime: 1.550ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.125ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.794ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.335us - CompressTime: 0ns - ExecTime: 1.630ms - InputRows: 7.879K (7879) - LocalBytesSent: 461.61 KB - LocalSendTime: 95.971us - LocalSentRows: 7.879K (7879) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 70.703us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.879K (7879) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 954.496us - SplitBlockHashComputeTime: 212.879us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 11.866us - ExecTime: 1.214ms - InitProbeSideTime: 227.621us - JoinFilterTimer: 410ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.752us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.512us - ProbeFindNextTime: 0ns - ProbeRows: 7.879K (7879) - ProbeTime: 803.465us - ProbeWhenBuildSideOutputTime: 12.903us - ProbeWhenProbeSideOutputTime: 375.569us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 130.955us - ProjectionTime: 368.764us - RowsProduced: 7.879K (7879) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 86.283us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 564.00 KB - OpenTime: 721ns - ProjectionTime: 0ns - RowsProduced: 7.879K (7879) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 443.753ms PipelineXTask (index=3):(Active: 40.185ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 40.9ms - CloseTime: 29.566us - GetBlockTime: 1.119ms - OpenTime: 8.988us - PrepareTime: 130.168us - SinkTime: 38.825ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.675ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.664ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.959us - CompressTime: 0ns - ExecTime: 38.900ms - InputRows: 8.069K (8069) - LocalBytesSent: 472.71 KB - LocalSendTime: 76.245us - LocalSentRows: 8.069K (8069) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 69.197us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.069K (8069) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 38.332ms - SplitBlockHashComputeTime: 217.45us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 17.201us - ExecTime: 1.124ms - InitProbeSideTime: 170.908us - JoinFilterTimer: 361ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.873us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.910us - ProbeFindNextTime: 0ns - ProbeRows: 8.069K (8069) - ProbeTime: 828.289us - ProbeWhenBuildSideOutputTime: 23.24us - ProbeWhenProbeSideOutputTime: 449.492us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 135.419us - ProjectionTime: 254.522us - RowsProduced: 8.069K (8069) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 26.273us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 520.00 KB - OpenTime: 10.640us - ProjectionTime: 0ns - RowsProduced: 8.069K (8069) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 421.435ms PipelineXTask (index=6):(Active: 2.259ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.67ms - CloseTime: 46.581us - GetBlockTime: 802.807us - OpenTime: 5.370us - PrepareTime: 133.395us - SinkTime: 1.186ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.197ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.437ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.909us - CompressTime: 0ns - ExecTime: 1.271ms - InputRows: 8.002K (8002) - LocalBytesSent: 468.79 KB - LocalSendTime: 79.68us - LocalSentRows: 8.002K (8002) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 73.789us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 8.002K (8002) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 699.637us - SplitBlockHashComputeTime: 234.928us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 30.246us - ExecTime: 817.937us - InitProbeSideTime: 188.323us - JoinFilterTimer: 400ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.712us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.318us - ProbeFindNextTime: 0ns - ProbeRows: 8.002K (8002) - ProbeTime: 587.532us - ProbeWhenBuildSideOutputTime: 22.299us - ProbeWhenProbeSideOutputTime: 163.629us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 161.814us - ProjectionTime: 175.380us - RowsProduced: 8.002K (8002) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 17.600us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 746ns - ProjectionTime: 0ns - RowsProduced: 8.002K (8002) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 502.145ms PipelineXTask (index=9):(Active: 2.951ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.791ms - CloseTime: 17.418us - GetBlockTime: 1.213ms - OpenTime: 7.893us - PrepareTime: 126.711us - SinkTime: 1.524ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.921ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.801ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.285us - CompressTime: 0ns - ExecTime: 1.605ms - InputRows: 7.828K (7828) - LocalBytesSent: 458.61 KB - LocalSendTime: 43.254us - LocalSentRows: 7.828K (7828) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 77.299us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.828K (7828) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.19ms - SplitBlockHashComputeTime: 245.258us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 8.118us - ExecTime: 1.208ms - InitProbeSideTime: 312.383us - JoinFilterTimer: 408ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.336us - ProbeFindNextTime: 0ns - ProbeRows: 7.828K (7828) - ProbeTime: 822.801us - ProbeWhenBuildSideOutputTime: 37.758us - ProbeWhenProbeSideOutputTime: 286.844us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 131.82us - ProjectionTime: 355.908us - RowsProduced: 7.828K (7828) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 14.482us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 690ns - ProjectionTime: 0ns - RowsProduced: 7.828K (7828) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 494.67ms PipelineXTask (index=12):(Active: 2.598ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.406ms - CloseTime: 48.224us - GetBlockTime: 1.58ms - OpenTime: 7.45us - PrepareTime: 130.513us - SinkTime: 1.291ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.518ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 450.279ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.998us - CompressTime: 0ns - ExecTime: 1.364ms - InputRows: 7.866K (7866) - LocalBytesSent: 460.87 KB - LocalSendTime: 109.792us - LocalSentRows: 7.866K (7866) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 64.197us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 7.866K (7866) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 757.967us - SplitBlockHashComputeTime: 230.887us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 34.139us - ExecTime: 1.68ms - InitProbeSideTime: 268.671us - JoinFilterTimer: 405ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.547us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.354us - ProbeFindNextTime: 0ns - ProbeRows: 7.866K (7866) - ProbeTime: 885.481us - ProbeWhenBuildSideOutputTime: 27.690us - ProbeWhenProbeSideOutputTime: 414.259us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 123.993us - ProjectionTime: 124.367us - RowsProduced: 7.866K (7866) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 29.258us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 520.00 KB - OpenTime: 1.567us - ProjectionTime: 0ns - RowsProduced: 7.866K (7866) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 432.457ms PipelineXTask (index=15):(Active: 2.192ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.2ms - CloseTime: 44.145us - GetBlockTime: 925.809us - OpenTime: 7.785us - PrepareTime: 132.558us - SinkTime: 1.8ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.136ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 214.412ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 29.109us - CompressTime: 0ns - ExecTime: 1.117ms - InputRows: 6.112K (6112) - LocalBytesSent: 358.08 KB - LocalSendTime: 82.245us - LocalSentRows: 6.112K (6112) - MemoryUsage: - PeakMemoryUsage: 571.00 KB - MergeBlockTime: 0ns - OpenTime: 82.649us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 6.112K (6112) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 532.840us - SplitBlockHashComputeTime: 181.269us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 12.54us - ExecTime: 925.214us - InitProbeSideTime: 171.804us - JoinFilterTimer: 403ns - MemoryUsage: - PeakMemoryUsage: 108.00 KB - ProbeKeyArena: 108.00 KB - OpenTime: 16.692us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.628us - ProbeFindNextTime: 0ns - ProbeRows: 6.112K (6112) - ProbeTime: 624.13us - ProbeWhenBuildSideOutputTime: 66.254us - ProbeWhenProbeSideOutputTime: 218.727us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 113.733us - ProjectionTime: 260.825us - RowsProduced: 6.112K (6112) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 19.262us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 550ns - ProjectionTime: 0ns - RowsProduced: 6.112K (6112) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 485.271ms PipelineXTask (index=18):(Active: 876.978us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 716.275us - CloseTime: 22.419us - GetBlockTime: 240.507us - OpenTime: 6.609us - PrepareTime: 126.501us - SinkTime: 433.998us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 844.312us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.393ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.422us - CompressTime: 0ns - ExecTime: 523.457us - InputRows: 2.502K (2502) - LocalBytesSent: 146.58 KB - LocalSendTime: 62.867us - LocalSentRows: 2.502K (2502) - MemoryUsage: - PeakMemoryUsage: 195.25 KB - MergeBlockTime: 0ns - OpenTime: 79.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.502K (2502) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 170.766us - SplitBlockHashComputeTime: 73.432us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 9.612us - ExecTime: 253.745us - InitProbeSideTime: 54.603us - JoinFilterTimer: 152ns - MemoryUsage: - PeakMemoryUsage: 44.00 KB - ProbeKeyArena: 44.00 KB - OpenTime: 15.929us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.578us - ProbeFindNextTime: 0ns - ProbeRows: 2.502K (2502) - ProbeTime: 171.566us - ProbeWhenBuildSideOutputTime: 4.857us - ProbeWhenProbeSideOutputTime: 40.148us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.791us - ProjectionTime: 49.982us - RowsProduced: 2.502K (2502) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 8.362us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 228.00 KB - OpenTime: 660ns - ProjectionTime: 0ns - RowsProduced: 2.502K (2502) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 497.626ms PipelineXTask (index=21):(Active: 363.505us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 209.820us - CloseTime: 20.620us - GetBlockTime: 28.230us - OpenTime: 5.606us - PrepareTime: 122.27us - SinkTime: 151.505us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 334.454us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.643ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.556us - CompressTime: 0ns - ExecTime: 231.899us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 66.546us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.460us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 641ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.623us - ExecTime: 41.301us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.156us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 18.220us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.992us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 726ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 521.109ms PipelineXTask (index=24):(Active: 302.63us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 144.761us - CloseTime: 19.904us - GetBlockTime: 18.760us - OpenTime: 5.690us - PrepareTime: 125.976us - SinkTime: 97.407us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 273.396us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.865ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.186us - CompressTime: 0ns - ExecTime: 192.945us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.358us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.638us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 500ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.794us - ExecTime: 31.423us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.701us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.260us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.819us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 863ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 521.103ms PipelineXTask (index=27):(Active: 288.455us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 125.191us - CloseTime: 12.66us - GetBlockTime: 13.526us - OpenTime: 5.404us - PrepareTime: 140.71us - SinkTime: 87.752us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 268.245us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.273ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.995us - CompressTime: 0ns - ExecTime: 192.622us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.119us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 96.139us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 457ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.761us - ExecTime: 24.274us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.797us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.84us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.155us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 5.373us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.681us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 524.813ms PipelineXTask (index=30):(Active: 283.937us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 142.119us - CloseTime: 16.150us - GetBlockTime: 22.524us - OpenTime: 5.920us - PrepareTime: 114.397us - SinkTime: 93.796us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 260.100us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.767ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.610us - CompressTime: 0ns - ExecTime: 167.7us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.769us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 62.932us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 380ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.124us - ExecTime: 35.146us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.89us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.476us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.795us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.900us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 784ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 523.141ms PipelineXTask (index=33):(Active: 286.366us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 119.868us - CloseTime: 20.600us - GetBlockTime: 16.588us - OpenTime: 3.378us - PrepareTime: 138.197us - SinkTime: 85.39us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 259.739us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.895ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.144us - CompressTime: 0ns - ExecTime: 178.577us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.907us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.638us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 322ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.871us - ExecTime: 32.424us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.775us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.64us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.202us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.585us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 869ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 510.772ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 892.993us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 348.442us - CloseTime: 62.492us - GetBlockTime: 34.35us - OpenTime: 253.932us - PrepareTime: 219.790us - SinkTime: 21.5us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 815.308us - WaitBfTime: 193.434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.649ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 37.526us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 17.254us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 34.489us - BlocksProduced: 0 - CloseTime: 59.778us - ExecTime: 150.615ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 373.896us - ProcessConjunctTime: 155.725us - ProjectionTime: 1.213us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 149.700ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 150.148ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [4.119us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [149.700ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 380.852us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 115ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 445.970us - ScannerCtxSchedTime: 149.698ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 950ns - ScannerInitTime: 45.596us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.188us - BlockConditionsFilteredBloomFilterTime: 2.370us - BlockConditionsFilteredDictTime: 111.87us - BlockConditionsFilteredTime: 146.40us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.414us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.904us - BlockInitTime: 185.905us - BlockLoadTime: 202.170us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 602ns - IOTimer: 0ns - InvertedIndexFilterTime: 2.473us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 734.120us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 297.639us - CloseTime: 48.908us - GetBlockTime: 24.683us - OpenTime: 240.697us - PrepareTime: 138.124us - SinkTime: 10.635us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 675.552us - WaitBfTime: 197.812ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.602ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.127us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.337us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.289us - BlocksProduced: 0 - CloseTime: 47.355us - ExecTime: 163.501ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 317.939us - ProcessConjunctTime: 110.272us - ProjectionTime: 1.466us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 156.383ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.113ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.690us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [156.383ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 6.637ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 150ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 6.695ms - ScannerCtxSchedTime: 156.380ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.829us - ScannerInitTime: 67.804us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 2.810us - BlockConditionsFilteredBloomFilterTime: 12.342us - BlockConditionsFilteredDictTime: 320.603us - BlockConditionsFilteredTime: 433.916us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.149us - BlockInitSeekCount: 37 - BlockInitSeekTime: 788.452us - BlockInitTime: 1.351ms - BlockLoadTime: 5.971ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 46.736us - FirstReadSeekCount: 441 - FirstReadSeekTime: 100.52us - FirstReadTime: 2.744ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.177us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 33.599us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 110.998us - OutputIndexResultColumnTimer: 562ns - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 95.745K (95745) - RowsShortCircuitPredInput: 95.75K (95750) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 36.157us - ShortPredEvalTime: 431.152us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 750.359us PipelineXTask (index=7):(Active: 111.26ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.422ms - CloseTime: 50.478us - GetBlockTime: 18.543us - OpenTime: 55.377ms - PrepareTime: 168.82us - SinkTime: 6.747us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 972.9us - WaitBfTime: 189.394ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.396ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.476us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.185us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.390us - BlocksProduced: 0 - CloseTime: 49.173us - ExecTime: 212.469ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 55.461ms - ProcessConjunctTime: 55.193ms - ProjectionTime: 1.332us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 108.219ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.940ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.490us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [108.219ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 48.623ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 197ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.706ms - ScannerCtxSchedTime: 108.218ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.712us - ScannerInitTime: 114.20us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.554us - BlockConditionsFilteredBloomFilterTime: 4.693us - BlockConditionsFilteredDictTime: 168.996us - BlockConditionsFilteredTime: 297.422us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 100.806us - BlockInitSeekCount: 17 - BlockInitSeekTime: 27.212us - BlockInitTime: 393.606us - BlockLoadTime: 48.187ms - BlocksLoad: 367 - CachedPagesNum: 461 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.546ms - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 190.542us - FirstReadTime: 6.156ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.422us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 34.575ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 501.987us - OutputIndexResultColumnTimer: 24.752us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 328.372K (328372) - RowsShortCircuitPredInput: 340.087K (340087) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 34.784ms - ShortPredEvalTime: 778.530us - TotalPagesNum: 461 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.14ms PipelineXTask (index=10):(Active: 1.100ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 487.261us - CloseTime: 47.810us - GetBlockTime: 46.434us - OpenTime: 392.36us - PrepareTime: 164.550us - SinkTime: 21.480us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.42ms - WaitBfTime: 275.602ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.23ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.506us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.225us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 52.108us - BlocksProduced: 0 - CloseTime: 44.622us - ExecTime: 159.226ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 473.969us - ProcessConjunctTime: 173.883us - ProjectionTime: 1.371us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 101.971ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 158.660ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.396us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [101.971ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 56.579ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.905ms - ScannerCtxSchedTime: 101.969ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.300us - ScannerInitTime: 134.267us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 1.879us - BlockConditionsFilteredBloomFilterTime: 4.454us - BlockConditionsFilteredDictTime: 83.761us - BlockConditionsFilteredTime: 196.701us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 89.374us - BlockInitSeekCount: 26 - BlockInitSeekTime: 25.956us - BlockInitTime: 299.644us - BlockLoadTime: 56.46ms - BlocksLoad: 405 - CachedPagesNum: 509 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.260ms - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 182.639us - FirstReadTime: 6.494ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.723us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 40.742ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 719.333us - OutputIndexResultColumnTimer: 29.221us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 324.614K (324614) - RowsShortCircuitPredInput: 343.85K (343850) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 40.949ms - ShortPredEvalTime: 885.531us - TotalPagesNum: 509 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.222ms PipelineXTask (index=13):(Active: 882.676us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 345.36us - CloseTime: 35.957us - GetBlockTime: 31.568us - OpenTime: 284.708us - PrepareTime: 207.804us - SinkTime: 9.113us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 837.874us - WaitBfTime: 226.120ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.477ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.239us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.456us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 45.832us - BlocksProduced: 0 - CloseTime: 33.553us - ExecTime: 138.390ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 373.37us - ProcessConjunctTime: 152.530us - ProjectionTime: 1.383us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 119.111ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.950ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.622us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [119.111ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.759ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.828ms - ScannerCtxSchedTime: 119.109ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.704us - ScannerInitTime: 65.290us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 1.359us - BlockConditionsFilteredBloomFilterTime: 3.630us - BlockConditionsFilteredDictTime: 122.507us - BlockConditionsFilteredTime: 245.132us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 104.585us - BlockInitSeekCount: 25 - BlockInitSeekTime: 19.675us - BlockInitTime: 320.801us - BlockLoadTime: 18.377ms - BlocksLoad: 384 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.998ms - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 155.486us - FirstReadTime: 6.184ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.520us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.146ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 943.52us - OutputIndexResultColumnTimer: 24.315us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 458.075K (458075) - RowsShortCircuitPredInput: 500.734K (500734) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.347ms - ShortPredEvalTime: 1.319ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.208ms PipelineXTask (index=16):(Active: 1.115ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 465.746us - CloseTime: 40.551us - GetBlockTime: 56.939us - OpenTime: 374.474us - PrepareTime: 223.225us - SinkTime: 11.230us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.64ms - WaitBfTime: 183.160ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.575ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.568us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.126us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.338us - BlocksProduced: 0 - CloseTime: 37.415us - ExecTime: 192.146ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 466.378us - ProcessConjunctTime: 209.673us - ProjectionTime: 1.463us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 149.806ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.584ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [7.453us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [149.806ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.693ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 110ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.469ms - ScannerCtxSchedTime: 149.804ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.35us - ScannerInitTime: 105.567us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 2.672us - BlockConditionsFilteredBloomFilterTime: 7.826us - BlockConditionsFilteredDictTime: 134.956us - BlockConditionsFilteredTime: 259.456us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 87.392us - BlockInitSeekCount: 31 - BlockInitSeekTime: 33.656us - BlockInitTime: 408.999us - BlockLoadTime: 31.996ms - BlocksLoad: 410 - CachedPagesNum: 516 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.48ms - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 173.583us - FirstReadTime: 21.358ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.154us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.840ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 688.785us - OutputIndexResultColumnTimer: 21.523us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 460.717K (460717) - RowsShortCircuitPredInput: 480.081K (480081) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.41ms - ShortPredEvalTime: 1.57ms - TotalPagesNum: 516 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.351ms PipelineXTask (index=19):(Active: 1.96ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 421.663us - CloseTime: 85.61us - GetBlockTime: 32.820us - OpenTime: 352.879us - PrepareTime: 227.119us - SinkTime: 11.103us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.1ms - WaitBfTime: 183.561ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.16ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.534us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.142us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.854us - BlocksProduced: 0 - CloseTime: 82.106us - ExecTime: 209.355ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 440.730us - ProcessConjunctTime: 190.744us - ProjectionTime: 2.316us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 151.167ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 208.797ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [9.530us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [151.167ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.561ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 204ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.936ms - ScannerCtxSchedTime: 151.165ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.714us - ScannerInitTime: 107.183us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 6.596us - BlockConditionsFilteredBloomFilterTime: 7.185us - BlockConditionsFilteredDictTime: 333.617us - BlockConditionsFilteredTime: 479.963us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 100.443us - BlockInitSeekCount: 35 - BlockInitSeekTime: 30.502us - BlockInitTime: 614.335us - BlockLoadTime: 56.923ms - BlocksLoad: 345 - CachedPagesNum: 436 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.83ms - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 172.162us - FirstReadTime: 5.323ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.147us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 17.633ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 20.160ms - OutputIndexResultColumnTimer: 21.48us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 530.951K (530951) - RowsShortCircuitPredInput: 659.979K (659979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 17.850ms - ShortPredEvalTime: 2.570ms - TotalPagesNum: 436 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.243ms PipelineXTask (index=22):(Active: 1.185ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 534.881us - CloseTime: 64.262us - GetBlockTime: 72.154us - OpenTime: 391.417us - PrepareTime: 182.485us - SinkTime: 22.685us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.104ms - WaitBfTime: 189.245ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.42ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.649us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.45us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 63.414us - BlocksProduced: 0 - CloseTime: 60.192us - ExecTime: 203.942ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 474.357us - ProcessConjunctTime: 202.858us - ProjectionTime: 1.612us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 153.473ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 203.335ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [8.470us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [153.473ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 49.738ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.750ms - ScannerCtxSchedTime: 153.470ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.340us - ScannerInitTime: 102.350us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 3.32us - BlockConditionsFilteredBloomFilterTime: 7.166us - BlockConditionsFilteredDictTime: 158.645us - BlockConditionsFilteredTime: 336.380us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 137.516us - BlockInitSeekCount: 33 - BlockInitSeekTime: 40.457us - BlockInitTime: 514.917us - BlockLoadTime: 37.813ms - BlocksLoad: 382 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 19.546ms - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 239.13us - FirstReadTime: 6.330ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.768us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.141ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.864ms - OutputIndexResultColumnTimer: 26.955us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 578.913K (578913) - RowsShortCircuitPredInput: 674.788K (674788) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.380ms - ShortPredEvalTime: 2.341ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.461ms PipelineXTask (index=25):(Active: 1.348ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 585.993us - CloseTime: 48.655us - GetBlockTime: 40.990us - OpenTime: 507.591us - PrepareTime: 194.875us - SinkTime: 9.992us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.288ms - WaitBfTime: 277.449ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.346ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.318us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.79us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 63.19us - BlocksProduced: 0 - CloseTime: 45.966us - ExecTime: 168.479ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 583.857us - ProcessConjunctTime: 257.368us - ProjectionTime: 1.432us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 107.749ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 167.807ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [6.263us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [107.749ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 59.983ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 187ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.919ms - ScannerCtxSchedTime: 107.747ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.534us - ScannerInitTime: 143.165us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 2.62us - BlockConditionsFilteredBloomFilterTime: 7.268us - BlockConditionsFilteredDictTime: 64.759us - BlockConditionsFilteredTime: 160.318us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 64.724us - BlockInitSeekCount: 25 - BlockInitSeekTime: 417.802us - BlockInitTime: 690.343us - BlockLoadTime: 59.460ms - BlocksLoad: 260 - CachedPagesNum: 332 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 6.877ms - FirstReadSeekCount: 771 - FirstReadSeekTime: 148.966us - FirstReadTime: 7.528ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.342us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.720ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.255ms - OutputIndexResultColumnTimer: 24.90us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 466.305K (466305) - RowsShortCircuitPredInput: 597.567K (597567) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.915ms - ShortPredEvalTime: 36.420ms - TotalPagesNum: 332 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.856ms PipelineXTask (index=28):(Active: 813.956us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 349.602us - CloseTime: 72.730us - GetBlockTime: 31.374us - OpenTime: 248.809us - PrepareTime: 133.412us - SinkTime: 36.389us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 728.620us - WaitBfTime: 200.770ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.662ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 38.870us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.361us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.584us - BlocksProduced: 0 - CloseTime: 69.870us - ExecTime: 278.855ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 319.727us - ProcessConjunctTime: 108.128us - ProjectionTime: 1.492us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 155.961ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 278.433ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [7.248us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [155.961ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 122.382ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 111ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.455ms - ScannerCtxSchedTime: 155.958ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.909us - ScannerInitTime: 74.732us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 1.912us - BlockConditionsFilteredBloomFilterTime: 5.396us - BlockConditionsFilteredDictTime: 79.787us - BlockConditionsFilteredTime: 167.702us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 62.989us - BlockInitSeekCount: 26 - BlockInitSeekTime: 245.96us - BlockInitTime: 506.154us - BlockLoadTime: 121.879ms - BlocksLoad: 291 - CachedPagesNum: 372 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 9.46ms - FirstReadSeekCount: 864 - FirstReadSeekTime: 166.979us - FirstReadTime: 4.871ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.578us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.225ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.684ms - OutputIndexResultColumnTimer: 28.115us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 503.143K (503143) - RowsShortCircuitPredInput: 674.15K (674150) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.464ms - ShortPredEvalTime: 63.143ms - TotalPagesNum: 372 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 37.60ms PipelineXTask (index=31):(Active: 1.57ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 534.797us - CloseTime: 54.330us - GetBlockTime: 68.58us - OpenTime: 339.364us - PrepareTime: 121.967us - SinkTime: 100.595us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 993.245us - WaitBfTime: 203.797ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.292ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 100.160us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.80us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.729us - BlocksProduced: 6 - CloseTime: 51.971us - ExecTime: 154.751ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 411.900us - ProcessConjunctTime: 166.4us - ProjectionTime: 406.647us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 142.733ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.807ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false - PerScannerRunningTime: [6.872ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [142.733ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.691ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.161ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 199ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.5ms - ScannerCtxSchedTime: 142.731ms - ScannerFilterTime: 35.915us - ScannerGetBlockTime: 6.808ms - ScannerInitTime: 107.200us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 720ns - BlockConditionsFilteredBloomFilterTime: 2.393us - BlockConditionsFilteredDictTime: 28.439us - BlockConditionsFilteredTime: 58.704us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 18.810us - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.877us - BlockInitTime: 94.579us - BlockLoadTime: 7.676ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.377ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 50.389us - FirstReadTime: 1.1ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.648us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.417ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 450.405us - OutputIndexResultColumnTimer: 5.911us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 169.11K (169110) - RowsShortCircuitPredInput: 191.383K (191383) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 607.558us - ShortPredEvalTime: 480.206us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 448.445us PipelineXTask (index=34):(Active: 840.544us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 374.752us - CloseTime: 70.818us - GetBlockTime: 115.738us - OpenTime: 194.9us - PrepareTime: 192.491us - SinkTime: 35.971us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 760.77us - WaitBfTime: 275.984ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.899ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 35.764us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.44us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 28, type = minmax), RuntimeFilter: (id = 29, type = in_or_bloomfilter), - PushDownPredicates: [{EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}, {USER_DELETE_FLAG IN [0]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.103us - BlocksProduced: 7 - CloseTime: 68.760us - ExecTime: 117.554ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 315.459us - ProcessConjunctTime: 111.648us - ProjectionTime: 744.612us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 104.491ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 116.306ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 28, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 29, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false - PerScannerRunningTime: [8.747ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [104.491ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.465ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 942.6us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 263ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.766ms - ScannerCtxSchedTime: 104.489ms - ScannerFilterTime: 51.640us - ScannerGetBlockTime: 8.652ms - ScannerInitTime: 36.159us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 654ns - BlockConditionsFilteredBloomFilterTime: 2.51us - BlockConditionsFilteredDictTime: 27.490us - BlockConditionsFilteredTime: 64.796us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 26.402us - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.465us - BlockInitTime: 103.792us - BlockLoadTime: 9.163ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.739ms - FirstReadSeekCount: 180 - FirstReadSeekTime: 62.908us - FirstReadTime: 1.331ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.82us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.777ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 644.267us - OutputIndexResultColumnTimer: 6.839us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 174.885K (174885) - RowsShortCircuitPredInput: 200.87K (200870) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 735.767us - ShortPredEvalTime: 610.930us - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 499.210us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 257.861us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 181.622us - CloseTime: 10.45us - GetBlockTime: 14.684us - OpenTime: 2.268us - PrepareTime: 58.948us - SinkTime: 140.927us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 238.768us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.626ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.481us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.80us - BuildTableInsertTime: 36.912us - BuildTableTime: 42.739us - CloseTime: 0ns - ExecTime: 157.76us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 16.981us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.660us - RuntimeFilterComputeTime: 20.97us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=73): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.185us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 19.730us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 179.686ms PipelineXTask (index=5):(Active: 138.427us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 60.79us - CloseTime: 7.452us - GetBlockTime: 0ns - OpenTime: 2.209us - PrepareTime: 64.115us - SinkTime: 32.441us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.94us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.556ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.387us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.475us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 174.928ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.922us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.557us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.848us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 112.922us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.563us - CloseTime: 8.757us - GetBlockTime: 0ns - OpenTime: 1.507us - PrepareTime: 47.890us - SinkTime: 23.263us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.80us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.499ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.376us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.404us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 181.54ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.715us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.571us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.182us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 119.645us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 48.541us - CloseTime: 11.366us - GetBlockTime: 0ns - OpenTime: 2.585us - PrepareTime: 52.29us - SinkTime: 28.833us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.21us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.577ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.585us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.493us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 179.448ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.305us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.430us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.207us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 132.164us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 58.967us - CloseTime: 9.739us - GetBlockTime: 0ns - OpenTime: 2.385us - PrepareTime: 55.969us - SinkTime: 21.832us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.329us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.521ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.77us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 174.970ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.611us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.913us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.472us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 140.938us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.526us - CloseTime: 7.307us - GetBlockTime: 0ns - OpenTime: 2.180us - PrepareTime: 84.850us - SinkTime: 25.813us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.729us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.644ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.283us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.684us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 182.911ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.225us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.713us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 129.282us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.727us - CloseTime: 9.286us - GetBlockTime: 0ns - OpenTime: 2.860us - PrepareTime: 66.156us - SinkTime: 18.553us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.753us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.598ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.885us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.594us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 191.399ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.557us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.966us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.452us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 103.987us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.879us - CloseTime: 8.327us - GetBlockTime: 0ns - OpenTime: 2.816us - PrepareTime: 55.811us - SinkTime: 16.459us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.122us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.700ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.840us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.494us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 182.894ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.325us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.574us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 98.786us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.98us - CloseTime: 5.252us - GetBlockTime: 0ns - OpenTime: 3.24us - PrepareTime: 55.10us - SinkTime: 12.990us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.547ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.93us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.90us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 173.511ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.588us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.529us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 157.904us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.120us - CloseTime: 9.68us - GetBlockTime: 0ns - OpenTime: 3.283us - PrepareTime: 80.497us - SinkTime: 21.837us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 140.178us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.908ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 51.384us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.1us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 187.836ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.673us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.70us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.469us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 88.693us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.262us - CloseTime: 4.856us - GetBlockTime: 0ns - OpenTime: 1.857us - PrepareTime: 57.484us - SinkTime: 10.501us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.271us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.487ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.968us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.818us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 181.64ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.787us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.102us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.361us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 96.295us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.604us - CloseTime: 4.507us - GetBlockTime: 0ns - OpenTime: 2.112us - PrepareTime: 59.3us - SinkTime: 11.90us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.615ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf26896303a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 26.766us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.970us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 179.453ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.379us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.526us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.344us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 124: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 718.913us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 297.45us - CloseTime: 53.657us - GetBlockTime: 90.161us - OpenTime: 134.382us - PrepareTime: 224.170us - SinkTime: 47.623us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.353us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.286ms DATA_STREAM_SINK_OPERATOR (id=73,dst_id=73): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.637us - CompressTime: 0ns - ExecTime: 90.318us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 35.0us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 33.490us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=72. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 652ns - BlocksProduced: 1 - CloseTime: 34.688us - ExecTime: 159.426ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 196.39us - ProcessConjunctTime: 46.892us - ProjectionTime: 6.987us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 158.414ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 159.102ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [39.529us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [158.414ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.630us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 539.972us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 174ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 682.861us - ScannerCtxSchedTime: 158.412ms - ScannerFilterTime: 1.313us - ScannerGetBlockTime: 32.730us - ScannerInitTime: 68.37us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 460ns - BlockConditionsFilteredBloomFilterTime: 2.147us - BlockConditionsFilteredDictTime: 6.5us - BlockConditionsFilteredTime: 36.437us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 21.447us - BlockInitSeekCount: 6 - BlockInitSeekTime: 16.672us - BlockInitTime: 87.840us - BlockLoadTime: 394.326us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 14.43us - FirstReadTime: 17.983us - IOTimer: 0ns - InvertedIndexFilterTime: 2.696us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.865us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 82.460us - OutputIndexResultColumnTimer: 255ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 102ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.115us Fragment 125: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 25.444ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.331ms - CloseTime: 18.915us - GetBlockTime: 24.838ms - OpenTime: 1.483us - PrepareTime: 84.494us - SinkTime: 407.652us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.148ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.388ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.724us - CompressTime: 0ns - ExecTime: 436.18us - InputRows: 4.277K (4277) - LocalBytesSent: 309.07 KB - LocalSendTime: 367.608us - LocalSentRows: 4.277K (4277) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.756us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.277K (4277) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 798ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.763ms - GetResultsTime: 13.135ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.393ms - HashTableSize: 163.478K (163478) - InsertKeysToColumnTime: 5.345ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.618us - ProjectionTime: 1.40ms - RowsProduced: 4.277K (4277) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s845ms PipelineXTask (index=2):(Active: 30.759ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 30.615ms - CloseTime: 11.881us - GetBlockTime: 30.128ms - OpenTime: 1.875us - PrepareTime: 123.922us - SinkTime: 411.807us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.38ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.556ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.194us - CompressTime: 0ns - ExecTime: 450.875us - InputRows: 4.367K (4367) - LocalBytesSent: 315.58 KB - LocalSendTime: 359.996us - LocalSentRows: 4.367K (4367) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 47.6us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.367K (4367) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 488ns - DeserializeAndMergeTime: 0ns - ExecTime: 30.30ms - GetResultsTime: 11.211ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 985.267us - HashTableSize: 163.44K (163440) - InsertKeysToColumnTime: 4.421ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.17us - ProjectionTime: 1.66ms - RowsProduced: 4.367K (4367) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s850ms PipelineXTask (index=4):(Active: 21.847ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.705ms - CloseTime: 15.83us - GetBlockTime: 21.332ms - OpenTime: 489ns - PrepareTime: 106.355us - SinkTime: 301.766us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.783ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.414ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.377us - CompressTime: 0ns - ExecTime: 324.868us - InputRows: 4.452K (4452) - LocalBytesSent: 321.72 KB - LocalSendTime: 266.927us - LocalSentRows: 4.452K (4452) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.457us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.452K (4452) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 748ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.258ms - GetResultsTime: 10.631ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 930.618us - HashTableSize: 163.775K (163775) - InsertKeysToColumnTime: 4.337ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.584us - ProjectionTime: 941.244us - RowsProduced: 4.452K (4452) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s19ms PipelineXTask (index=6):(Active: 23.410ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.300ms - CloseTime: 18.220us - GetBlockTime: 22.875ms - OpenTime: 977ns - PrepareTime: 83.603us - SinkTime: 349.555us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.368ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.402ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.524us - CompressTime: 0ns - ExecTime: 371.99us - InputRows: 4.403K (4403) - LocalBytesSent: 318.17 KB - LocalSendTime: 306.990us - LocalSentRows: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 20.732us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.403K (4403) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 689ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.797ms - GetResultsTime: 11.552ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 996.325us - HashTableSize: 163.489K (163489) - InsertKeysToColumnTime: 4.498ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.232us - ProjectionTime: 1.41ms - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s858ms PipelineXTask (index=8):(Active: 23.336ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.180ms - CloseTime: 14.565us - GetBlockTime: 22.719ms - OpenTime: 814ns - PrepareTime: 134.994us - SinkTime: 378.463us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.314ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.105ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.842us - CompressTime: 0ns - ExecTime: 399.181us - InputRows: 4.375K (4375) - LocalBytesSent: 316.16 KB - LocalSendTime: 331.240us - LocalSentRows: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.213us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.375K (4375) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 960ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.627ms - GetResultsTime: 11.505ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 995.828us - HashTableSize: 163.641K (163641) - InsertKeysToColumnTime: 4.423ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.351us - ProjectionTime: 1.43ms - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s861ms PipelineXTask (index=10):(Active: 24.982ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 24.845ms - CloseTime: 13.611us - GetBlockTime: 24.417ms - OpenTime: 1.164us - PrepareTime: 116.589us - SinkTime: 360.671us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.255ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.551ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.931us - CompressTime: 0ns - ExecTime: 377.888us - InputRows: 4.236K (4236) - LocalBytesSent: 306.11 KB - LocalSendTime: 323.528us - LocalSentRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.753us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.236K (4236) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 833ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.338ms - GetResultsTime: 13.462ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 936.820us - HashTableSize: 163.705K (163705) - InsertKeysToColumnTime: 4.281ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.478us - ProjectionTime: 971.925us - RowsProduced: 4.236K (4236) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s890ms PipelineXTask (index=12):(Active: 23.325ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.211ms - CloseTime: 17.152us - GetBlockTime: 22.779ms - OpenTime: 815ns - PrepareTime: 85.533us - SinkTime: 360.185us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.258ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.872ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.982us - CompressTime: 0ns - ExecTime: 383.54us - InputRows: 4.533K (4533) - LocalBytesSent: 327.55 KB - LocalSendTime: 317.20us - LocalSentRows: 4.533K (4533) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.490us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.533K (4533) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 909ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.697ms - GetResultsTime: 11.395ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 962.118us - HashTableSize: 163.983K (163983) - InsertKeysToColumnTime: 4.495ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.350us - ProjectionTime: 1.81ms - RowsProduced: 4.533K (4533) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s864ms PipelineXTask (index=14):(Active: 22.69ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 21.942ms - CloseTime: 14.991us - GetBlockTime: 21.536ms - OpenTime: 603ns - PrepareTime: 104.484us - SinkTime: 335.706us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.45ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.23ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.186us - CompressTime: 0ns - ExecTime: 355.804us - InputRows: 4.332K (4332) - LocalBytesSent: 313.04 KB - LocalSendTime: 296.655us - LocalSentRows: 4.332K (4332) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.332K (4332) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 985ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.459ms - GetResultsTime: 10.620ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 951.447us - HashTableSize: 163.426K (163426) - InsertKeysToColumnTime: 4.175ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.109us - ProjectionTime: 1.29ms - RowsProduced: 4.332K (4332) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s45ms PipelineXTask (index=16):(Active: 22.755ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.663ms - CloseTime: 12.338us - GetBlockTime: 22.240ms - OpenTime: 1.9us - PrepareTime: 73.84us - SinkTime: 344.882us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.694ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.354ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.520us - CompressTime: 0ns - ExecTime: 368.261us - InputRows: 4.45K (4450) - LocalBytesSent: 321.57 KB - LocalSendTime: 309.663us - LocalSentRows: 4.45K (4450) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.110us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.45K (4450) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 716ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.157ms - GetResultsTime: 11.94ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 931.396us - HashTableSize: 162.829K (162829) - InsertKeysToColumnTime: 4.317ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.951us - ProjectionTime: 1.51ms - RowsProduced: 4.45K (4450) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s887ms PipelineXTask (index=18):(Active: 22.232ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.129ms - CloseTime: 14.35us - GetBlockTime: 21.721ms - OpenTime: 687ns - PrepareTime: 83.425us - SinkTime: 330.635us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.90ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 148.566ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.232us - CompressTime: 0ns - ExecTime: 356.422us - InputRows: 4.358K (4358) - LocalBytesSent: 314.92 KB - LocalSendTime: 290.488us - LocalSentRows: 4.358K (4358) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 30.279us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.358K (4358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 944ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.644ms - GetResultsTime: 10.840ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 922.646us - HashTableSize: 163.825K (163825) - InsertKeysToColumnTime: 4.294ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.117us - ProjectionTime: 1.17ms - RowsProduced: 4.358K (4358) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s44ms PipelineXTask (index=20):(Active: 23.721ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.629ms - CloseTime: 14.177us - GetBlockTime: 23.169ms - OpenTime: 1.60us - PrepareTime: 69.866us - SinkTime: 377.456us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.679ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.777ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.885us - CompressTime: 0ns - ExecTime: 394.438us - InputRows: 4.435K (4435) - LocalBytesSent: 320.49 KB - LocalSendTime: 339.416us - LocalSentRows: 4.435K (4435) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.123us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.435K (4435) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 698ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.62ms - GetResultsTime: 11.394ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 971.711us - HashTableSize: 163.547K (163547) - InsertKeysToColumnTime: 4.533ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.121us - ProjectionTime: 1.142ms - RowsProduced: 4.435K (4435) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s859ms PipelineXTask (index=22):(Active: 25.52ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.942ms - CloseTime: 11.641us - GetBlockTime: 24.500ms - OpenTime: 769ns - PrepareTime: 91.30us - SinkTime: 351.964us - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.8ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.429ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.775us - CompressTime: 0ns - ExecTime: 372.793us - InputRows: 4.369K (4369) - LocalBytesSent: 315.71 KB - LocalSendTime: 316.134us - LocalSentRows: 4.369K (4369) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.369K (4369) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 428ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.438ms - GetResultsTime: 13.237ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.439ms - HashTableSize: 163.902K (163902) - InsertKeysToColumnTime: 5.268ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 21.548us - ProjectionTime: 1.31ms - RowsProduced: 4.369K (4369) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s868ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 135.492ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 135.400ms - CloseTime: 31.994us - GetBlockTime: 1.281ms - OpenTime: 2.842us - PrepareTime: 51.578us - SinkTime: 133.844ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.157ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 789.540ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 6.812us - DeserializeAndMergeTime: 3.685ms - ExecTime: 133.832ms - ExprTime: 0ns - HashTableComputeTime: 129.650ms - HashTableEmplaceTime: 122.95ms - HashTableInputCount: 163.478K (163478) - InputRows: 163.478K (163478) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 133.707ms - OpenTime: 20.790us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 23.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.264ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.12 MB - MemoryUsage: - Blocks: 4.81 MB - PeakMemoryUsage: 4.81 MB - OpenTime: 14.735us - ProjectionTime: 0ns - RowsProduced: 163.478K (163478) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s920ms PipelineXTask (index=3):(Active: 165.348ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 165.240ms - CloseTime: 45.661us - GetBlockTime: 1.231ms - OpenTime: 2.914us - PrepareTime: 53.163us - SinkTime: 163.705ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 125.744ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 870.120ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 12.663us - DeserializeAndMergeTime: 3.860ms - ExecTime: 163.709ms - ExprTime: 0ns - HashTableComputeTime: 159.292ms - HashTableEmplaceTime: 151.698ms - HashTableInputCount: 163.44K (163440) - InputRows: 163.44K (163440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 163.593ms - OpenTime: 17.632us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 31.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.219ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.44 MB - MemoryUsage: - Blocks: 4.13 MB - PeakMemoryUsage: 4.13 MB - OpenTime: 18.254us - ProjectionTime: 0ns - RowsProduced: 163.44K (163440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s827ms PipelineXTask (index=5):(Active: 186.373ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 186.236ms - CloseTime: 23.97us - GetBlockTime: 1.334ms - OpenTime: 3.598us - PrepareTime: 102.823us - SinkTime: 184.665ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.245ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s527ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 6.507us - DeserializeAndMergeTime: 3.161ms - ExecTime: 184.673ms - ExprTime: 0ns - HashTableComputeTime: 181.23ms - HashTableEmplaceTime: 173.909ms - HashTableInputCount: 163.775K (163775) - InputRows: 163.775K (163775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 184.573ms - OpenTime: 24.362us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 15.103us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.342ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.88 MB - MemoryUsage: - Blocks: 5.00 MB - PeakMemoryUsage: 5.00 MB - OpenTime: 38.175us - ProjectionTime: 0ns - RowsProduced: 163.775K (163775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s317ms PipelineXTask (index=7):(Active: 179.434ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 179.317ms - CloseTime: 21.920us - GetBlockTime: 1.427ms - OpenTime: 2.653us - PrepareTime: 86.37us - SinkTime: 177.640ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.877ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 922.89ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 4.514us - DeserializeAndMergeTime: 3.517ms - ExecTime: 177.619ms - ExprTime: 0ns - HashTableComputeTime: 173.632ms - HashTableEmplaceTime: 166.510ms - HashTableInputCount: 163.489K (163489) - InputRows: 163.489K (163489) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 177.492ms - OpenTime: 27.230us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 15.421us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.410ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.99 MB - MemoryUsage: - Blocks: 5.17 MB - PeakMemoryUsage: 5.17 MB - OpenTime: 38.936us - ProjectionTime: 0ns - RowsProduced: 163.489K (163489) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s760ms PipelineXTask (index=9):(Active: 123.169ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 123.78ms - CloseTime: 21.861us - GetBlockTime: 1.424ms - OpenTime: 4.173us - PrepareTime: 57.190us - SinkTime: 121.402ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.342ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s243ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 8.692us - DeserializeAndMergeTime: 3.572ms - ExecTime: 121.380ms - ExprTime: 0ns - HashTableComputeTime: 117.335ms - HashTableEmplaceTime: 109.771ms - HashTableInputCount: 163.641K (163641) - InputRows: 163.641K (163641) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 121.273ms - OpenTime: 15.851us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 11.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.404ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.12 MB - MemoryUsage: - Blocks: 5.97 MB - PeakMemoryUsage: 5.97 MB - OpenTime: 24.164us - ProjectionTime: 0ns - RowsProduced: 163.641K (163641) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s507ms PipelineXTask (index=11):(Active: 164.558ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 164.470ms - CloseTime: 24.689us - GetBlockTime: 1.258ms - OpenTime: 3.597us - PrepareTime: 54.172us - SinkTime: 162.930ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.469ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s285ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 11.170us - DeserializeAndMergeTime: 3.746ms - ExecTime: 162.929ms - ExprTime: 0ns - HashTableComputeTime: 158.474ms - HashTableEmplaceTime: 150.680ms - HashTableInputCount: 163.705K (163705) - InputRows: 163.705K (163705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 162.814ms - OpenTime: 19.723us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 11.555us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.228ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.04 MB - MemoryUsage: - Blocks: 4.88 MB - PeakMemoryUsage: 4.88 MB - OpenTime: 18.223us - ProjectionTime: 0ns - RowsProduced: 163.705K (163705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s452ms PipelineXTask (index=13):(Active: 164.102ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 164.11ms - CloseTime: 20.978us - GetBlockTime: 1.423ms - OpenTime: 2.886us - PrepareTime: 59.996us - SinkTime: 162.296ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.648ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 931.852ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 8.734us - DeserializeAndMergeTime: 3.604ms - ExecTime: 162.292ms - ExprTime: 0ns - HashTableComputeTime: 158.126ms - HashTableEmplaceTime: 137.324ms - HashTableInputCount: 163.983K (163983) - InputRows: 163.983K (163983) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 162.179ms - OpenTime: 18.618us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 10.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.373ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.92 MB - MemoryUsage: - Blocks: 4.13 MB - PeakMemoryUsage: 4.13 MB - OpenTime: 15.939us - ProjectionTime: 0ns - RowsProduced: 163.983K (163983) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s781ms PipelineXTask (index=15):(Active: 109.679ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 109.550ms - CloseTime: 36.230us - GetBlockTime: 1.397ms - OpenTime: 2.992us - PrepareTime: 85.377us - SinkTime: 107.929ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.774ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s274ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 16.25us - DeserializeAndMergeTime: 3.133ms - ExecTime: 107.945ms - ExprTime: 0ns - HashTableComputeTime: 104.382ms - HashTableEmplaceTime: 85.115ms - HashTableInputCount: 163.426K (163426) - InputRows: 163.426K (163426) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 107.841ms - OpenTime: 20.523us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 18.662us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.383ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.02 MB - MemoryUsage: - Blocks: 4.55 MB - PeakMemoryUsage: 4.55 MB - OpenTime: 23.512us - ProjectionTime: 0ns - RowsProduced: 163.426K (163426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s661ms PipelineXTask (index=17):(Active: 219.383ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 219.251ms - CloseTime: 53.11us - GetBlockTime: 1.220ms - OpenTime: 2.941us - PrepareTime: 67.945us - SinkTime: 217.724ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 19 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 101.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 603.955ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 43.109us - DeserializeAndMergeTime: 3.422ms - ExecTime: 217.761ms - ExprTime: 0ns - HashTableComputeTime: 213.766ms - HashTableEmplaceTime: 206.394ms - HashTableInputCount: 162.829K (162829) - InputRows: 162.829K (162829) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 217.599ms - OpenTime: 23.584us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 8.743us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.193ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.65 MB - MemoryUsage: - Blocks: 3.29 MB - PeakMemoryUsage: 3.29 MB - OpenTime: 15.721us - ProjectionTime: 0ns - RowsProduced: 162.829K (162829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s64ms PipelineXTask (index=19):(Active: 133.182ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 133.36ms - CloseTime: 34.485us - GetBlockTime: 1.391ms - OpenTime: 3.289us - PrepareTime: 100.827us - SinkTime: 131.408ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.705ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s207ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 18.371us - DeserializeAndMergeTime: 3.143ms - ExecTime: 131.445ms - ExprTime: 0ns - HashTableComputeTime: 127.818ms - HashTableEmplaceTime: 121.105ms - HashTableInputCount: 163.825K (163825) - InputRows: 163.825K (163825) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 131.285ms - OpenTime: 65.165us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 14.810us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.378ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.77 MB - MemoryUsage: - Blocks: 5.23 MB - PeakMemoryUsage: 5.23 MB - OpenTime: 15.160us - ProjectionTime: 0ns - RowsProduced: 163.825K (163825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s716ms PipelineXTask (index=21):(Active: 269.715ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 269.607ms - CloseTime: 21.918us - GetBlockTime: 1.242ms - OpenTime: 3.440us - PrepareTime: 74.113us - SinkTime: 268.120ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.390ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s317ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 9.663us - DeserializeAndMergeTime: 3.625ms - ExecTime: 268.133ms - ExprTime: 0ns - HashTableComputeTime: 263.908ms - HashTableEmplaceTime: 256.511ms - HashTableInputCount: 163.547K (163547) - InputRows: 163.547K (163547) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 268.6ms - OpenTime: 33.175us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 46 - BytesReceived: 0.00 - CloseTime: 10.474us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.225ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.72 MB - MemoryUsage: - Blocks: 5.13 MB - PeakMemoryUsage: 5.13 MB - OpenTime: 20.261us - ProjectionTime: 0ns - RowsProduced: 163.547K (163547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s273ms PipelineXTask (index=23):(Active: 98.187ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 98.35ms - CloseTime: 24.503us - GetBlockTime: 1.197ms - OpenTime: 2.868us - PrepareTime: 117.676us - SinkTime: 96.557ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.329ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 973.577ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 10.774us - DeserializeAndMergeTime: 3.240ms - ExecTime: 96.567ms - ExprTime: 0ns - HashTableComputeTime: 92.882ms - HashTableEmplaceTime: 86.9ms - HashTableInputCount: 163.902K (163902) - InputRows: 163.902K (163902) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 96.452ms - OpenTime: 21.739us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 47 - BytesReceived: 0.00 - CloseTime: 12.260us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.184ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.56 MB - MemoryUsage: - Blocks: 4.81 MB - PeakMemoryUsage: 4.81 MB - OpenTime: 20.912us - ProjectionTime: 0ns - RowsProduced: 163.902K (163902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s797ms Fragment 126: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 256.222ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 255.410ms - CloseTime: 594.766us - GetBlockTime: 164.549ms - OpenTime: 8.382us - PrepareTime: 198.154us - SinkTime: 90.375ms - GetBlockCounter: 75 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 97.801ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s647ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.107us - CompressTime: 0ns - ExecTime: 90.437ms - InputRows: 178.386K (178386) - LocalBytesSent: 11.94 MB - LocalSendTime: 525.282us - LocalSentRows: 178.386K (178386) - MemoryUsage: - PeakMemoryUsage: 20.34 MB - MergeBlockTime: 0ns - OpenTime: 76.422us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 178.386K (178386) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 78.748ms - SplitBlockHashComputeTime: 7.842ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 48 - BuildConvertToPartitionedTime: 0ns - BuildTime: 43.247ms - CloseTime: 550.601us - DeserializeAndMergeTime: 0ns - ExecTime: 52.522ms - ExprTime: 79.466us - GetResultsTime: 8.465ms - HashTableComputeTime: 34.550ms - HashTableEmplaceTime: 32.613ms - HashTableInputCount: 56.169K (56169) - HashTableIterateTime: 516.251us - HashTableSize: 56.169K (56169) - InsertKeysToColumnTime: 3.2ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 36.805us - ProjectionTime: 0ns - RowsProduced: 178.386K (178386) - SerializeDataTime: 10.927ms - SerializeKeyTime: 0ns - SerializeResultTime: 8.517ms - StreamingAggTime: 7.975ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 20.715us - ExecTime: 111.885ms - InitProbeSideTime: 3.8ms - JoinFilterTimer: 9.147us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.43us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.880us - ProbeFindNextTime: 0ns - ProbeRows: 178.386K (178386) - ProbeTime: 109.475ms - ProbeWhenBuildSideOutputTime: 426.408us - ProbeWhenProbeSideOutputTime: 101.447ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.240ms - ProjectionTime: 2.187ms - RowsProduced: 178.386K (178386) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 442.376us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 5.09 MB - OpenTime: 864ns - ProjectionTime: 0ns - RowsProduced: 178.386K (178386) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 927.191ms PipelineXTask (index=5):(Active: 275.17ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 274.234ms - CloseTime: 540.652us - GetBlockTime: 233.167ms - OpenTime: 8.30us - PrepareTime: 226.981us - SinkTime: 40.496ms - GetBlockCounter: 73 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 100.903ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s388ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.407us - CompressTime: 0ns - ExecTime: 40.582ms - InputRows: 176.33K (176330) - LocalBytesSent: 11.64 MB - LocalSendTime: 534.916us - LocalSentRows: 176.33K (176330) - MemoryUsage: - PeakMemoryUsage: 19.27 MB - MergeBlockTime: 0ns - OpenTime: 106.352us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 176.33K (176330) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 29.482ms - SplitBlockHashComputeTime: 7.365ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 48 - BuildConvertToPartitionedTime: 0ns - BuildTime: 196.420ms - CloseTime: 504.494us - DeserializeAndMergeTime: 0ns - ExecTime: 201.900ms - ExprTime: 116.973us - GetResultsTime: 4.692ms - HashTableComputeTime: 143.897ms - HashTableEmplaceTime: 141.235ms - HashTableInputCount: 56.735K (56735) - HashTableIterateTime: 379.429us - HashTableSize: 56.735K (56735) - InsertKeysToColumnTime: 1.619ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 40.446us - ProjectionTime: 0ns - RowsProduced: 176.33K (176330) - SerializeDataTime: 52.487ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.726ms - StreamingAggTime: 51.702ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 18.908us - ExecTime: 30.928ms - InitProbeSideTime: 16.228ms - JoinFilterTimer: 9.450us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 21.589us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.675us - ProbeFindNextTime: 0ns - ProbeRows: 176.33K (176330) - ProbeTime: 28.12ms - ProbeWhenBuildSideOutputTime: 527.904us - ProbeWhenProbeSideOutputTime: 6.185ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.365ms - ProjectionTime: 2.646ms - RowsProduced: 176.33K (176330) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 489.390us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 3.84 MB - OpenTime: 802ns - ProjectionTime: 0ns - RowsProduced: 176.33K (176330) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 737.581ms PipelineXTask (index=10):(Active: 208.825ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 208.11ms - CloseTime: 610.903us - GetBlockTime: 156.866ms - OpenTime: 5.984us - PrepareTime: 172.217us - SinkTime: 50.479ms - GetBlockCounter: 87 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.159ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s102ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.393us - CompressTime: 0ns - ExecTime: 50.540ms - InputRows: 161.752K (161752) - LocalBytesSent: 10.84 MB - LocalSendTime: 507.957us - LocalSentRows: 161.752K (161752) - MemoryUsage: - PeakMemoryUsage: 17.60 MB - MergeBlockTime: 0ns - OpenTime: 82.291us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 161.752K (161752) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.441ms - SplitBlockHashComputeTime: 19.390ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 64.704ms - CloseTime: 570.815us - DeserializeAndMergeTime: 0ns - ExecTime: 113.387ms - ExprTime: 110.483us - GetResultsTime: 47.853ms - HashTableComputeTime: 56.612ms - HashTableEmplaceTime: 54.186ms - HashTableInputCount: 57.001K (57001) - HashTableIterateTime: 395.572us - HashTableSize: 57.001K (57001) - InsertKeysToColumnTime: 35.796ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 23.912us - ProjectionTime: 0ns - RowsProduced: 161.752K (161752) - SerializeDataTime: 8.432ms - SerializeKeyTime: 0ns - SerializeResultTime: 47.884ms - StreamingAggTime: 7.353ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 19.861us - ExecTime: 43.27ms - InitProbeSideTime: 2.810ms - JoinFilterTimer: 8.731us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 16.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.236us - ProbeFindNextTime: 0ns - ProbeRows: 161.752K (161752) - ProbeTime: 40.8ms - ProbeWhenBuildSideOutputTime: 487.683us - ProbeWhenProbeSideOutputTime: 31.972ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.164ms - ProjectionTime: 2.761ms - RowsProduced: 161.752K (161752) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 569.354us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.32 MB - OpenTime: 806ns - ProjectionTime: 0ns - RowsProduced: 161.752K (161752) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s514ms PipelineXTask (index=15):(Active: 273.56ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 272.199ms - CloseTime: 634.310us - GetBlockTime: 205.376ms - OpenTime: 6.936us - PrepareTime: 206.375us - SinkTime: 66.189ms - GetBlockCounter: 81 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 22 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 98.252ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s221ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.635us - CompressTime: 0ns - ExecTime: 66.274ms - InputRows: 168.888K (168888) - LocalBytesSent: 11.34 MB - LocalSendTime: 477.943us - LocalSentRows: 168.888K (168888) - MemoryUsage: - PeakMemoryUsage: 19.23 MB - MergeBlockTime: 0ns - OpenTime: 103.993us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 168.888K (168888) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.328ms - SplitBlockHashComputeTime: 13.146ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 46 - BuildConvertToPartitionedTime: 0ns - BuildTime: 181.466ms - CloseTime: 592.95us - DeserializeAndMergeTime: 0ns - ExecTime: 187.316ms - ExprTime: 120.679us - GetResultsTime: 4.979ms - HashTableComputeTime: 146.929ms - HashTableEmplaceTime: 144.500ms - HashTableInputCount: 57.206K (57206) - HashTableIterateTime: 365.520us - HashTableSize: 57.206K (57206) - InsertKeysToColumnTime: 1.706ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 30.268us - ProjectionTime: 0ns - RowsProduced: 168.888K (168888) - SerializeDataTime: 9.668ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.10ms - StreamingAggTime: 33.662ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 22.882us - ExecTime: 17.667ms - InitProbeSideTime: 3.194ms - JoinFilterTimer: 8.983us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 14.292us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.559us - ProbeFindNextTime: 0ns - ProbeRows: 168.888K (168888) - ProbeTime: 14.760ms - ProbeWhenBuildSideOutputTime: 407.688us - ProbeWhenProbeSideOutputTime: 5.979ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.496ms - ProjectionTime: 2.658ms - RowsProduced: 168.888K (168888) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 597.615us - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 3.14 MB - OpenTime: 882ns - ProjectionTime: 0ns - RowsProduced: 168.888K (168888) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 912.766ms PipelineXTask (index=20):(Active: 239.193ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 238.357ms - CloseTime: 643.780us - GetBlockTime: 164.518ms - OpenTime: 7.974us - PrepareTime: 172.559us - SinkTime: 73.164ms - GetBlockCounter: 80 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 22 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 101.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s394ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.457us - CompressTime: 0ns - ExecTime: 73.237ms - InputRows: 171.48K (171480) - LocalBytesSent: 11.47 MB - LocalSendTime: 501.614us - LocalSentRows: 171.48K (171480) - MemoryUsage: - PeakMemoryUsage: 18.56 MB - MergeBlockTime: 0ns - OpenTime: 86.941us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 171.48K (171480) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 62.658ms - SplitBlockHashComputeTime: 6.894ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 45 - BuildConvertToPartitionedTime: 0ns - BuildTime: 139.303ms - CloseTime: 585.786us - DeserializeAndMergeTime: 0ns - ExecTime: 144.897ms - ExprTime: 123.210us - GetResultsTime: 4.732ms - HashTableComputeTime: 129.817ms - HashTableEmplaceTime: 127.88ms - HashTableInputCount: 56.588K (56588) - HashTableIterateTime: 363.275us - HashTableSize: 56.588K (56588) - InsertKeysToColumnTime: 1.618ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 24.42us - ProjectionTime: 0ns - RowsProduced: 171.48K (171480) - SerializeDataTime: 9.468ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.764ms - StreamingAggTime: 8.619ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 31.197us - ExecTime: 19.268ms - InitProbeSideTime: 3.515ms - JoinFilterTimer: 12.366us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 16.662us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.759us - ProbeFindNextTime: 0ns - ProbeRows: 171.48K (171480) - ProbeTime: 16.108ms - ProbeWhenBuildSideOutputTime: 683.987us - ProbeWhenProbeSideOutputTime: 6.716ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.496ms - ProjectionTime: 2.902ms - RowsProduced: 171.48K (171480) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 537.510us - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 2.24 MB - OpenTime: 637ns - ProjectionTime: 0ns - RowsProduced: 171.48K (171480) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s206ms PipelineXTask (index=25):(Active: 185.342ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 184.614ms - CloseTime: 527.737us - GetBlockTime: 126.472ms - OpenTime: 7.558us - PrepareTime: 182.562us - SinkTime: 57.532ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.25ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 802.484ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.791us - CompressTime: 0ns - ExecTime: 57.616ms - InputRows: 164.798K (164798) - LocalBytesSent: 11.01 MB - LocalSendTime: 426.268us - LocalSentRows: 164.798K (164798) - MemoryUsage: - PeakMemoryUsage: 18.21 MB - MergeBlockTime: 0ns - OpenTime: 98.977us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 164.798K (164798) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 47.635ms - SplitBlockHashComputeTime: 6.694ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 66.143ms - CloseTime: 487.39us - DeserializeAndMergeTime: 0ns - ExecTime: 71.666ms - ExprTime: 117.537us - GetResultsTime: 4.757ms - HashTableComputeTime: 46.678ms - HashTableEmplaceTime: 43.856ms - HashTableInputCount: 55.327K (55327) - HashTableIterateTime: 376.370us - HashTableSize: 55.327K (55327) - InsertKeysToColumnTime: 1.647ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 29.416us - ProjectionTime: 0ns - RowsProduced: 164.798K (164798) - SerializeDataTime: 19.443ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.786ms - StreamingAggTime: 18.564ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 20.161us - ExecTime: 54.394ms - InitProbeSideTime: 3.87ms - JoinFilterTimer: 9.200us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.70us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.351us - ProbeFindNextTime: 0ns - ProbeRows: 164.798K (164798) - ProbeTime: 51.420ms - ProbeWhenBuildSideOutputTime: 392.158us - ProbeWhenProbeSideOutputTime: 5.972ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 40.341ms - ProjectionTime: 2.717ms - RowsProduced: 164.798K (164798) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 498.742us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 1.92 MB - OpenTime: 3.972us - ProjectionTime: 0ns - RowsProduced: 164.798K (164798) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s446ms PipelineXTask (index=30):(Active: 201.373ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 200.472ms - CloseTime: 690.856us - GetBlockTime: 164.646ms - OpenTime: 5.645us - PrepareTime: 192.102us - SinkTime: 35.116ms - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.808ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 657.14ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.160us - CompressTime: 0ns - ExecTime: 35.195ms - InputRows: 162.264K (162264) - LocalBytesSent: 10.89 MB - LocalSendTime: 440.423us - LocalSentRows: 162.264K (162264) - MemoryUsage: - PeakMemoryUsage: 17.66 MB - MergeBlockTime: 0ns - OpenTime: 92.484us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 162.264K (162264) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.634ms - SplitBlockHashComputeTime: 6.474ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 72.836ms - CloseTime: 644.544us - DeserializeAndMergeTime: 0ns - ExecTime: 104.837ms - ExprTime: 116.749us - GetResultsTime: 31.95ms - HashTableComputeTime: 51.184ms - HashTableEmplaceTime: 48.20ms - HashTableInputCount: 57.043K (57043) - HashTableIterateTime: 553.243us - HashTableSize: 57.043K (57043) - InsertKeysToColumnTime: 2.36ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 26.448us - ProjectionTime: 0ns - RowsProduced: 162.264K (162264) - SerializeDataTime: 34.134ms - SerializeKeyTime: 0ns - SerializeResultTime: 31.128ms - StreamingAggTime: 7.390ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 23.526us - ExecTime: 59.573ms - InitProbeSideTime: 3.247ms - JoinFilterTimer: 8.644us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.455us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 33.583us - ProbeFindNextTime: 0ns - ProbeRows: 162.264K (162264) - ProbeTime: 32.424ms - ProbeWhenBuildSideOutputTime: 494.513us - ProbeWhenProbeSideOutputTime: 5.642ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.467ms - ProjectionTime: 26.890ms - RowsProduced: 162.264K (162264) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 467.517us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 2.21 MB - OpenTime: 1.21us - ProjectionTime: 0ns - RowsProduced: 162.264K (162264) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s603ms PipelineXTask (index=35):(Active: 193.269ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 192.475ms - CloseTime: 609.151us - GetBlockTime: 96.391ms - OpenTime: 7.857us - PrepareTime: 167.930us - SinkTime: 95.527ms - GetBlockCounter: 75 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.129ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s311ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.926us - CompressTime: 0ns - ExecTime: 95.587ms - InputRows: 168.422K (168422) - LocalBytesSent: 11.27 MB - LocalSendTime: 509.597us - LocalSentRows: 168.422K (168422) - MemoryUsage: - PeakMemoryUsage: 18.78 MB - MergeBlockTime: 0ns - OpenTime: 77.949us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 168.422K (168422) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 70.627ms - SplitBlockHashComputeTime: 21.331ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 72.772ms - CloseTime: 552.427us - DeserializeAndMergeTime: 0ns - ExecTime: 78.808ms - ExprTime: 108.754us - GetResultsTime: 5.26ms - HashTableComputeTime: 64.796ms - HashTableEmplaceTime: 58.954ms - HashTableInputCount: 55.263K (55263) - HashTableIterateTime: 403.275us - HashTableSize: 55.263K (55263) - InsertKeysToColumnTime: 1.704ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 32.511us - ProjectionTime: 0ns - RowsProduced: 168.422K (168422) - SerializeDataTime: 8.515ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.71ms - StreamingAggTime: 7.165ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 34.504us - ExecTime: 17.366ms - InitProbeSideTime: 2.868ms - JoinFilterTimer: 8.23us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.725us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.476us - ProbeFindNextTime: 0ns - ProbeRows: 168.422K (168422) - ProbeTime: 14.740ms - ProbeWhenBuildSideOutputTime: 362.651us - ProbeWhenProbeSideOutputTime: 7.247ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.918ms - ProjectionTime: 2.373ms - RowsProduced: 168.422K (168422) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 465.620us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 5.09 MB - OpenTime: 789ns - ProjectionTime: 0ns - RowsProduced: 168.422K (168422) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s260ms PipelineXTask (index=40):(Active: 299.581ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 298.748ms - CloseTime: 535.109us - GetBlockTime: 246.5ms - OpenTime: 6.895us - PrepareTime: 279.680us - SinkTime: 52.131ms - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 95.993ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 840.523ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.92us - CompressTime: 0ns - ExecTime: 52.287ms - InputRows: 156.528K (156528) - LocalBytesSent: 10.55 MB - LocalSendTime: 530.473us - LocalSentRows: 156.528K (156528) - MemoryUsage: - PeakMemoryUsage: 17.61 MB - MergeBlockTime: 0ns - OpenTime: 178.546us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 156.528K (156528) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.60ms - SplitBlockHashComputeTime: 6.689ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 41 - BuildConvertToPartitionedTime: 0ns - BuildTime: 138.27ms - CloseTime: 485.456us - DeserializeAndMergeTime: 0ns - ExecTime: 143.724ms - ExprTime: 108.852us - GetResultsTime: 4.941ms - HashTableComputeTime: 35.243ms - HashTableEmplaceTime: 32.780ms - HashTableInputCount: 56.824K (56824) - HashTableIterateTime: 357.998us - HashTableSize: 56.824K (56824) - InsertKeysToColumnTime: 1.582ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 35.398us - ProjectionTime: 0ns - RowsProduced: 156.528K (156528) - SerializeDataTime: 32.974ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.970ms - StreamingAggTime: 31.904ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 26.818us - ExecTime: 92.842ms - InitProbeSideTime: 3.75ms - JoinFilterTimer: 8.622us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.13us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.309us - ProbeFindNextTime: 0ns - ProbeRows: 156.528K (156528) - ProbeTime: 90.209ms - ProbeWhenBuildSideOutputTime: 407.804us - ProbeWhenProbeSideOutputTime: 5.687ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 79.407ms - ProjectionTime: 2.367ms - RowsProduced: 156.528K (156528) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 9.579ms - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 3.84 MB - OpenTime: 1.16us - ProjectionTime: 0ns - RowsProduced: 156.528K (156528) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s310ms PipelineXTask (index=45):(Active: 223.65ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 222.274ms - CloseTime: 582.978us - GetBlockTime: 136.115ms - OpenTime: 7.187us - PrepareTime: 192.39us - SinkTime: 85.682ms - GetBlockCounter: 72 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.703ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s547ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 45 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.404us - CompressTime: 0ns - ExecTime: 85.745ms - InputRows: 153.47K (153470) - LocalBytesSent: 10.22 MB - LocalSendTime: 415.577us - LocalSentRows: 153.47K (153470) - MemoryUsage: - PeakMemoryUsage: 16.42 MB - MergeBlockTime: 0ns - OpenTime: 75.671us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 153.47K (153470) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 63.759ms - SplitBlockHashComputeTime: 14.479ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 41 - BuildConvertToPartitionedTime: 0ns - BuildTime: 71.117ms - CloseTime: 541.668us - DeserializeAndMergeTime: 0ns - ExecTime: 77.8ms - ExprTime: 104.168us - GetResultsTime: 5.101ms - HashTableComputeTime: 63.580ms - HashTableEmplaceTime: 61.406ms - HashTableInputCount: 57.222K (57222) - HashTableIterateTime: 383.668us - HashTableSize: 57.222K (57222) - InsertKeysToColumnTime: 1.664ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 33.193us - ProjectionTime: 0ns - RowsProduced: 153.47K (153470) - SerializeDataTime: 7.863ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.144ms - StreamingAggTime: 6.717ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 20.541us - ExecTime: 58.924ms - InitProbeSideTime: 2.750ms - JoinFilterTimer: 7.654us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 31.487us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.421us - ProbeFindNextTime: 0ns - ProbeRows: 153.47K (153470) - ProbeTime: 56.591ms - ProbeWhenBuildSideOutputTime: 411.892us - ProbeWhenProbeSideOutputTime: 49.72ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.853ms - ProjectionTime: 2.95ms - RowsProduced: 153.47K (153470) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 447.808us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 2.88 MB - OpenTime: 2.698us - ProjectionTime: 0ns - RowsProduced: 153.47K (153470) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s56ms PipelineXTask (index=50):(Active: 198.225ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 197.289ms - CloseTime: 695.619us - GetBlockTime: 145.491ms - OpenTime: 5.884us - PrepareTime: 226.529us - SinkTime: 51.157ms - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.979ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s84ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 45 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.597us - CompressTime: 0ns - ExecTime: 51.211ms - InputRows: 151.046K (151046) - LocalBytesSent: 10.17 MB - LocalSendTime: 481.397us - LocalSentRows: 151.046K (151046) - MemoryUsage: - PeakMemoryUsage: 16.07 MB - MergeBlockTime: 0ns - OpenTime: 72.950us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 151.046K (151046) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.433ms - SplitBlockHashComputeTime: 6.636ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 41 - BuildConvertToPartitionedTime: 0ns - BuildTime: 88.666ms - CloseTime: 649.490us - DeserializeAndMergeTime: 0ns - ExecTime: 95.618ms - ExprTime: 124.498us - GetResultsTime: 6.3ms - HashTableComputeTime: 80.25ms - HashTableEmplaceTime: 77.127ms - HashTableInputCount: 57.157K (57157) - HashTableIterateTime: 499.527us - HashTableSize: 57.157K (57157) - InsertKeysToColumnTime: 1.987ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 58.357us - ProjectionTime: 0ns - RowsProduced: 151.046K (151046) - SerializeDataTime: 9.390ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.31ms - StreamingAggTime: 7.675ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 24.443us - ExecTime: 49.747ms - InitProbeSideTime: 3.46ms - JoinFilterTimer: 8.492us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 24.531us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.539us - ProbeFindNextTime: 0ns - ProbeRows: 151.046K (151046) - ProbeTime: 46.899ms - ProbeWhenBuildSideOutputTime: 13.333ms - ProbeWhenProbeSideOutputTime: 25.578ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.339ms - ProjectionTime: 2.587ms - RowsProduced: 151.046K (151046) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 490.41us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 3.81 MB - OpenTime: 885ns - ProjectionTime: 0ns - RowsProduced: 151.046K (151046) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s210ms PipelineXTask (index=55):(Active: 154.883ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 154.48ms - CloseTime: 601.508us - GetBlockTime: 73.504ms - OpenTime: 14.120us - PrepareTime: 210.222us - SinkTime: 80.42ms - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.305ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s149ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 40 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.160us - CompressTime: 0ns - ExecTime: 80.123ms - InputRows: 149.676K (149676) - LocalBytesSent: 10.12 MB - LocalSendTime: 351.123us - LocalSentRows: 149.676K (149676) - MemoryUsage: - PeakMemoryUsage: 15.47 MB - MergeBlockTime: 0ns - OpenTime: 87.115us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 149.676K (149676) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 71.153ms - SplitBlockHashComputeTime: 5.930ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 39.890ms - CloseTime: 547.717us - DeserializeAndMergeTime: 0ns - ExecTime: 45.716ms - ExprTime: 112.976us - GetResultsTime: 5.50ms - HashTableComputeTime: 32.475ms - HashTableEmplaceTime: 22.535ms - HashTableInputCount: 56.327K (56327) - HashTableIterateTime: 378.718us - HashTableSize: 56.327K (56327) - InsertKeysToColumnTime: 1.583ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 31.480us - ProjectionTime: 0ns - RowsProduced: 149.676K (149676) - SerializeDataTime: 7.886ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.80ms - StreamingAggTime: 6.636ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 31.749us - ExecTime: 27.707ms - InitProbeSideTime: 2.674ms - JoinFilterTimer: 6.905us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 18.802us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.773us - ProbeFindNextTime: 0ns - ProbeRows: 149.676K (149676) - ProbeTime: 25.158ms - ProbeWhenBuildSideOutputTime: 314.430us - ProbeWhenProbeSideOutputTime: 17.939ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.899ms - ProjectionTime: 2.304ms - RowsProduced: 149.676K (149676) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 372.997us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 5.13 MB - OpenTime: 904ns - ProjectionTime: 0ns - RowsProduced: 149.676K (149676) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s121ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 24.102ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 24.6ms - CloseTime: 40.107us - GetBlockTime: 22.803ms - OpenTime: 6.798us - PrepareTime: 41.508us - SinkTime: 723.488us - GetBlockCounter: 74 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.307ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 835.205ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 685.817us - InputRows: 175.329K (175329) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.255us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 36.323us - ExecTime: 20.465ms - InitProbeSideTime: 3.255ms - JoinFilterTimer: 7.745us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.389us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.178us - ProbeFindNextTime: 0ns - ProbeRows: 175.329K (175329) - ProbeTime: 16.186ms - ProbeWhenBuildSideOutputTime: 544.629us - ProbeWhenProbeSideOutputTime: 7.237ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.586ms - ProjectionTime: 4.30ms - RowsProduced: 175.329K (175329) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 2.130ms - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 541ns - ProjectionTime: 0ns - RowsProduced: 175.329K (175329) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s225ms PipelineXTask (index=6):(Active: 68.492ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 68.413ms - CloseTime: 28.642us - GetBlockTime: 67.459ms - OpenTime: 4.814us - PrepareTime: 37.380us - SinkTime: 552.356us - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.742ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 952.624ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 502.983us - InputRows: 173.518K (173518) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.186us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 25.210us - ExecTime: 66.961ms - InitProbeSideTime: 2.836ms - JoinFilterTimer: 8.35us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 12.883us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.461us - ProbeFindNextTime: 0ns - ProbeRows: 173.518K (173518) - ProbeTime: 63.423ms - ProbeWhenBuildSideOutputTime: 495.791us - ProbeWhenProbeSideOutputTime: 55.407ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.259ms - ProjectionTime: 3.327ms - RowsProduced: 173.518K (173518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 340.115us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.97 MB - OpenTime: 483ns - ProjectionTime: 0ns - RowsProduced: 173.518K (173518) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s82ms PipelineXTask (index=11):(Active: 62.711ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 62.607ms - CloseTime: 21.881us - GetBlockTime: 61.684ms - OpenTime: 7.420us - PrepareTime: 63.209us - SinkTime: 517.731us - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.332ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s228ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 489.228us - InputRows: 166.179K (166179) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.221us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 20.519us - ExecTime: 61.210ms - InitProbeSideTime: 2.984ms - JoinFilterTimer: 7.499us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 30.100us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.646us - ProbeFindNextTime: 0ns - ProbeRows: 166.179K (166179) - ProbeTime: 13.257ms - ProbeWhenBuildSideOutputTime: 461.313us - ProbeWhenProbeSideOutputTime: 5.349ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.117ms - ProjectionTime: 47.740ms - RowsProduced: 166.179K (166179) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 330.696us - GetBlockFailedTime: 20 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 604ns - ProjectionTime: 0ns - RowsProduced: 166.179K (166179) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s93ms PipelineXTask (index=16):(Active: 29.781ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 29.681ms - CloseTime: 28.748us - GetBlockTime: 28.585ms - OpenTime: 6.675us - PrepareTime: 44.435us - SinkTime: 676.951us - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.634ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s251ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 644.220us - InputRows: 174.887K (174887) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.230us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 23.76us - ExecTime: 28.49ms - InitProbeSideTime: 2.975ms - JoinFilterTimer: 7.208us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 16.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.73us - ProbeFindNextTime: 0ns - ProbeRows: 174.887K (174887) - ProbeTime: 23.809ms - ProbeWhenBuildSideOutputTime: 416.100us - ProbeWhenProbeSideOutputTime: 15.790ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.270ms - ProjectionTime: 4.30ms - RowsProduced: 174.887K (174887) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 385.344us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 3.73 MB - OpenTime: 529ns - ProjectionTime: 0ns - RowsProduced: 174.887K (174887) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 845.19ms PipelineXTask (index=21):(Active: 29.835ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 29.731ms - CloseTime: 46.941us - GetBlockTime: 28.703ms - OpenTime: 4.224us - PrepareTime: 46.157us - SinkTime: 694.696us - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.934ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s443ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 658.536us - InputRows: 169.067K (169067) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.81us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 48 - BuildOutputBlock: 0ns - CloseTime: 43.421us - ExecTime: 28.204ms - InitProbeSideTime: 2.944ms - JoinFilterTimer: 7.683us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.401us - ProbeFindNextTime: 0ns - ProbeRows: 169.067K (169067) - ProbeTime: 24.27ms - ProbeWhenBuildSideOutputTime: 497.93us - ProbeWhenProbeSideOutputTime: 7.607ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.556ms - ProjectionTime: 3.958ms - RowsProduced: 169.067K (169067) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 48 - CloseTime: 0ns - ExecTime: 380.939us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 2.89 MB - OpenTime: 508ns - ProjectionTime: 0ns - RowsProduced: 169.067K (169067) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 636.573ms PipelineXTask (index=26):(Active: 32.677ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 32.587ms - CloseTime: 19.256us - GetBlockTime: 31.914ms - OpenTime: 6.53us - PrepareTime: 56.654us - SinkTime: 363.848us - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.978ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s505ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 332.8us - InputRows: 166.791K (166791) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.340us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 18.87us - ExecTime: 31.473ms - InitProbeSideTime: 4.563ms - JoinFilterTimer: 7.227us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 17.267us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.440us - ProbeFindNextTime: 0ns - ProbeRows: 166.791K (166791) - ProbeTime: 14.755ms - ProbeWhenBuildSideOutputTime: 549.416us - ProbeWhenProbeSideOutputTime: 5.361ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.106ms - ProjectionTime: 16.536ms - RowsProduced: 166.791K (166791) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 304.390us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 3.47 MB - OpenTime: 523ns - ProjectionTime: 0ns - RowsProduced: 166.791K (166791) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 588.384ms PipelineXTask (index=31):(Active: 17.749ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 17.643ms - CloseTime: 41.371us - GetBlockTime: 16.770ms - OpenTime: 8.468us - PrepareTime: 48.379us - SinkTime: 543.855us - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s46ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 506.823us - InputRows: 168.15K (168150) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.149us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 38.13us - ExecTime: 16.351ms - InitProbeSideTime: 2.664ms - JoinFilterTimer: 6.889us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 18.796us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.280us - ProbeFindNextTime: 0ns - ProbeRows: 168.15K (168150) - ProbeTime: 12.848ms - ProbeWhenBuildSideOutputTime: 440.728us - ProbeWhenProbeSideOutputTime: 5.429ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.67ms - ProjectionTime: 3.290ms - RowsProduced: 168.15K (168150) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 303.34us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 2.60 MB - OpenTime: 547ns - ProjectionTime: 0ns - RowsProduced: 168.15K (168150) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s25ms PipelineXTask (index=36):(Active: 18.837ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 18.743ms - CloseTime: 32.38us - GetBlockTime: 17.889ms - OpenTime: 7.292us - PrepareTime: 46.300us - SinkTime: 507.605us - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.341ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s244ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 479.889us - InputRows: 164.999K (164999) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.478us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 28.514us - ExecTime: 17.388ms - InitProbeSideTime: 2.891ms - JoinFilterTimer: 7.769us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.81us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.711us - ProbeFindNextTime: 0ns - ProbeRows: 164.999K (164999) - ProbeTime: 13.757ms - ProbeWhenBuildSideOutputTime: 393.16us - ProbeWhenProbeSideOutputTime: 6.70ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.114ms - ProjectionTime: 3.434ms - RowsProduced: 164.999K (164999) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 358.795us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 2.86 MB - OpenTime: 488ns - ProjectionTime: 0ns - RowsProduced: 164.999K (164999) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 833.183ms PipelineXTask (index=41):(Active: 55.665ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 55.585ms - CloseTime: 24.291us - GetBlockTime: 54.861ms - OpenTime: 12.994us - PrepareTime: 35.464us - SinkTime: 421.404us - GetBlockCounter: 56 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.601ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s402ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 395.521us - InputRows: 161.648K (161648) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.162us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 21.91us - ExecTime: 54.407ms - InitProbeSideTime: 2.643ms - JoinFilterTimer: 7.6us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.102us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.193us - ProbeFindNextTime: 0ns - ProbeRows: 161.648K (161648) - ProbeTime: 11.383ms - ProbeWhenBuildSideOutputTime: 421.262us - ProbeWhenProbeSideOutputTime: 4.70ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.5ms - ProjectionTime: 42.851ms - RowsProduced: 161.648K (161648) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 328.861us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 4.05 MB - OpenTime: 523ns - ProjectionTime: 0ns - RowsProduced: 161.648K (161648) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 673.550ms PipelineXTask (index=46):(Active: 16.126ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 16.41ms - CloseTime: 19.920us - GetBlockTime: 15.105ms - OpenTime: 12.91us - PrepareTime: 40.285us - SinkTime: 547.846us - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s292ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 509.752us - InputRows: 151.556K (151556) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.128us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 16.521us - ExecTime: 14.601ms - InitProbeSideTime: 2.453ms - JoinFilterTimer: 6.908us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 18.322us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.383us - ProbeFindNextTime: 0ns - ProbeRows: 151.556K (151556) - ProbeTime: 11.9ms - ProbeWhenBuildSideOutputTime: 364.272us - ProbeWhenProbeSideOutputTime: 4.93ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.774ms - ProjectionTime: 3.390ms - RowsProduced: 151.556K (151556) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 349.25us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 462ns - ProjectionTime: 0ns - RowsProduced: 151.556K (151556) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s75ms PipelineXTask (index=51):(Active: 35.562ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 35.474ms - CloseTime: 18.343us - GetBlockTime: 34.519ms - OpenTime: 2.98us - PrepareTime: 60.503us - SinkTime: 536.260us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.474ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 800.801ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 490.564us - InputRows: 151.599K (151599) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.152us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 16.310us - ExecTime: 33.947ms - InitProbeSideTime: 2.810ms - JoinFilterTimer: 7.74us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 23.703us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.969us - ProbeFindNextTime: 0ns - ProbeRows: 151.599K (151599) - ProbeTime: 30.163ms - ProbeWhenBuildSideOutputTime: 461.109us - ProbeWhenProbeSideOutputTime: 4.679ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.965ms - ProjectionTime: 3.591ms - RowsProduced: 151.599K (151599) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 368.894us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 554ns - ProjectionTime: 0ns - RowsProduced: 151.599K (151599) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s253ms PipelineXTask (index=56):(Active: 14.800ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 14.716ms - CloseTime: 27.429us - GetBlockTime: 13.965ms - OpenTime: 2.796us - PrepareTime: 45.161us - SinkTime: 322.703us - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.698ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 880.474ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 298.605us - InputRows: 139.317K (139317) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.592us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 40 - BuildOutputBlock: 0ns - CloseTime: 26.376us - ExecTime: 13.460ms - InitProbeSideTime: 2.447ms - JoinFilterTimer: 6.607us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 9.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.475us - ProbeFindNextTime: 0ns - ProbeRows: 139.317K (139317) - ProbeTime: 10.563ms - ProbeWhenBuildSideOutputTime: 398.443us - ProbeWhenProbeSideOutputTime: 3.976ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.618ms - ProjectionTime: 2.712ms - RowsProduced: 139.317K (139317) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 40 - CloseTime: 0ns - ExecTime: 313.861us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.45 MB - OpenTime: 507ns - ProjectionTime: 0ns - RowsProduced: 139.317K (139317) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s231ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 10.691ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 10.201ms - CloseTime: 35.859us - GetBlockTime: 37.269us - OpenTime: 300.285us - PrepareTime: 146.355us - SinkTime: 9.840ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 851.990us - WaitBfTime: 970.485us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.415ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.839ms - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.293us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 35.674us - BlocksProduced: 0 - CloseTime: 29.947us - ExecTime: 108.880ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 387.137us - ProcessConjunctTime: 172.989us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 108.74ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 108.426ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PerScannerRunningTime: [1.640us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [108.074ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 313.587us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 166ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 351.31us - ScannerCtxSchedTime: 108.72ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.31us - ScannerInitTime: 70.707us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 515ns - BlockConditionsFilteredBloomFilterTime: 1.97us - BlockConditionsFilteredDictTime: 122.736us - BlockConditionsFilteredTime: 143.334us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.169us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.216us - BlockInitTime: 177.803us - BlockLoadTime: 186.599us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 715ns - IOTimer: 0ns - InvertedIndexFilterTime: 1.455us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.468ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 685.590us - CloseTime: 53.584us - GetBlockTime: 95.751us - OpenTime: 533.426us - PrepareTime: 183.706us - SinkTime: 20.407us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.399ms - WaitBfTime: 16.746ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.436ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.561us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 959ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 61.862us - BlocksProduced: 2 - CloseTime: 50.100us - ExecTime: 330.836ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 642.489us - ProcessConjunctTime: 300.515us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 236.363ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 330.50ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [51.113ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [236.363ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.888ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.906ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 227ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.191ms - ScannerCtxSchedTime: 236.359ms - ScannerFilterTime: 75.994us - ScannerGetBlockTime: 50.991ms - ScannerInitTime: 147.133us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.910us - BlockConditionsFilteredBloomFilterTime: 5.716us - BlockConditionsFilteredDictTime: 40.794ms - BlockConditionsFilteredTime: 40.879ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 44.306us - BlockInitSeekCount: 37 - BlockInitSeekTime: 222.53us - BlockInitTime: 41.220ms - BlockLoadTime: 92.152ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 59.262us - FirstReadTime: 1.83ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.128us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 48.545ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 93.839us - OutputIndexResultColumnTimer: 12.816us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 580.593K (580593) - RowsShortCircuitPredInput: 581.176K (581176) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 732.539us - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 51.730us PipelineXTask (index=12):(Active: 1.271ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 757.961us - CloseTime: 47.675us - GetBlockTime: 224.238us - OpenTime: 326.89us - PrepareTime: 128.224us - SinkTime: 117.865us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.191ms - WaitBfTime: 12.986ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 681.59ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 112.929us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 850ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 45.170us - BlocksProduced: 9 - CloseTime: 43.950us - ExecTime: 547.65ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 402.494us - ProcessConjunctTime: 186.860us - ProjectionTime: 0ns - RowsProduced: 25.619K (25619) - RowsRead: 25.619K (25619) - RuntimeFilterInfo: - filter id = -1 filtered: 2.910612M (2910612) - filter id = -1 input: 2.96185M (2961850) - ScannerWorkerWaitTime: 263.39ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 546.402ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [210.023ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [263.039ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 208.49ms - MemoryUsage: - FreeBlocks: 704.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 69.672ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 801ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 73.405ms - ScannerCtxSchedTime: 263.29ms - ScannerFilterTime: 316.365us - ScannerGetBlockTime: 209.541ms - ScannerInitTime: 68.472us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.162us - BlockConditionsFilteredBloomFilterTime: 2.479us - BlockConditionsFilteredDictTime: 76.599us - BlockConditionsFilteredTime: 122.619us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 26.174us - BlockInitSeekCount: 17 - BlockInitSeekTime: 20.166us - BlockInitTime: 199.914us - BlockLoadTime: 278.235ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 95.79us - FirstReadTime: 2.835ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.169us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 271.209ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 700.853us - OutputIndexResultColumnTimer: 46.960us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.455306M (1455306) - RowsShortCircuitPredInput: 1.480925M (1480925) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.695ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 151.623us PipelineXTask (index=17):(Active: 21.285ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 20.616ms - CloseTime: 57.432us - GetBlockTime: 19.640ms - OpenTime: 455.205us - PrepareTime: 142.623us - SinkTime: 364.894us - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.985ms - WaitBfTime: 17.201ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s207ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 352.980us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.127us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 44.896us - BlocksProduced: 35 - CloseTime: 53.884us - ExecTime: 749.130ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 543.11us - ProcessConjunctTime: 291.136us - ProjectionTime: 0ns - RowsProduced: 128.11K (128110) - RowsRead: 128.11K (128110) - RuntimeFilterInfo: - filter id = -1 filtered: 2.991358M (2991358) - filter id = -1 input: 3.247578M (3247578) - ScannerWorkerWaitTime: 382.891ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 728.908ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [262.759ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [382.891ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 259.955ms - MemoryUsage: - FreeBlocks: 2.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 75.419ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.938us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 97.513ms - ScannerCtxSchedTime: 382.876ms - ScannerFilterTime: 398.860us - ScannerGetBlockTime: 262.161ms - ScannerInitTime: 94.780us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 2.555us - BlockConditionsFilteredBloomFilterTime: 5.199us - BlockConditionsFilteredDictTime: 154.57us - BlockConditionsFilteredTime: 235.744us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.587us - BlockInitSeekCount: 26 - BlockInitSeekTime: 33.773us - BlockInitTime: 397.575us - BlockLoadTime: 336.106ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 120.11us - FirstReadTime: 3.139ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.53us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 294.432ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 32.864ms - OutputIndexResultColumnTimer: 49.882us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.495679M (1495679) - RowsShortCircuitPredInput: 1.623789M (1623789) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.363ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 167.758us PipelineXTask (index=22):(Active: 1.934ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.372ms - CloseTime: 49.897us - GetBlockTime: 515.52us - OpenTime: 307.175us - PrepareTime: 196.230us - SinkTime: 423.317us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.564ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 413.639us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.457us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 47.102us - BlocksProduced: 47 - CloseTime: 46.582us - ExecTime: 578.1ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 445.222us - ProcessConjunctTime: 158.993us - ProjectionTime: 0ns - RowsProduced: 167.427K (167427) - RowsRead: 167.427K (167427) - RuntimeFilterInfo: - filter id = -1 filtered: 2.754106M (2754106) - filter id = -1 input: 3.08896M (3088960) - ScannerWorkerWaitTime: 343.285ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 577.10ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [224.438ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [343.285ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 221.485ms - MemoryUsage: - FreeBlocks: 3.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 932.35us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.343us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.353ms - ScannerCtxSchedTime: 343.279ms - ScannerFilterTime: 436.853us - ScannerGetBlockTime: 223.816ms - ScannerInitTime: 83.71us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.684us - BlockConditionsFilteredBloomFilterTime: 3.938us - BlockConditionsFilteredDictTime: 132.907us - BlockConditionsFilteredTime: 205.123us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.119us - BlockInitSeekCount: 25 - BlockInitSeekTime: 23.829us - BlockInitTime: 299.678us - BlockLoadTime: 223.521ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 120.918us - FirstReadTime: 3.105ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.675us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 211.669ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.609ms - OutputIndexResultColumnTimer: 65.938us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.377053M (1377053) - RowsShortCircuitPredInput: 1.54448M (1544480) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.831ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 166.234us PipelineXTask (index=27):(Active: 50.661ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.45ms - CloseTime: 67.188us - GetBlockTime: 875.393us - OpenTime: 24.379ms - PrepareTime: 149.75us - SinkTime: 563.834us - GetBlockCounter: 74 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.380ms - WaitBfTime: 1.56ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s308ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 545.723us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.647us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.373us - BlocksProduced: 74 - CloseTime: 63.299us - ExecTime: 774.588ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 24.469ms - ProcessConjunctTime: 130.910us - ProjectionTime: 0ns - RowsProduced: 273.17K (273170) - RowsRead: 273.17K (273170) - RuntimeFilterInfo: - filter id = -1 filtered: 2.741612M (2741612) - filter id = -1 input: 3.287952M (3287952) - ScannerWorkerWaitTime: 447.49ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 749.201ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [260.848ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [447.049ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 172.158ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.443ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.213us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 140.610ms - ScannerCtxSchedTime: 447.34ms - ScannerFilterTime: 84.870ms - ScannerGetBlockTime: 175.756ms - ScannerInitTime: 24.196ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 2.215us - BlockConditionsFilteredBloomFilterTime: 6.500us - BlockConditionsFilteredDictTime: 172.136us - BlockConditionsFilteredTime: 270.372us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.566us - BlockInitSeekCount: 31 - BlockInitSeekTime: 34.764us - BlockInitTime: 423.645us - BlockLoadTime: 175.530ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 142.111us - FirstReadTime: 3.719ms - IOTimer: 0ns - InvertedIndexFilterTime: 19.933us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 148.148ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 4.566ms - OutputIndexResultColumnTimer: 63.984us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.370806M (1370806) - RowsShortCircuitPredInput: 1.643976M (1643976) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 16.91ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 228.823us PipelineXTask (index=32):(Active: 15.17ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 14.260ms - CloseTime: 54.319us - GetBlockTime: 12.800ms - OpenTime: 509.990us - PrepareTime: 170.167us - SinkTime: 712.420us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.45ms - WaitBfTime: 15.430ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s121ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 695.219us - InputRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.590us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 57.665us - BlocksProduced: 91 - CloseTime: 50.168us - ExecTime: 849.939ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 613.416us - ProcessConjunctTime: 280.623us - ProjectionTime: 0ns - RowsProduced: 329.927K (329927) - RowsRead: 329.927K (329927) - RuntimeFilterInfo: - filter id = -1 filtered: 2.096866M (2096866) - filter id = -1 input: 2.75672M (2756720) - ScannerWorkerWaitTime: 247.557ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 836.498ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [476.834ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [247.557ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 473.359ms - MemoryUsage: - FreeBlocks: 5.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.309ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.568us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 122.534ms - ScannerCtxSchedTime: 247.549ms - ScannerFilterTime: 443.340us - ScannerGetBlockTime: 476.214ms - ScannerInitTime: 144.720us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 1.628us - BlockConditionsFilteredBloomFilterTime: 5.768us - BlockConditionsFilteredDictTime: 112.724us - BlockConditionsFilteredTime: 179.814us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.314us - BlockInitSeekCount: 35 - BlockInitSeekTime: 31.582us - BlockInitTime: 291.631us - BlockLoadTime: 498.251ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 110.792us - FirstReadTime: 94.962ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.45us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 302.751ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.213ms - OutputIndexResultColumnTimer: 54.511us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.048433M (1048433) - RowsShortCircuitPredInput: 1.37836M (1378360) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 32.16ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 152.826us PipelineXTask (index=37):(Active: 2.963ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 2.296ms - CloseTime: 45.167us - GetBlockTime: 861.262us - OpenTime: 432.139us - PrepareTime: 178.327us - SinkTime: 725.173us - GetBlockCounter: 113 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.888ms - WaitBfTime: 22.946ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 923.423ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 704.532us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.221us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 47.716us - BlocksProduced: 113 - CloseTime: 43.133us - ExecTime: 892.375ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 523.943us - ProcessConjunctTime: 239.244us - ProjectionTime: 0ns - RowsProduced: 394.725K (394725) - RowsRead: 394.725K (394725) - RuntimeFilterInfo: - filter id = -1 filtered: 2.268508M (2268508) - filter id = -1 input: 3.057958M (3057958) - ScannerWorkerWaitTime: 505.638ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 890.969ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [316.713ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [505.638ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 312.33ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.184ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.441us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 147.515ms - ScannerCtxSchedTime: 505.625ms - ScannerFilterTime: 600.340us - ScannerGetBlockTime: 315.919ms - ScannerInitTime: 120.914us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 2.15us - BlockConditionsFilteredBloomFilterTime: 5.488us - BlockConditionsFilteredDictTime: 124.505us - BlockConditionsFilteredTime: 205.292us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.488us - BlockInitSeekCount: 33 - BlockInitSeekTime: 38.835us - BlockInitTime: 366.165us - BlockLoadTime: 315.509ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 160.250us - FirstReadTime: 16.369ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.458us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 282.574ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.949ms - OutputIndexResultColumnTimer: 58.241us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.134254M (1134254) - RowsShortCircuitPredInput: 1.528979M (1528979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.876ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 177.568us PipelineXTask (index=42):(Active: 1.859ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.386ms - CloseTime: 41.424us - GetBlockTime: 562.565us - OpenTime: 260.967us - PrepareTime: 160.40us - SinkTime: 384.575us - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.794ms - WaitBfTime: 13.269ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 392.837ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 370.221us - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 935ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.100us - BlocksProduced: 68 - CloseTime: 39.152us - ExecTime: 644.175ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 359.272us - ProcessConjunctTime: 150.977us - ProjectionTime: 0ns - RowsProduced: 249.28K (249280) - RowsRead: 249.28K (249280) - RuntimeFilterInfo: - filter id = -1 filtered: 1.574774M (1574774) - filter id = -1 input: 2.073334M (2073334) - ScannerWorkerWaitTime: 271.129ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 643.232ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [273.720ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [271.129ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 271.164ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 89.313ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.879us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 87.713ms - ScannerCtxSchedTime: 271.118ms - ScannerFilterTime: 312.373us - ScannerGetBlockTime: 273.259ms - ScannerInitTime: 63.34us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.852us - BlockConditionsFilteredBloomFilterTime: 5.262us - BlockConditionsFilteredDictTime: 86.893us - BlockConditionsFilteredTime: 156.373us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.454us - BlockInitSeekCount: 25 - BlockInitSeekTime: 259.919us - BlockInitTime: 515.127us - BlockLoadTime: 361.492ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 97.21us - FirstReadTime: 24.207ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.680us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 278.683ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.204ms - OutputIndexResultColumnTimer: 38.229us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 787.387K (787387) - RowsShortCircuitPredInput: 1.036667M (1036667) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 53.498ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 143.425us PipelineXTask (index=47):(Active: 2.573ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.844ms - CloseTime: 63.530us - GetBlockTime: 688.703us - OpenTime: 445.768us - PrepareTime: 207.572us - SinkTime: 506.186us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.489ms - WaitBfTime: 1.543ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s251ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 490.57us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.177us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 62.832us - BlocksProduced: 96 - CloseTime: 61.205us - ExecTime: 558.967ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 563.376us - ProcessConjunctTime: 255.580us - ProjectionTime: 0ns - RowsProduced: 325.275K (325275) - RowsRead: 325.275K (325275) - RuntimeFilterInfo: - filter id = -1 filtered: 1.675472M (1675472) - filter id = -1 input: 2.326022M (2326022) - ScannerWorkerWaitTime: 341.184ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 557.670ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [204.685ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [341.184ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 202.443ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 868.708us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.543us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.685ms - ScannerCtxSchedTime: 341.179ms - ScannerFilterTime: 403.952us - ScannerGetBlockTime: 204.122ms - ScannerInitTime: 103.14us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.500us - BlockConditionsFilteredBloomFilterTime: 4.605us - BlockConditionsFilteredDictTime: 62.495us - BlockConditionsFilteredTime: 123.837us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 35.864us - BlockInitSeekCount: 26 - BlockInitSeekTime: 225.345us - BlockInitTime: 426.25us - BlockLoadTime: 203.937ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 117.796us - FirstReadTime: 2.217ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.866us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 189.270ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.772ms - OutputIndexResultColumnTimer: 35.991us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 837.736K (837736) - RowsShortCircuitPredInput: 1.163011M (1163011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.336ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 136.992us PipelineXTask (index=52):(Active: 45.46ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.529ms - CloseTime: 40.409us - GetBlockTime: 84.841us - OpenTime: 22.331ms - PrepareTime: 135.442us - SinkTime: 81.240us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.120ms - WaitBfTime: 7.703ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.601ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 80.876us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.341us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.300us - BlocksProduced: 9 - CloseTime: 38.176us - ExecTime: 279.680ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 22.420ms - ProcessConjunctTime: 220.490us - ProjectionTime: 0ns - RowsProduced: 32.142K (32142) - RowsRead: 32.142K (32142) - RuntimeFilterInfo: - filter id = -1 filtered: 389.738K (389738) - filter id = -1 input: 454.022K (454022) - ScannerWorkerWaitTime: 243.434ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 257.138ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [9.114ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [243.434ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.923ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 958.800us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 460ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.687ms - ScannerCtxSchedTime: 243.432ms - ScannerFilterTime: 42.37us - ScannerGetBlockTime: 9.44ms - ScannerInitTime: 22.34ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 362ns - BlockConditionsFilteredBloomFilterTime: 1.136us - BlockConditionsFilteredDictTime: 22.6us - BlockConditionsFilteredTime: 36.338us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.235us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.261us - BlockInitTime: 64.984us - BlockLoadTime: 9.743ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 26.254us - FirstReadTime: 408.960us - IOTimer: 0ns - InvertedIndexFilterTime: 1.521us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.920ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 417.543us - OutputIndexResultColumnTimer: 6.288us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 194.869K (194869) - RowsShortCircuitPredInput: 227.011K (227011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 667.138us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 24.985us PipelineXTask (index=57):(Active: 1.204ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 599.723us - CloseTime: 40.651us - GetBlockTime: 115.58us - OpenTime: 394.27us - PrepareTime: 160.29us - SinkTime: 57.787us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.152ms - WaitBfTime: 17.163ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.504ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 57.298us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.276us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 26, type = minmax), RuntimeFilter: (id = 27, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 45.293us - BlocksProduced: 10 - CloseTime: 38.299us - ExecTime: 264.15ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 488.553us - ProcessConjunctTime: 263.15us - ProjectionTime: 0ns - RowsProduced: 36.782K (36782) - RowsRead: 36.782K (36782) - RuntimeFilterInfo: - filter id = -1 filtered: 412.336K (412336) - filter id = -1 input: 485.9K (485900) - ScannerWorkerWaitTime: 127.776ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 263.375ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 26, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 27, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [9.786ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [127.776ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.573ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 121.933ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 404ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.892ms - ScannerCtxSchedTime: 127.774ms - ScannerFilterTime: 48.859us - ScannerGetBlockTime: 9.706ms - ScannerInitTime: 63.205us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 642ns - BlockConditionsFilteredBloomFilterTime: 2.163us - BlockConditionsFilteredDictTime: 28.463us - BlockConditionsFilteredTime: 55.720us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.147us - BlockInitSeekCount: 8 - BlockInitSeekTime: 19.867us - BlockInitTime: 116.563us - BlockLoadTime: 131.297ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 28.161us - FirstReadTime: 458.610us - IOTimer: 0ns - InvertedIndexFilterTime: 2.762us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 129.140ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 473.463us - OutputIndexResultColumnTimer: 6.269us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 206.168K (206168) - RowsShortCircuitPredInput: 242.95K (242950) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 790.370us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 23.981us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 257.548us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 166.557us - CloseTime: 10.46us - GetBlockTime: 9.234us - OpenTime: 2.252us - PrepareTime: 74.737us - SinkTime: 137.53us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 241.477us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.605ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.318us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.686us - BuildTableInsertTime: 23.276us - BuildTableTime: 28.762us - CloseTime: 0ns - ExecTime: 156.201us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 19.817us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.400us - RuntimeFilterComputeTime: 36.638us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.312us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.864us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 20.141us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 137.878us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 60.747us - CloseTime: 7.893us - GetBlockTime: 0ns - OpenTime: 2.626us - PrepareTime: 60.30us - SinkTime: 17.163us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.962us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.51ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.542us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.689us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 10.42ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.365us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.557us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.267us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 123.522us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.943us - CloseTime: 9.751us - GetBlockTime: 0ns - OpenTime: 3.436us - PrepareTime: 58.526us - SinkTime: 24.494us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.155us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.275ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.586us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.489us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.690ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.422us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 108.604us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.992us - CloseTime: 7.191us - GetBlockTime: 0ns - OpenTime: 1.790us - PrepareTime: 63.372us - SinkTime: 14.826us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.488us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.318ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.213us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.43us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.666us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 117.967us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 40.806us - CloseTime: 9.798us - GetBlockTime: 0ns - OpenTime: 2.833us - PrepareTime: 59.57us - SinkTime: 25.257us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.487us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.983ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.931us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.910us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.930us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.830us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.891us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 116.931us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.327us - CloseTime: 8.205us - GetBlockTime: 0ns - OpenTime: 1.493us - PrepareTime: 76.172us - SinkTime: 17.705us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.841us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.795ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.774us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.19us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.232us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.181us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.411us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 110.668us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 21.423us - CloseTime: 4.466us - GetBlockTime: 0ns - OpenTime: 2.86us - PrepareTime: 77.763us - SinkTime: 11.769us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.627us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.855ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 47.727us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 35.495us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.431us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.809us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.664us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 122.795us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.182us - CloseTime: 9.292us - GetBlockTime: 0ns - OpenTime: 2.954us - PrepareTime: 60.832us - SinkTime: 23.450us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.296us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.192ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.564us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.226us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.316ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.0us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.729us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.762us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 136.895us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.812us - CloseTime: 7.267us - GetBlockTime: 0ns - OpenTime: 3.74us - PrepareTime: 80.266us - SinkTime: 17.433us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.744us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.951ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.237us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.224us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11.199ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.555us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.764us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 115.697us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.785us - CloseTime: 8.320us - GetBlockTime: 0ns - OpenTime: 4.22us - PrepareTime: 59.871us - SinkTime: 16.4us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.206us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.194ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.460us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.994us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12.349ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.402us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.50us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.643us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 151.599us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 66.293us - CloseTime: 13.870us - GetBlockTime: 0ns - OpenTime: 3.550us - PrepareTime: 62.686us - SinkTime: 40.526us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.205us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.982ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 62.539us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.330us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 10.12ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.60us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.39us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.450us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 216.981us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.257us - CloseTime: 8.916us - GetBlockTime: 0ns - OpenTime: 2.54us - PrepareTime: 156.572us - SinkTime: 24.235us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 200.510us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.196ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.539us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.990us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9.944ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.548us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.307us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 103.844us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 17.957ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.897ms - CloseTime: 14.498us - GetBlockTime: 68.853us - OpenTime: 1.592us - PrepareTime: 40.713us - SinkTime: 17.795ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.357ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 3.322us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.145ms - BuildTableInsertTime: 16.498ms - BuildTableTime: 16.564ms - CloseTime: 0ns - ExecTime: 17.803ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 11.386us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=64): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 11.84us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.292us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 1.26 MB - PeakMemoryUsage: 700.00 KB - OpenTime: 12.410us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7.91ms PipelineXTask (index=9):(Active: 101.785us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.275us - CloseTime: 6.20us - GetBlockTime: 0ns - OpenTime: 2.723us - PrepareTime: 62.298us - SinkTime: 6.207us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.126us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.898ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 21.750us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.733us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.579ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.913us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.399us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.616us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 99.353us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 41.198us - CloseTime: 13.868us - GetBlockTime: 0ns - OpenTime: 3.65us - PrepareTime: 35.787us - SinkTime: 15.593us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.218us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 371.139us HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.32us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.134us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 41.972ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.327us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.860us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 74.944us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.61us - CloseTime: 5.243us - GetBlockTime: 0ns - OpenTime: 1.826us - PrepareTime: 39.807us - SinkTime: 6.565us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.147ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.338us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.28us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 29.266ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.958us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.318us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.751us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 88.346us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.118us - CloseTime: 3.659us - GetBlockTime: 0ns - OpenTime: 2.210us - PrepareTime: 53.485us - SinkTime: 8.90us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.331us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.201ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.325us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.286us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 20.194ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.777us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.422us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 124.660us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.579us - CloseTime: 5.527us - GetBlockTime: 0ns - OpenTime: 3.160us - PrepareTime: 78.526us - SinkTime: 12.955us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.653us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.887ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.344us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.743us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.574ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.967us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.5us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.67us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 508.512us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.560us - CloseTime: 388.993us - GetBlockTime: 0ns - OpenTime: 2.862us - PrepareTime: 60.954us - SinkTime: 25.451us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.534us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.781ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.384us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.582us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.498ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 385.742us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 401.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.311us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 76.366us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.762us - CloseTime: 4.814us - GetBlockTime: 0ns - OpenTime: 2.760us - PrepareTime: 42.173us - SinkTime: 5.216us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.525us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.260ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.904us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.687us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 20.160ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.263us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.258us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 99.741us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.710us - CloseTime: 8.772us - GetBlockTime: 0ns - OpenTime: 2.902us - PrepareTime: 55.995us - SinkTime: 7.653us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.753us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.129ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.441us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.165us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.211ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.247us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.636us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 73.309us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.285us - CloseTime: 3.915us - GetBlockTime: 0ns - OpenTime: 2.483us - PrepareTime: 36.267us - SinkTime: 7.428us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 62.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 528.822us HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.214us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.205us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 41.900ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.687us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.163us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 104.739us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.534us - CloseTime: 5.785us - GetBlockTime: 0ns - OpenTime: 7.777us - PrepareTime: 53.960us - SinkTime: 9.909us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.694us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.920ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.613us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.46us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.565ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.64us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.143us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 96.182us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.89us - CloseTime: 4.237us - GetBlockTime: 0ns - OpenTime: 3.915us - PrepareTime: 52.390us - SinkTime: 6.510us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.83us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 913.407us HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268963021 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.870us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.341us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 41.524ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.133us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.897us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.55us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 127: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.239ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 929.618us - CloseTime: 65.353us - GetBlockTime: 109.438us - OpenTime: 106.603us - PrepareTime: 129.780us - SinkTime: 672.400us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.163ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.287ms DATA_STREAM_SINK_OPERATOR (id=64,dst_id=64): - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.600us - CompressTime: 0ns - ExecTime: 725.371us - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 659.550us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.506us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 43.597K (43597) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=63. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 594ns - BlocksProduced: 11 - CloseTime: 32.438us - ExecTime: 17.696ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 174.810us - ProcessConjunctTime: 20.625us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 14.397ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 17.382ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [1.176ms, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [14.397ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.114ms - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.553ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 749ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.987ms - ScannerCtxSchedTime: 14.392ms - ScannerFilterTime: 7.698us - ScannerGetBlockTime: 1.162ms - ScannerInitTime: 51.172us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 262ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.829us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 1.274ms - BlockInitTime: 1.321ms - BlockLoadTime: 2.542ms - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 15.846us - FirstReadTime: 1.153ms - IOTimer: 0ns - InvertedIndexFilterTime: 680ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.577us - OutputIndexResultColumnTimer: 1.256us - RawRowsRead: 43.597K (43597) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 5 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 128: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 710.262us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 212.856us - CloseTime: 37.902us - GetBlockTime: 34.729us - OpenTime: 142.104us - PrepareTime: 308.683us - SinkTime: 13.756us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 661.635us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 629.754us DATA_STREAM_SINK_OPERATOR (id=62,dst_id=62): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.175us - CompressTime: 0ns - ExecTime: 74.726us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 7.886us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 46.272us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=61. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 386ns - BlocksProduced: 1 - CloseTime: 20.988us - ExecTime: 1.812ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 224.976us - ProcessConjunctTime: 44.765us - ProjectionTime: 6.720us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.31ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 1.525ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [55.793us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [1.031ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.933us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 321.991us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 114ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 497.650us - ScannerCtxSchedTime: 1.29ms - ScannerFilterTime: 1.650us - ScannerGetBlockTime: 38.670us - ScannerInitTime: 70.69us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 571ns - BlockConditionsFilteredBloomFilterTime: 1.772us - BlockConditionsFilteredDictTime: 5.631us - BlockConditionsFilteredTime: 32.965us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.500us - BlockInitSeekCount: 6 - BlockInitSeekTime: 16.141us - BlockInitTime: 92.268us - BlockLoadTime: 200.464us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 6.160us - FirstReadTime: 9.833us - IOTimer: 0ns - InvertedIndexFilterTime: 2.269us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.143us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 41.66us - OutputIndexResultColumnTimer: 402ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 123ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.182us Fragment 129: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 190.533us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 101.207us - CloseTime: 12.398us - GetBlockTime: 61.764us - OpenTime: 1.584us - PrepareTime: 68.572us - SinkTime: 13.558us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 169.172us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.810ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.656us - CompressTime: 0ns - ExecTime: 55.507us - InputRows: 84 - LocalBytesSent: 2.63 KB - LocalSendTime: 8.907us - LocalSentRows: 84 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 31.912us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 84 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 427ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.498us - GetResultsTime: 22.460us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.176us - HashTableSize: 84 - InsertKeysToColumnTime: 11.913us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.59us - ProjectionTime: 28.418us - RowsProduced: 84 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s313ms PipelineXTask (index=2):(Active: 274.317us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 95.215us - CloseTime: 12.150us - GetBlockTime: 53.831us - OpenTime: 1.541us - PrepareTime: 159.772us - SinkTime: 19.562us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 254.608us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.996ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.914us - CompressTime: 0ns - ExecTime: 51.510us - InputRows: 80 - LocalBytesSent: 2.49 KB - LocalSendTime: 16.137us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 22.114us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 743ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.902us - GetResultsTime: 20.228us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.506us - HashTableSize: 80 - InsertKeysToColumnTime: 7.260us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.313us - ProjectionTime: 22.977us - RowsProduced: 80 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s291ms PipelineXTask (index=4):(Active: 176.239us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 89.783us - CloseTime: 15.179us - GetBlockTime: 50.264us - OpenTime: 1.275us - PrepareTime: 63.737us - SinkTime: 18.988us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.112us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.85ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.308us - CompressTime: 0ns - ExecTime: 59.249us - InputRows: 74 - LocalBytesSent: 2.31 KB - LocalSendTime: 14.294us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.410us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 742ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.269us - GetResultsTime: 14.967us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.509us - HashTableSize: 74 - InsertKeysToColumnTime: 6.416us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.346us - ProjectionTime: 26.945us - RowsProduced: 74 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s313ms PipelineXTask (index=6):(Active: 168.834us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 77.729us - CloseTime: 9.25us - GetBlockTime: 50.969us - OpenTime: 920ns - PrepareTime: 75.184us - SinkTime: 10.751us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 152.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.463ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.886us - CompressTime: 0ns - ExecTime: 41.818us - InputRows: 89 - LocalBytesSent: 2.78 KB - LocalSendTime: 8.496us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.549us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 89 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 506ns - DeserializeAndMergeTime: 0ns - ExecTime: 55.998us - GetResultsTime: 22.488us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.698us - HashTableSize: 89 - InsertKeysToColumnTime: 15.22us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.220us - ProjectionTime: 23.948us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s292ms PipelineXTask (index=8):(Active: 194.106us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 109.932us - CloseTime: 16.37us - GetBlockTime: 78.103us - OpenTime: 990ns - PrepareTime: 61.437us - SinkTime: 14.388us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 171.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.230ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.163us - CompressTime: 0ns - ExecTime: 48.912us - InputRows: 55 - LocalBytesSent: 1.72 KB - LocalSendTime: 8.734us - LocalSentRows: 55 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.933us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 55 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 800ns - DeserializeAndMergeTime: 0ns - ExecTime: 84.831us - GetResultsTime: 41.182us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.447us - HashTableSize: 55 - InsertKeysToColumnTime: 29.301us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.780us - ProjectionTime: 25.826us - RowsProduced: 55 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s318ms PipelineXTask (index=10):(Active: 191.34us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 107.910us - CloseTime: 17.121us - GetBlockTime: 74.380us - OpenTime: 1.905us - PrepareTime: 58.192us - SinkTime: 14.805us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.140ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.482us - CompressTime: 0ns - ExecTime: 57.702us - InputRows: 91 - LocalBytesSent: 2.84 KB - LocalSendTime: 9.896us - LocalSentRows: 91 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.881us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 91 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 710ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.872us - GetResultsTime: 24.636us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.659us - HashTableSize: 91 - InsertKeysToColumnTime: 12.464us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.12us - ProjectionTime: 37.165us - RowsProduced: 91 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s291ms PipelineXTask (index=12):(Active: 160.173us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 76.587us - CloseTime: 9.857us - GetBlockTime: 49.114us - OpenTime: 715ns - PrepareTime: 67.735us - SinkTime: 8.561us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.21us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.284ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.865us - CompressTime: 0ns - ExecTime: 39.123us - InputRows: 85 - LocalBytesSent: 2.66 KB - LocalSendTime: 6.704us - LocalSentRows: 85 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 85 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 226ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.383us - GetResultsTime: 22.561us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.201us - HashTableSize: 85 - InsertKeysToColumnTime: 13.85us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.431us - ProjectionTime: 22.349us - RowsProduced: 85 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s291ms PipelineXTask (index=14):(Active: 169.660us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 93.184us - CloseTime: 15.42us - GetBlockTime: 59.997us - OpenTime: 670ns - PrepareTime: 55.230us - SinkTime: 14.747us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.802us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.792ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.221us - CompressTime: 0ns - ExecTime: 54.337us - InputRows: 89 - LocalBytesSent: 2.78 KB - LocalSendTime: 10.192us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.33us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 89 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 488ns - DeserializeAndMergeTime: 0ns - ExecTime: 65.921us - GetResultsTime: 24.431us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.173us - HashTableSize: 89 - InsertKeysToColumnTime: 10.498us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.204us - ProjectionTime: 25.829us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s287ms PipelineXTask (index=16):(Active: 174.917us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 84.256us - CloseTime: 9.74us - GetBlockTime: 54.215us - OpenTime: 1.990us - PrepareTime: 73.85us - SinkTime: 10.884us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.179us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.933ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.800us - CompressTime: 0ns - ExecTime: 51.986us - InputRows: 73 - LocalBytesSent: 2.28 KB - LocalSendTime: 7.0us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 33.859us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 73 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 540ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.312us - GetResultsTime: 25.62us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.787us - HashTableSize: 73 - InsertKeysToColumnTime: 14.296us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.30us - ProjectionTime: 21.400us - RowsProduced: 73 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s348ms PipelineXTask (index=18):(Active: 141.491us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 70.718us - CloseTime: 8.604us - GetBlockTime: 47.662us - OpenTime: 630ns - PrepareTime: 55.896us - SinkTime: 8.499us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.145ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.710us - CompressTime: 0ns - ExecTime: 37.678us - InputRows: 70 - LocalBytesSent: 2.19 KB - LocalSendTime: 6.326us - LocalSentRows: 70 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.803us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 70 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 223ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.791us - GetResultsTime: 22.237us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.432us - HashTableSize: 70 - InsertKeysToColumnTime: 14.222us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.169us - ProjectionTime: 20.617us - RowsProduced: 70 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s348ms PipelineXTask (index=20):(Active: 146.469us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.32us - CloseTime: 7.305us - GetBlockTime: 49.93us - OpenTime: 846ns - PrepareTime: 64.951us - SinkTime: 5.9us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.885us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.149ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 6.253us - CompressTime: 0ns - ExecTime: 54.52us - InputRows: 97 - LocalBytesSent: 3.03 KB - LocalSendTime: 3.247us - LocalSentRows: 97 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 43.26us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 97 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 177ns - DeserializeAndMergeTime: 0ns - ExecTime: 55.449us - GetResultsTime: 23.526us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.639us - HashTableSize: 97 - InsertKeysToColumnTime: 13.841us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.832us - ProjectionTime: 21.633us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s348ms PipelineXTask (index=22):(Active: 191.817us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 90.806us - CloseTime: 15.938us - GetBlockTime: 54.787us - OpenTime: 6.93us - PrepareTime: 72.776us - SinkTime: 11.3us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 168.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 221.176ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.875us - CompressTime: 0ns - ExecTime: 48.451us - InputRows: 77 - LocalBytesSent: 2.41 KB - LocalSendTime: 7.188us - LocalSentRows: 77 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 24.90us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 77 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 466ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.450us - GetResultsTime: 18.239us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.388us - HashTableSize: 77 - InsertKeysToColumnTime: 5.529us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.569us - ProjectionTime: 25.188us - RowsProduced: 77 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s351ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 396.687us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 293.409us - CloseTime: 10.221us - GetBlockTime: 66.838us - OpenTime: 4.195us - PrepareTime: 82.366us - SinkTime: 174.878us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 373.182us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.600ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.10us - DeserializeAndMergeTime: 45.152us - ExecTime: 190.883us - ExprTime: 0ns - HashTableComputeTime: 93.320us - HashTableEmplaceTime: 60.290us - HashTableInputCount: 135 - InputRows: 135 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 160.577us - OpenTime: 17.625us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.520us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 120.323us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.06 KB - MemoryUsage: - Blocks: 6.13 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 50.704us - ProjectionTime: 0ns - RowsProduced: 135 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s296ms PipelineXTask (index=3):(Active: 283.712us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 215.876us - CloseTime: 4.39us - GetBlockTime: 49.666us - OpenTime: 2.978us - PrepareTime: 55.263us - SinkTime: 127.492us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 268.464us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.801ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 538ns - DeserializeAndMergeTime: 32.984us - ExecTime: 141.748us - ExprTime: 0ns - HashTableComputeTime: 74.742us - HashTableEmplaceTime: 54.508us - HashTableInputCount: 113 - InputRows: 113 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 119.0us - OpenTime: 16.222us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.184us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 5.38 KB - PeakMemoryUsage: 5.38 KB - OpenTime: 20.824us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s295ms PipelineXTask (index=5):(Active: 288.472us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 227.673us - CloseTime: 3.203us - GetBlockTime: 44.848us - OpenTime: 2.586us - PrepareTime: 48.798us - SinkTime: 144.906us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 273.587us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.24ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 430ns - DeserializeAndMergeTime: 48.981us - ExecTime: 159.568us - ExprTime: 0ns - HashTableComputeTime: 77.953us - HashTableEmplaceTime: 59.413us - HashTableInputCount: 123 - InputRows: 123 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 136.288us - OpenTime: 16.291us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.281us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.19 KB - MemoryUsage: - Blocks: 5.13 KB - PeakMemoryUsage: 5.13 KB - OpenTime: 14.721us - ProjectionTime: 0ns - RowsProduced: 123 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s295ms PipelineXTask (index=7):(Active: 293.124us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 214.401us - CloseTime: 3.140us - GetBlockTime: 50.476us - OpenTime: 9.349us - PrepareTime: 60.306us - SinkTime: 117.673us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 278.816us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.159ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 577ns - DeserializeAndMergeTime: 39.249us - ExecTime: 134.455us - ExprTime: 0ns - HashTableComputeTime: 61.14us - HashTableEmplaceTime: 41.172us - HashTableInputCount: 136 - InputRows: 136 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 110.286us - OpenTime: 17.624us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.273us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.461us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.19 KB - MemoryUsage: - Blocks: 5.06 KB - PeakMemoryUsage: 5.06 KB - OpenTime: 12.527us - ProjectionTime: 0ns - RowsProduced: 136 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s295ms PipelineXTask (index=9):(Active: 368.303us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 271.626us - CloseTime: 7.275us - GetBlockTime: 79.956us - OpenTime: 2.900us - PrepareTime: 81.668us - SinkTime: 154.30us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 351.962us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.199ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.238us - DeserializeAndMergeTime: 25.846us - ExecTime: 188.941us - ExprTime: 0ns - HashTableComputeTime: 90.331us - HashTableEmplaceTime: 53.428us - HashTableInputCount: 83 - InputRows: 83 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 135.538us - OpenTime: 41.614us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.355us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.987us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.94 KB - MemoryUsage: - Blocks: 6.50 KB - PeakMemoryUsage: 6.50 KB - OpenTime: 21.260us - ProjectionTime: 0ns - RowsProduced: 83 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s271ms PipelineXTask (index=11):(Active: 265.383us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 202.354us - CloseTime: 3.410us - GetBlockTime: 60.33us - OpenTime: 3.352us - PrepareTime: 51.20us - SinkTime: 113.894us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 253.503us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.852ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 834ns - DeserializeAndMergeTime: 39.794us - ExecTime: 133.775us - ExprTime: 0ns - HashTableComputeTime: 59.474us - HashTableEmplaceTime: 33.353us - HashTableInputCount: 134 - InputRows: 134 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 108.82us - OpenTime: 19.998us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.981us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.652us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.94 KB - MemoryUsage: - Blocks: 9.63 KB - PeakMemoryUsage: 9.63 KB - OpenTime: 13.904us - ProjectionTime: 0ns - RowsProduced: 134 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s270ms PipelineXTask (index=13):(Active: 278.520us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 166.672us - CloseTime: 3.143us - GetBlockTime: 43.393us - OpenTime: 3.264us - PrepareTime: 98.826us - SinkTime: 89.116us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.349us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.178ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 336ns - DeserializeAndMergeTime: 23.831us - ExecTime: 108.412us - ExprTime: 0ns - HashTableComputeTime: 47.725us - HashTableEmplaceTime: 28.635us - HashTableInputCount: 114 - InputRows: 114 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 82.313us - OpenTime: 20.227us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.692us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.88 KB - MemoryUsage: - Blocks: 7.56 KB - PeakMemoryUsage: 7.56 KB - OpenTime: 23.295us - ProjectionTime: 0ns - RowsProduced: 114 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s292ms PipelineXTask (index=15):(Active: 297.347us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 218.210us - CloseTime: 11.602us - GetBlockTime: 43.829us - OpenTime: 3.207us - PrepareTime: 58.884us - SinkTime: 139.405us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 276.952us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.670ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.202us - DeserializeAndMergeTime: 35.417us - ExecTime: 154.957us - ExprTime: 0ns - HashTableComputeTime: 80.34us - HashTableEmplaceTime: 50.818us - HashTableInputCount: 148 - InputRows: 148 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 127.965us - OpenTime: 16.137us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.927us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.954us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.00 KB - MemoryUsage: - Blocks: 9.25 KB - PeakMemoryUsage: 9.25 KB - OpenTime: 21.99us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s289ms PipelineXTask (index=17):(Active: 280.608us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 200.790us - CloseTime: 11.549us - GetBlockTime: 55.405us - OpenTime: 3.650us - PrepareTime: 59.267us - SinkTime: 120.323us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 262.0us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.468ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 722ns - DeserializeAndMergeTime: 33.856us - ExecTime: 134.50us - ExprTime: 0ns - HashTableComputeTime: 69.833us - HashTableEmplaceTime: 41.521us - HashTableInputCount: 125 - InputRows: 125 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 113.451us - OpenTime: 13.916us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 9.475us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.63 KB - MemoryUsage: - Blocks: 13.63 KB - PeakMemoryUsage: 13.63 KB - OpenTime: 29.936us - ProjectionTime: 0ns - RowsProduced: 125 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s286ms PipelineXTask (index=19):(Active: 240.869us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 171.661us - CloseTime: 4.271us - GetBlockTime: 59.43us - OpenTime: 2.572us - PrepareTime: 57.105us - SinkTime: 90.792us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 229.715us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.688ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 494ns - DeserializeAndMergeTime: 21.12us - ExecTime: 110.739us - ExprTime: 0ns - HashTableComputeTime: 57.779us - HashTableEmplaceTime: 40.37us - HashTableInputCount: 103 - InputRows: 103 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 85.87us - OpenTime: 20.457us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.106us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 76.456us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.38 KB - MemoryUsage: - Blocks: 11.38 KB - PeakMemoryUsage: 11.38 KB - OpenTime: 15.854us - ProjectionTime: 0ns - RowsProduced: 103 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s286ms PipelineXTask (index=21):(Active: 369.364us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 225.940us - CloseTime: 8.151us - GetBlockTime: 68.279us - OpenTime: 2.632us - PrepareTime: 126.65us - SinkTime: 134.197us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 354.234us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.770ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 460ns - DeserializeAndMergeTime: 34.588us - ExecTime: 222.598us - ExprTime: 0ns - HashTableComputeTime: 81.291us - HashTableEmplaceTime: 52.84us - HashTableInputCount: 143 - InputRows: 143 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 127.753us - OpenTime: 89.83us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.135us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.56 KB - MemoryUsage: - Blocks: 14.56 KB - PeakMemoryUsage: 14.56 KB - OpenTime: 20.136us - ProjectionTime: 0ns - RowsProduced: 143 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s286ms PipelineXTask (index=23):(Active: 225.105us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 165.687us - CloseTime: 4.83us - GetBlockTime: 63.73us - OpenTime: 4.197us - PrepareTime: 45.618us - SinkTime: 74.396us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 213.400us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.757ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 318ns - DeserializeAndMergeTime: 19.796us - ExecTime: 89.723us - ExprTime: 0ns - HashTableComputeTime: 39.556us - HashTableEmplaceTime: 21.502us - HashTableInputCount: 114 - InputRows: 114 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 69.311us - OpenTime: 15.797us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.250us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.44 KB - MemoryUsage: - Blocks: 12.44 KB - PeakMemoryUsage: 12.44 KB - OpenTime: 10.581us - ProjectionTime: 0ns - RowsProduced: 114 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s283ms Fragment 130: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.108ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.871ms - CloseTime: 27.29us - GetBlockTime: 1.691ms - OpenTime: 9.320us - PrepareTime: 191.981us - SinkTime: 128.753us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.296ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.395us - CompressTime: 0ns - ExecTime: 207.732us - InputRows: 126 - LocalBytesSent: 6.47 KB - LocalSendTime: 47.812us - LocalSentRows: 126 - MemoryUsage: - PeakMemoryUsage: 13.63 KB - MergeBlockTime: 0ns - OpenTime: 70.826us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 126 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 29.971us - SplitBlockHashComputeTime: 5.676us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 113.419us - CloseTime: 6.230us - DeserializeAndMergeTime: 0ns - ExecTime: 195.806us - ExprTime: 3.787us - GetResultsTime: 28.351us - HashTableComputeTime: 71.247us - HashTableEmplaceTime: 58.362us - HashTableInputCount: 147 - HashTableIterateTime: 941ns - HashTableSize: 126 - InsertKeysToColumnTime: 6.987us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 41.48us - ProjectionTime: 0ns - RowsProduced: 126 - SerializeDataTime: 16.635us - SerializeKeyTime: 0ns - SerializeResultTime: 29.425us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 6.163us - ExecTime: 1.489ms - InitProbeSideTime: 819.28us - JoinFilterTimer: 345ns - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 14.814us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 973ns - ProbeFindNextTime: 0ns - ProbeRows: 33.788K (33788) - ProbeTime: 1.387ms - ProbeWhenBuildSideOutputTime: 29.877us - ProbeWhenProbeSideOutputTime: 2.36us - ProbeWhenProcessHashTableTime: 18.934us - ProbeWhenSearchHashTableTime: 450.375us - ProjectionTime: 58.700us - RowsProduced: 147 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s390ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 3.548us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.423us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.28 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 19.834us - ProjectionTime: 0ns - RowsProduced: 33.788K (33788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s816ms PipelineXTask (index=2):(Active: 2.170ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.937ms - CloseTime: 32.128us - GetBlockTime: 1.732ms - OpenTime: 7.23us - PrepareTime: 186.726us - SinkTime: 157.863us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.127ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.141ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.116us - CompressTime: 0ns - ExecTime: 242.315us - InputRows: 112 - LocalBytesSent: 5.62 KB - LocalSendTime: 61.523us - LocalSentRows: 112 - MemoryUsage: - PeakMemoryUsage: 11.75 KB - MergeBlockTime: 0ns - OpenTime: 75.812us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 112 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.205us - SplitBlockHashComputeTime: 6.12us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 98.450us - CloseTime: 5.795us - DeserializeAndMergeTime: 0ns - ExecTime: 154.715us - ExprTime: 3.679us - GetResultsTime: 22.111us - HashTableComputeTime: 58.793us - HashTableEmplaceTime: 43.328us - HashTableInputCount: 122 - HashTableIterateTime: 673ns - HashTableSize: 112 - InsertKeysToColumnTime: 10.269us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 21.160us - ProjectionTime: 0ns - RowsProduced: 112 - SerializeDataTime: 7.990us - SerializeKeyTime: 0ns - SerializeResultTime: 23.434us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 3.998us - ExecTime: 1.556ms - InitProbeSideTime: 926.177us - JoinFilterTimer: 462ns - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 11.467us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.635us - ProbeFindNextTime: 0ns - ProbeRows: 33.798K (33798) - ProbeTime: 1.457ms - ProbeWhenBuildSideOutputTime: 21.529us - ProbeWhenProbeSideOutputTime: 3.801us - ProbeWhenProcessHashTableTime: 30.706us - ProbeWhenSearchHashTableTime: 406.883us - ProjectionTime: 59.299us - RowsProduced: 122 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s381ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 10.979us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 96.718us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 33.921us - ProjectionTime: 0ns - RowsProduced: 33.798K (33798) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=4):(Active: 2.311ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.56ms - CloseTime: 31.541us - GetBlockTime: 1.852ms - OpenTime: 6.844us - PrepareTime: 210.419us - SinkTime: 154.344us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.270ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.389ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.754us - CompressTime: 0ns - ExecTime: 233.581us - InputRows: 118 - LocalBytesSent: 5.90 KB - LocalSendTime: 75.118us - LocalSentRows: 118 - MemoryUsage: - PeakMemoryUsage: 12.19 KB - MergeBlockTime: 0ns - OpenTime: 69.915us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 118 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 26.436us - SplitBlockHashComputeTime: 5.787us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 111.392us - CloseTime: 8.388us - DeserializeAndMergeTime: 0ns - ExecTime: 229.114us - ExprTime: 4.507us - GetResultsTime: 32.708us - HashTableComputeTime: 72.727us - HashTableEmplaceTime: 58.571us - HashTableInputCount: 127 - HashTableIterateTime: 977ns - HashTableSize: 118 - InsertKeysToColumnTime: 9.592us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 66.848us - ProjectionTime: 0ns - RowsProduced: 118 - SerializeDataTime: 16.47us - SerializeKeyTime: 0ns - SerializeResultTime: 34.902us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 4.657us - ExecTime: 1.634ms - InitProbeSideTime: 940.289us - JoinFilterTimer: 449ns - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 16.220us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.808us - ProbeFindNextTime: 0ns - ProbeRows: 33.75K (33750) - ProbeTime: 1.510ms - ProbeWhenBuildSideOutputTime: 39.556us - ProbeWhenProbeSideOutputTime: 3.632us - ProbeWhenProcessHashTableTime: 19.565us - ProbeWhenSearchHashTableTime: 425.952us - ProjectionTime: 74.862us - RowsProduced: 127 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s465ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 5.209us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.847us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.31 MB - MemoryUsage: - Blocks: 1.31 MB - PeakMemoryUsage: 1.31 MB - OpenTime: 14.864us - ProjectionTime: 0ns - RowsProduced: 33.75K (33750) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s801ms PipelineXTask (index=6):(Active: 2.55ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.844ms - CloseTime: 32.174us - GetBlockTime: 1.659ms - OpenTime: 8.562us - PrepareTime: 163.906us - SinkTime: 124.178us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.897ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.728us - CompressTime: 0ns - ExecTime: 204.804us - InputRows: 117 - LocalBytesSent: 5.90 KB - LocalSendTime: 42.562us - LocalSentRows: 117 - MemoryUsage: - PeakMemoryUsage: 12.50 KB - MergeBlockTime: 0ns - OpenTime: 65.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 117 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.358us - SplitBlockHashComputeTime: 5.465us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 82.655us - CloseTime: 5.742us - DeserializeAndMergeTime: 0ns - ExecTime: 149.770us - ExprTime: 3.453us - GetResultsTime: 23.469us - HashTableComputeTime: 49.127us - HashTableEmplaceTime: 35.932us - HashTableInputCount: 129 - HashTableIterateTime: 828ns - HashTableSize: 117 - InsertKeysToColumnTime: 11.555us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 30.762us - ProjectionTime: 0ns - RowsProduced: 117 - SerializeDataTime: 7.544us - SerializeKeyTime: 0ns - SerializeResultTime: 24.712us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 3.871us - ExecTime: 1.476ms - InitProbeSideTime: 861.230us - JoinFilterTimer: 490ns - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 12.286us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.413us - ProbeFindNextTime: 0ns - ProbeRows: 33.825K (33825) - ProbeTime: 1.378ms - ProbeWhenBuildSideOutputTime: 27.184us - ProbeWhenProbeSideOutputTime: 3.15us - ProbeWhenProcessHashTableTime: 10.478us - ProbeWhenSearchHashTableTime: 416.348us - ProjectionTime: 59.269us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s466ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 4.564us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.278us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.30 MB - MemoryUsage: - Blocks: 1.30 MB - PeakMemoryUsage: 1.30 MB - OpenTime: 13.815us - ProjectionTime: 0ns - RowsProduced: 33.825K (33825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s792ms PipelineXTask (index=8):(Active: 2.210ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.960ms - CloseTime: 34.806us - GetBlockTime: 1.759ms - OpenTime: 8.892us - PrepareTime: 200.525us - SinkTime: 158.889us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.167ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.49ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.361us - CompressTime: 0ns - ExecTime: 255.934us - InputRows: 100 - LocalBytesSent: 5.05 KB - LocalSendTime: 74.710us - LocalSentRows: 100 - MemoryUsage: - PeakMemoryUsage: 11.06 KB - MergeBlockTime: 0ns - OpenTime: 86.341us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 100 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.961us - SplitBlockHashComputeTime: 5.9us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 98.12us - CloseTime: 7.188us - DeserializeAndMergeTime: 0ns - ExecTime: 177.803us - ExprTime: 4.32us - GetResultsTime: 21.332us - HashTableComputeTime: 54.904us - HashTableEmplaceTime: 39.958us - HashTableInputCount: 111 - HashTableIterateTime: 621ns - HashTableSize: 100 - InsertKeysToColumnTime: 9.997us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 23.673us - ProjectionTime: 0ns - RowsProduced: 100 - SerializeDataTime: 7.275us - SerializeKeyTime: 0ns - SerializeResultTime: 23.596us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 7.604us - ExecTime: 1.560ms - InitProbeSideTime: 965.380us - JoinFilterTimer: 538ns - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 20.17us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.66us - ProbeFindNextTime: 0ns - ProbeRows: 33.716K (33716) - ProbeTime: 1.452ms - ProbeWhenBuildSideOutputTime: 22.636us - ProbeWhenProbeSideOutputTime: 3.869us - ProbeWhenProcessHashTableTime: 18.804us - ProbeWhenSearchHashTableTime: 377.568us - ProjectionTime: 56.579us - RowsProduced: 111 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 5.390us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 85.820us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.28 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 12.722us - ProjectionTime: 0ns - RowsProduced: 33.716K (33716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s800ms PipelineXTask (index=10):(Active: 2.187ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.917ms - CloseTime: 35.449us - GetBlockTime: 1.743ms - OpenTime: 7.107us - PrepareTime: 220.838us - SinkTime: 136.954us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.143ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.517ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.976us - CompressTime: 0ns - ExecTime: 213.288us - InputRows: 141 - LocalBytesSent: 7.12 KB - LocalSendTime: 49.268us - LocalSentRows: 141 - MemoryUsage: - PeakMemoryUsage: 14.75 KB - MergeBlockTime: 0ns - OpenTime: 66.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 141 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.277us - SplitBlockHashComputeTime: 6.112us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 109.239us - CloseTime: 11.118us - DeserializeAndMergeTime: 0ns - ExecTime: 187.445us - ExprTime: 7.211us - GetResultsTime: 28.430us - HashTableComputeTime: 63.586us - HashTableEmplaceTime: 44.963us - HashTableInputCount: 156 - HashTableIterateTime: 824ns - HashTableSize: 141 - InsertKeysToColumnTime: 13.103us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 30.440us - ProjectionTime: 0ns - RowsProduced: 141 - SerializeDataTime: 11.476us - SerializeKeyTime: 0ns - SerializeResultTime: 29.982us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 7.416us - ExecTime: 1.557ms - InitProbeSideTime: 842.191us - JoinFilterTimer: 564ns - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 15.12us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.93us - ProbeFindNextTime: 0ns - ProbeRows: 33.664K (33664) - ProbeTime: 1.443ms - ProbeWhenBuildSideOutputTime: 33.449us - ProbeWhenProbeSideOutputTime: 3.388us - ProbeWhenProcessHashTableTime: 26.991us - ProbeWhenSearchHashTableTime: 470.419us - ProjectionTime: 67.666us - RowsProduced: 156 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.730us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 78.377us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 22.671us - ProjectionTime: 0ns - RowsProduced: 33.664K (33664) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=12):(Active: 2.182ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.920ms - CloseTime: 33.780us - GetBlockTime: 1.733ms - OpenTime: 5.628us - PrepareTime: 214.860us - SinkTime: 139.678us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.721ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.487us - CompressTime: 0ns - ExecTime: 225.86us - InputRows: 125 - LocalBytesSent: 6.28 KB - LocalSendTime: 53.3us - LocalSentRows: 125 - MemoryUsage: - PeakMemoryUsage: 13.44 KB - MergeBlockTime: 0ns - OpenTime: 75.237us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 125 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.72us - SplitBlockHashComputeTime: 5.558us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 98.605us - CloseTime: 10.881us - DeserializeAndMergeTime: 0ns - ExecTime: 188.352us - ExprTime: 3.818us - GetResultsTime: 28.712us - HashTableComputeTime: 59.470us - HashTableEmplaceTime: 42.249us - HashTableInputCount: 136 - HashTableIterateTime: 1.18us - HashTableSize: 125 - InsertKeysToColumnTime: 9.634us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 42.265us - ProjectionTime: 0ns - RowsProduced: 125 - SerializeDataTime: 13.325us - SerializeKeyTime: 0ns - SerializeResultTime: 30.152us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 4.135us - ExecTime: 1.540ms - InitProbeSideTime: 868.332us - JoinFilterTimer: 469ns - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.115us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.134us - ProbeFindNextTime: 0ns - ProbeRows: 33.899K (33899) - ProbeTime: 1.440ms - ProbeWhenBuildSideOutputTime: 41.111us - ProbeWhenProbeSideOutputTime: 3.10us - ProbeWhenProcessHashTableTime: 19.298us - ProbeWhenSearchHashTableTime: 437.484us - ProjectionTime: 58.993us - RowsProduced: 136 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 5.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.854us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 22.172us - ProjectionTime: 0ns - RowsProduced: 33.899K (33899) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=14):(Active: 2.215ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.964ms - CloseTime: 43.685us - GetBlockTime: 1.758ms - OpenTime: 5.850us - PrepareTime: 194.518us - SinkTime: 158.353us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.159ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.699ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.821us - CompressTime: 0ns - ExecTime: 245.869us - InputRows: 127 - LocalBytesSent: 6.39 KB - LocalSendTime: 58.109us - LocalSentRows: 127 - MemoryUsage: - PeakMemoryUsage: 13.69 KB - MergeBlockTime: 0ns - OpenTime: 75.338us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 127 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.414us - SplitBlockHashComputeTime: 6.684us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 110.780us - CloseTime: 8.280us - DeserializeAndMergeTime: 0ns - ExecTime: 189.67us - ExprTime: 5.725us - GetResultsTime: 30.887us - HashTableComputeTime: 51.119us - HashTableEmplaceTime: 36.88us - HashTableInputCount: 139 - HashTableIterateTime: 982ns - HashTableSize: 127 - InsertKeysToColumnTime: 11.459us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 29.793us - ProjectionTime: 0ns - RowsProduced: 127 - SerializeDataTime: 11.59us - SerializeKeyTime: 0ns - SerializeResultTime: 33.204us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 8.804us - ExecTime: 1.550ms - InitProbeSideTime: 893.576us - JoinFilterTimer: 401ns - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 16.428us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.526us - ProbeFindNextTime: 0ns - ProbeRows: 33.587K (33587) - ProbeTime: 1.441ms - ProbeWhenBuildSideOutputTime: 26.636us - ProbeWhenProbeSideOutputTime: 2.785us - ProbeWhenProcessHashTableTime: 20.659us - ProbeWhenSearchHashTableTime: 426.972us - ProjectionTime: 59.726us - RowsProduced: 139 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.448us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.28 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 22.305us - ProjectionTime: 0ns - RowsProduced: 33.587K (33587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=16):(Active: 6.372ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.126ms - CloseTime: 57.125us - GetBlockTime: 1.611ms - OpenTime: 5.58us - PrepareTime: 176.754us - SinkTime: 4.475ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.53ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.206ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.506us - CompressTime: 0ns - ExecTime: 4.560ms - InputRows: 117 - LocalBytesSent: 5.90 KB - LocalSendTime: 82.645us - LocalSentRows: 117 - MemoryUsage: - PeakMemoryUsage: 12.88 KB - MergeBlockTime: 0ns - OpenTime: 72.27us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 117 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 33.755us - SplitBlockHashComputeTime: 5.547us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 93.689us - CloseTime: 15.5us - DeserializeAndMergeTime: 0ns - ExecTime: 166.848us - ExprTime: 3.693us - GetResultsTime: 25.587us - HashTableComputeTime: 54.457us - HashTableEmplaceTime: 36.996us - HashTableInputCount: 129 - HashTableIterateTime: 725ns - HashTableSize: 117 - InsertKeysToColumnTime: 10.50us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 24.796us - ProjectionTime: 0ns - RowsProduced: 117 - SerializeDataTime: 7.995us - SerializeKeyTime: 0ns - SerializeResultTime: 27.442us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.457us - ExecTime: 1.425ms - InitProbeSideTime: 794.414us - JoinFilterTimer: 361ns - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 9.155us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.264us - ProbeFindNextTime: 0ns - ProbeRows: 33.999K (33999) - ProbeTime: 1.324ms - ProbeWhenBuildSideOutputTime: 21.198us - ProbeWhenProbeSideOutputTime: 2.155us - ProbeWhenProcessHashTableTime: 21.169us - ProbeWhenSearchHashTableTime: 427.327us - ProjectionTime: 54.940us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 10.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 108.469us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 27.746us - ProjectionTime: 0ns - RowsProduced: 33.999K (33999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=18):(Active: 2.168ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.943ms - CloseTime: 35.308us - GetBlockTime: 1.776ms - OpenTime: 6.175us - PrepareTime: 176.768us - SinkTime: 129.983us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.124ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.395ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.482us - CompressTime: 0ns - ExecTime: 197.794us - InputRows: 141 - LocalBytesSent: 7.15 KB - LocalSendTime: 45.385us - LocalSentRows: 141 - MemoryUsage: - PeakMemoryUsage: 14.81 KB - MergeBlockTime: 0ns - OpenTime: 58.733us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 141 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 29.261us - SplitBlockHashComputeTime: 6.730us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 100.512us - CloseTime: 12.638us - DeserializeAndMergeTime: 0ns - ExecTime: 170.950us - ExprTime: 3.909us - GetResultsTime: 27.595us - HashTableComputeTime: 58.11us - HashTableEmplaceTime: 41.568us - HashTableInputCount: 158 - HashTableIterateTime: 849ns - HashTableSize: 141 - InsertKeysToColumnTime: 11.667us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 22.847us - ProjectionTime: 0ns - RowsProduced: 141 - SerializeDataTime: 11.306us - SerializeKeyTime: 0ns - SerializeResultTime: 28.830us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 6.584us - ExecTime: 1.564ms - InitProbeSideTime: 872.372us - JoinFilterTimer: 389ns - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 15.321us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.191us - ProbeFindNextTime: 0ns - ProbeRows: 33.71K (33710) - ProbeTime: 1.459ms - ProbeWhenBuildSideOutputTime: 23.593us - ProbeWhenProbeSideOutputTime: 2.547us - ProbeWhenProcessHashTableTime: 30.840us - ProbeWhenSearchHashTableTime: 470.454us - ProjectionTime: 59.41us - RowsProduced: 158 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s406ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.284us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 11.36us - ProjectionTime: 0ns - RowsProduced: 33.71K (33710) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s794ms PipelineXTask (index=20):(Active: 2.370ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.44ms - CloseTime: 42.223us - GetBlockTime: 1.806ms - OpenTime: 11.135us - PrepareTime: 265.647us - SinkTime: 179.371us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.317ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 364.544ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.744us - CompressTime: 0ns - ExecTime: 331.971us - InputRows: 101 - LocalBytesSent: 5.12 KB - LocalSendTime: 78.697us - LocalSentRows: 101 - MemoryUsage: - PeakMemoryUsage: 11.00 KB - MergeBlockTime: 0ns - OpenTime: 139.304us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 101 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.802us - SplitBlockHashComputeTime: 5.954us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 110.689us - CloseTime: 8.137us - DeserializeAndMergeTime: 0ns - ExecTime: 219.514us - ExprTime: 4.968us - GetResultsTime: 45.585us - HashTableComputeTime: 66.878us - HashTableEmplaceTime: 48.950us - HashTableInputCount: 113 - HashTableIterateTime: 917ns - HashTableSize: 101 - InsertKeysToColumnTime: 14.284us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 45.503us - ProjectionTime: 0ns - RowsProduced: 101 - SerializeDataTime: 9.393us - SerializeKeyTime: 0ns - SerializeResultTime: 47.932us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 6.826us - ExecTime: 1.563ms - InitProbeSideTime: 922.798us - JoinFilterTimer: 511ns - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 14.447us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.556us - ProbeFindNextTime: 0ns - ProbeRows: 33.924K (33924) - ProbeTime: 1.428ms - ProbeWhenBuildSideOutputTime: 26.988us - ProbeWhenProbeSideOutputTime: 4.858us - ProbeWhenProcessHashTableTime: 14.263us - ProbeWhenSearchHashTableTime: 379.863us - ProjectionTime: 86.513us - RowsProduced: 113 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s109ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 8.987us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.632us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.33 MB - MemoryUsage: - Blocks: 1.33 MB - PeakMemoryUsage: 1.33 MB - OpenTime: 25.644us - ProjectionTime: 0ns - RowsProduced: 33.924K (33924) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s814ms PipelineXTask (index=22):(Active: 2.123ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.870ms - CloseTime: 33.823us - GetBlockTime: 1.691ms - OpenTime: 6.442us - PrepareTime: 206.637us - SinkTime: 142.118us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.81ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.30ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.971us - CompressTime: 0ns - ExecTime: 221.357us - InputRows: 146 - LocalBytesSent: 7.41 KB - LocalSendTime: 46.509us - LocalSentRows: 146 - MemoryUsage: - PeakMemoryUsage: 14.75 KB - MergeBlockTime: 0ns - OpenTime: 69.740us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 146 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 32.251us - SplitBlockHashComputeTime: 7.163us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 127.626us - CloseTime: 6.506us - DeserializeAndMergeTime: 0ns - ExecTime: 198.31us - ExprTime: 3.818us - GetResultsTime: 36.438us - HashTableComputeTime: 75.167us - HashTableEmplaceTime: 55.782us - HashTableInputCount: 164 - HashTableIterateTime: 880ns - HashTableSize: 146 - InsertKeysToColumnTime: 9.519us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 0ns - OpenTime: 19.754us - ProjectionTime: 0ns - RowsProduced: 146 - SerializeDataTime: 18.573us - SerializeKeyTime: 0ns - SerializeResultTime: 37.900us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 10.589us - ExecTime: 1.470ms - InitProbeSideTime: 772.759us - JoinFilterTimer: 340ns - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 14.349us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.392us - ProbeFindNextTime: 0ns - ProbeRows: 33.598K (33598) - ProbeTime: 1.355ms - ProbeWhenBuildSideOutputTime: 23.50us - ProbeWhenProbeSideOutputTime: 2.574us - ProbeWhenProcessHashTableTime: 19.526us - ProbeWhenSearchHashTableTime: 477.101us - ProjectionTime: 68.484us - RowsProduced: 164 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s408ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.30us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 84.954us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.29 MB - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 1.29 MB - OpenTime: 18.331us - ProjectionTime: 0ns - RowsProduced: 33.598K (33598) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s800ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 423.193us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 299.138us - CloseTime: 6.835us - GetBlockTime: 29.629us - OpenTime: 1.753us - PrepareTime: 110.325us - SinkTime: 237.207us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.767us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.491ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.264us - BuildRows: 148 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 50.103us - BuildTableInsertTime: 17.720us - BuildTableTime: 20.182us - CloseTime: 0ns - ExecTime: 296.200us - InputRows: 147 - MemoryUsage: - BuildBlocks: 13.34 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 23.06 KB - OpenTime: 60.891us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 114.834us - RuntimeFilterComputeTime: 7.110us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 5.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.506us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.00 KB - MemoryUsage: - Blocks: 11.75 KB - PeakMemoryUsage: 12.58 KB - OpenTime: 14.147us - ProjectionTime: 0ns - RowsProduced: 147 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s209ms PipelineXTask (index=3):(Active: 250.392us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 175.166us - CloseTime: 6.125us - GetBlockTime: 30.729us - OpenTime: 2.596us - PrepareTime: 61.788us - SinkTime: 109.229us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.145us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.706ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.635us - BuildRows: 123 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 35.150us - BuildTableInsertTime: 18.615us - BuildTableTime: 19.986us - CloseTime: 0ns - ExecTime: 129.866us - InputRows: 122 - MemoryUsage: - BuildBlocks: 11.07 KB - BuildKeyArena: 4.00 KB - HashTable: 1.60 KB - PeakMemoryUsage: 12.67 KB - OpenTime: 22.62us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.659us - RuntimeFilterComputeTime: 6.504us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 5.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 48.650us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.75 KB - MemoryUsage: - Blocks: 11.75 KB - PeakMemoryUsage: 12.58 KB - OpenTime: 16.205us - ProjectionTime: 0ns - RowsProduced: 122 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s201ms PipelineXTask (index=5):(Active: 282.619us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 186.756us - CloseTime: 6.638us - GetBlockTime: 22.206us - OpenTime: 3.20us - PrepareTime: 80.392us - SinkTime: 140.755us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 267.978us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.258ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.635us - BuildRows: 128 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 34.512us - BuildTableInsertTime: 25.917us - BuildTableTime: 28.481us - CloseTime: 0ns - ExecTime: 183.750us - InputRows: 127 - MemoryUsage: - BuildBlocks: 11.53 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 21.16 KB - OpenTime: 43.645us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.75us - RuntimeFilterComputeTime: 10.676us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 5.372us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.418us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.69 KB - MemoryUsage: - Blocks: 17.69 KB - PeakMemoryUsage: 18.52 KB - OpenTime: 13.448us - ProjectionTime: 0ns - RowsProduced: 127 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s169ms PipelineXTask (index=7):(Active: 240.97us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 141.375us - CloseTime: 4.816us - GetBlockTime: 13.503us - OpenTime: 9.577us - PrepareTime: 77.842us - SinkTime: 98.488us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 226.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.870ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 744ns - BuildRows: 130 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.75us - BuildTableInsertTime: 25.563us - BuildTableTime: 26.899us - CloseTime: 0ns - ExecTime: 110.539us - InputRows: 129 - MemoryUsage: - BuildBlocks: 11.72 KB - BuildKeyArena: 12.00 KB - HashTable: 1.64 KB - PeakMemoryUsage: 21.35 KB - OpenTime: 12.758us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.318us - RuntimeFilterComputeTime: 24.120us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.1us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.688us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.94 KB - MemoryUsage: - Blocks: 18.94 KB - PeakMemoryUsage: 19.77 KB - OpenTime: 40.381us - ProjectionTime: 0ns - RowsProduced: 129 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s169ms PipelineXTask (index=9):(Active: 201.951us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 96.509us - CloseTime: 5.35us - GetBlockTime: 12.424us - OpenTime: 2.685us - PrepareTime: 92.564us - SinkTime: 60.526us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 189.349us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.214ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 561ns - BuildRows: 112 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.102us - BuildTableInsertTime: 16.259us - BuildTableTime: 17.116us - CloseTime: 0ns - ExecTime: 96.192us - InputRows: 111 - MemoryUsage: - BuildBlocks: 10.08 KB - BuildKeyArena: 4.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 11.62 KB - OpenTime: 36.67us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.896us - RuntimeFilterComputeTime: 5.879us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.567us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.161us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.25 KB - MemoryUsage: - Blocks: 15.25 KB - PeakMemoryUsage: 16.08 KB - OpenTime: 19.934us - ProjectionTime: 0ns - RowsProduced: 111 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s163ms PipelineXTask (index=11):(Active: 154.732us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 90.989us - CloseTime: 2.617us - GetBlockTime: 12.253us - OpenTime: 2.240us - PrepareTime: 53.744us - SinkTime: 59.487us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 145.629us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.328ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 691ns - BuildRows: 157 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.413us - BuildTableInsertTime: 12.669us - BuildTableTime: 13.641us - CloseTime: 0ns - ExecTime: 76.401us - InputRows: 156 - MemoryUsage: - BuildBlocks: 14.17 KB - BuildKeyArena: 12.00 KB - HashTable: 1.77 KB - PeakMemoryUsage: 23.93 KB - OpenTime: 17.235us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.410us - RuntimeFilterComputeTime: 5.881us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.226us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.638us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.56 KB - MemoryUsage: - Blocks: 22.56 KB - PeakMemoryUsage: 23.39 KB - OpenTime: 17.660us - ProjectionTime: 0ns - RowsProduced: 156 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s163ms PipelineXTask (index=13):(Active: 183.392us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 103.450us - CloseTime: 2.329us - GetBlockTime: 15.73us - OpenTime: 3.243us - PrepareTime: 68.991us - SinkTime: 61.785us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 173.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.170ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 665ns - BuildRows: 137 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.527us - BuildTableInsertTime: 16.198us - BuildTableTime: 17.90us - CloseTime: 0ns - ExecTime: 82.789us - InputRows: 136 - MemoryUsage: - BuildBlocks: 12.35 KB - BuildKeyArena: 12.00 KB - HashTable: 1.67 KB - PeakMemoryUsage: 22.02 KB - OpenTime: 21.404us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.337us - RuntimeFilterComputeTime: 6.71us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 1.880us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.406us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.94 KB - MemoryUsage: - Blocks: 18.94 KB - PeakMemoryUsage: 19.77 KB - OpenTime: 26.397us - ProjectionTime: 0ns - RowsProduced: 136 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s169ms PipelineXTask (index=15):(Active: 174.938us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 99.603us - CloseTime: 2.83us - GetBlockTime: 10.736us - OpenTime: 1.940us - PrepareTime: 66.191us - SinkTime: 69.63us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 166.137us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.511ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 603ns - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.103us - BuildTableInsertTime: 17.786us - BuildTableTime: 18.497us - CloseTime: 0ns - ExecTime: 88.934us - InputRows: 139 - MemoryUsage: - BuildBlocks: 12.62 KB - BuildKeyArena: 12.00 KB - HashTable: 1.69 KB - PeakMemoryUsage: 22.30 KB - OpenTime: 20.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.650us - RuntimeFilterComputeTime: 6.972us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 1.734us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.469us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.69 KB - MemoryUsage: - Blocks: 19.69 KB - PeakMemoryUsage: 20.52 KB - OpenTime: 9.726us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s163ms PipelineXTask (index=17):(Active: 190.60us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 124.362us - CloseTime: 4.279us - GetBlockTime: 10.548us - OpenTime: 2.618us - PrepareTime: 53.428us - SinkTime: 93.545us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 178.705us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.327ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 925ns - BuildRows: 130 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.57us - BuildTableInsertTime: 31.563us - BuildTableTime: 32.866us - CloseTime: 0ns - ExecTime: 114.256us - InputRows: 129 - MemoryUsage: - BuildBlocks: 11.72 KB - BuildKeyArena: 12.00 KB - HashTable: 1.64 KB - PeakMemoryUsage: 21.35 KB - OpenTime: 21.202us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.661us - RuntimeFilterComputeTime: 6.66us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 3.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.31 KB - MemoryUsage: - Blocks: 17.31 KB - PeakMemoryUsage: 18.14 KB - OpenTime: 11.62us - ProjectionTime: 0ns - RowsProduced: 129 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s169ms PipelineXTask (index=19):(Active: 175.305us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 113.157us - CloseTime: 4.104us - GetBlockTime: 19.603us - OpenTime: 3.240us - PrepareTime: 49.837us - SinkTime: 71.872us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 164.11us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.442ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 730ns - BuildRows: 159 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.10us - BuildTableInsertTime: 21.161us - BuildTableTime: 22.72us - CloseTime: 0ns - ExecTime: 84.759us - InputRows: 158 - MemoryUsage: - BuildBlocks: 14.35 KB - BuildKeyArena: 12.00 KB - HashTable: 1.78 KB - PeakMemoryUsage: 24.12 KB - OpenTime: 13.129us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.563us - RuntimeFilterComputeTime: 7.463us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 3.640us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.5us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.19 KB - MemoryUsage: - Blocks: 24.19 KB - PeakMemoryUsage: 25.02 KB - OpenTime: 12.982us - ProjectionTime: 0ns - RowsProduced: 158 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s169ms PipelineXTask (index=21):(Active: 219.329us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 147.116us - CloseTime: 3.797us - GetBlockTime: 36.84us - OpenTime: 3.554us - PrepareTime: 59.804us - SinkTime: 80.661us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 207.327us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.527ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.94us - BuildRows: 114 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.541us - BuildTableInsertTime: 13.698us - BuildTableTime: 14.591us - CloseTime: 0ns - ExecTime: 100.515us - InputRows: 113 - MemoryUsage: - BuildBlocks: 10.26 KB - BuildKeyArena: 4.00 KB - HashTable: 1.56 KB - PeakMemoryUsage: 11.82 KB - OpenTime: 21.712us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.824us - RuntimeFilterComputeTime: 5.98us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 3.240us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.283us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.94 KB - MemoryUsage: - Blocks: 7.75 KB - PeakMemoryUsage: 8.58 KB - OpenTime: 9.222us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s201ms PipelineXTask (index=23):(Active: 256.762us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 142.200us - CloseTime: 13.224us - GetBlockTime: 14.291us - OpenTime: 4.83us - PrepareTime: 91.751us - SinkTime: 93.827us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 232.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.547ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 876ns - BuildRows: 165 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 39.325us - BuildTableInsertTime: 17.227us - BuildTableTime: 18.27us - CloseTime: 0ns - ExecTime: 147.531us - InputRows: 164 - MemoryUsage: - BuildBlocks: 14.89 KB - BuildKeyArena: 12.00 KB - HashTable: 1.81 KB - PeakMemoryUsage: 24.70 KB - OpenTime: 54.793us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.869us - RuntimeFilterComputeTime: 6.443us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 12.759us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.471us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.19 KB - MemoryUsage: - Blocks: 12.75 KB - PeakMemoryUsage: 13.58 KB - OpenTime: 18.851us - ProjectionTime: 0ns - RowsProduced: 164 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s213ms Fragment 131: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 47.676ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 47.123ms - CloseTime: 33.261us - GetBlockTime: 625.382us - OpenTime: 189.826us - PrepareTime: 318.201us - SinkTime: 46.5ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.571ms - WaitBfTime: 1s527ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 914.79ms DATA_STREAM_SINK_OPERATOR (id=55,dst_id=55): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 103 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.547us - CompressTime: 0ns - ExecTime: 46.56ms - InputRows: 405.258K (405258) - LocalBytesSent: 12.75 MB - LocalSendTime: 535.709us - LocalSentRows: 405.258K (405258) - MemoryUsage: - PeakMemoryUsage: 15.53 MB - MergeBlockTime: 0ns - OpenTime: 68.686us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 405.258K (405258) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.107ms - SplitBlockHashComputeTime: 13.888ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=54. table name = DIM_OPENID_B): - RuntimeFilters: : RuntimeFilter: (id = 24, type = minmax), RuntimeFilter: (id = 25, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.20us - BlocksProduced: 100 - CloseTime: 15.549us - ExecTime: 30.430ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 358.426us - ProcessConjunctTime: 34.876us - ProjectionTime: 0ns - RowsProduced: 405.258K (405258) - RowsRead: 405.258K (405258) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 15.221ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 29.465ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 24, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 25, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [13.390ms, ] - PerScannerRowsRead: [405.26K, ] - PerScannerWaitTime: [15.221ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 13.68ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 653.61us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.728us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.102ms - ScannerCtxSchedTime: 15.217ms - ScannerFilterTime: 35.47us - ScannerGetBlockTime: 13.297ms - ScannerInitTime: 117.694us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 497ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.39us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 16.770us - BlockLoadTime: 13.587ms - BlocksLoad: 101 - CachedPagesNum: 186 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 100 - FirstReadSeekTime: 425.881us - FirstReadTime: 13.254ms - IOTimer: 0ns - InvertedIndexFilterTime: 557ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 16.748us - OutputIndexResultColumnTimer: 11.332us - RawRowsRead: 405.258K (405258) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 186 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 132: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.7ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.685ms - CloseTime: 26.172us - GetBlockTime: 2.132ms - OpenTime: 9.250us - PrepareTime: 277.396us - SinkTime: 494.637us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.969ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 653.418ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.608us - CompressTime: 0ns - ExecTime: 607.946us - InputRows: 685 - LocalBytesSent: 62.21 KB - LocalSendTime: 107.786us - LocalSentRows: 685 - MemoryUsage: - PeakMemoryUsage: 92.00 KB - MergeBlockTime: 0ns - OpenTime: 103.691us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 685 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 226.951us - SplitBlockHashComputeTime: 34.276us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 9.859us - ExecTime: 2.97ms - InitProbeSideTime: 307.385us - JoinFilterTimer: 956ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 15.381us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.963us - ProbeFindNextTime: 0ns - ProbeRows: 5.096K (5096) - ProbeTime: 1.956ms - ProbeWhenBuildSideOutputTime: 595.505us - ProbeWhenProbeSideOutputTime: 29.996us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 906.201us - ProjectionTime: 93.840us - RowsProduced: 685 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s948ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 51.477us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 852.00 KB - OpenTime: 893ns - ProjectionTime: 0ns - RowsProduced: 5.096K (5096) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s531ms PipelineXTask (index=3):(Active: 3.1ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.844ms - CloseTime: 24.714us - GetBlockTime: 2.285ms - OpenTime: 6.210us - PrepareTime: 120.740us - SinkTime: 505.962us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.968ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.601ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.407us - CompressTime: 0ns - ExecTime: 586.728us - InputRows: 905 - LocalBytesSent: 82.18 KB - LocalSendTime: 86.164us - LocalSentRows: 905 - MemoryUsage: - PeakMemoryUsage: 130.00 KB - MergeBlockTime: 0ns - OpenTime: 69.539us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 905 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 231.475us - SplitBlockHashComputeTime: 42.253us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 7.848us - ExecTime: 2.236ms - InitProbeSideTime: 292.351us - JoinFilterTimer: 1.66us - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 15.394us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.266us - ProbeFindNextTime: 0ns - ProbeRows: 5.842K (5842) - ProbeTime: 2.133ms - ProbeWhenBuildSideOutputTime: 738.424us - ProbeWhenProbeSideOutputTime: 39.935us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 964.214us - ProjectionTime: 54.332us - RowsProduced: 905 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s464ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 61.875us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 848.00 KB - OpenTime: 706ns - ProjectionTime: 0ns - RowsProduced: 5.842K (5842) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s518ms PipelineXTask (index=6):(Active: 728.534us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 544.358us - CloseTime: 20.842us - GetBlockTime: 308.862us - OpenTime: 6.14us - PrepareTime: 150.922us - SinkTime: 192.325us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 697.600us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 300.802ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.476us - CompressTime: 0ns - ExecTime: 308.112us - InputRows: 41 - LocalBytesSent: 3.72 KB - LocalSendTime: 77.88us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 9.44 KB - MergeBlockTime: 0ns - OpenTime: 105.491us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 41 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.856us - SplitBlockHashComputeTime: 7.730us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 6.576us - ExecTime: 301.447us - InitProbeSideTime: 46.872us - JoinFilterTimer: 152ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 12.420us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 842ns - ProbeFindNextTime: 0ns - ProbeRows: 312 - ProbeTime: 234.198us - ProbeWhenBuildSideOutputTime: 57.963us - ProbeWhenProbeSideOutputTime: 7.213us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 83.423us - ProjectionTime: 39.539us - RowsProduced: 41 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s364ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 4 - CloseTime: 0ns - ExecTime: 23.854us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 240.00 KB - OpenTime: 616ns - ProjectionTime: 0ns - RowsProduced: 312 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s567ms PipelineXTask (index=9):(Active: 270.104us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 129.353us - CloseTime: 18.916us - GetBlockTime: 20.248us - OpenTime: 5.583us - PrepareTime: 110.579us - SinkTime: 79.167us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 243.923us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.964ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.625us - CompressTime: 0ns - ExecTime: 164.483us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 40.741us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.988us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 273ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.901us - ExecTime: 32.438us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.572us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.904us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.494us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.697us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 814ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s917ms PipelineXTask (index=12):(Active: 273.950us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 121.916us - CloseTime: 11.540us - GetBlockTime: 9.935us - OpenTime: 4.850us - PrepareTime: 129.858us - SinkTime: 88.999us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 255.144us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.860ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.608us - CompressTime: 0ns - ExecTime: 164.59us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.656us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.880us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 257ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.703us - ExecTime: 21.477us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.641us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.747us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.131us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.594us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 862ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s923ms PipelineXTask (index=15):(Active: 237.859us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 116.851us - CloseTime: 11.177us - GetBlockTime: 8.766us - OpenTime: 4.240us - PrepareTime: 99.556us - SinkTime: 85.145us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 219.35us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.210ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.795us - CompressTime: 0ns - ExecTime: 154.250us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.61us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.540us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 411ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.421us - ExecTime: 19.66us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.926us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.360us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 3.975us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.250us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 751ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s917ms PipelineXTask (index=18):(Active: 265.286us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 120.676us - CloseTime: 11.114us - GetBlockTime: 9.1us - OpenTime: 4.560us - PrepareTime: 123.210us - SinkTime: 89.430us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 247.186us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.92ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.901us - CompressTime: 0ns - ExecTime: 166.259us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.770us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 68.228us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 269ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.289us - ExecTime: 21.325us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.78us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 3.798us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.361us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 779ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s923ms PipelineXTask (index=21):(Active: 353.147us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 119.879us - CloseTime: 10.456us - GetBlockTime: 8.272us - OpenTime: 4.203us - PrepareTime: 211.584us - SinkTime: 90.507us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 334.871us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.432ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.256us - CompressTime: 0ns - ExecTime: 252.742us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 44.217us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 154.206us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 221ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.231us - ExecTime: 29.654us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.149us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.20us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 3.836us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s293ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.634us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 932ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s917ms PipelineXTask (index=24):(Active: 337.647us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 175.425us - CloseTime: 17.301us - GetBlockTime: 25.695us - OpenTime: 7.196us - PrepareTime: 131.898us - SinkTime: 108.201us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 310.342us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.928ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.833us - CompressTime: 0ns - ExecTime: 195.484us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 55.317us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 75.885us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 476ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.247us - ExecTime: 40.983us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.122us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.939us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.809us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s146ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.456us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 892ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s926ms PipelineXTask (index=27):(Active: 319.110us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 162.888us - CloseTime: 15.526us - GetBlockTime: 41.716us - OpenTime: 7.652us - PrepareTime: 126.733us - SinkTime: 86.637us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 295.781us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.818ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.207us - CompressTime: 0ns - ExecTime: 178.708us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.766us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.310us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 722ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.771us - ExecTime: 44.416us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.484us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.329us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 24.537us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s96ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 12.100us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 662ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s929ms PipelineXTask (index=30):(Active: 440.813us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 270.512us - CloseTime: 32.105us - GetBlockTime: 24.759us - OpenTime: 7.960us - PrepareTime: 123.914us - SinkTime: 197.841us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 397.136us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.919ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.101us - CompressTime: 0ns - ExecTime: 288.993us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 114.895us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.532us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 414ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.259us - ExecTime: 38.60us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.977us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.365us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s996ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.46us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 810ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s936ms PipelineXTask (index=33):(Active: 351.35us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 144.233us - CloseTime: 17.679us - GetBlockTime: 17.999us - OpenTime: 7.576us - PrepareTime: 175.374us - SinkTime: 87.634us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 323.738us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.896ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.345us - CompressTime: 0ns - ExecTime: 215.211us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 42.788us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 115.466us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 197ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.94us - ExecTime: 30.563us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.929us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.675us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.932us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s190ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.745us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 759ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s939ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.21ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 462.61us - CloseTime: 129.690us - GetBlockTime: 113.10us - OpenTime: 265.396us - PrepareTime: 156.931us - SinkTime: 46.681us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 879.635us - WaitBfTime: 1s292ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 735.962ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 45.850us - InputRows: 303 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.150us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.397us - BlocksProduced: 3 - CloseTime: 126.76us - ExecTime: 44.213ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 358.393us - ProcessConjunctTime: 75.46us - ProjectionTime: 589.686us - RowsProduced: 303 - RowsRead: 303 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.33ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 42.982ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [177.745ms, 244.525ms, 15.527ms, ] - PerScannerRowsRead: [71, 154, 78, ] - PerScannerWaitTime: [1.196ms, 2.010ms, 2.826ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 337.926ms - MemoryUsage: - FreeBlocks: 300.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 6.893ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 292ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 182.426ms - ScannerCtxSchedTime: 6.30ms - ScannerFilterTime: 143.708us - ScannerGetBlockTime: 437.524ms - ScannerInitTime: 127.379us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 5.389us - BlockConditionsFilteredBloomFilterTime: 5.347us - BlockConditionsFilteredDictTime: 27.894us - BlockConditionsFilteredTime: 197.75us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 51.321us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 292.832us - BlockLoadTime: 344.27ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 502 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 101.34ms - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 949.157us - FirstReadTime: 88.590ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.0us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 138.989ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 6.389ms - OutputIndexResultColumnTimer: 52.216us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 4.231315M (4231315) - RowsVectorPredInput: 4.799089M (4799089) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 129.435ms - ShortPredEvalTime: 37.820us - TotalPagesNum: 502 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.428ms PipelineXTask (index=4):(Active: 796.243us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 340.379us - CloseTime: 93.722us - GetBlockTime: 82.311us - OpenTime: 207.562us - PrepareTime: 147.500us - SinkTime: 24.698us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 693.451us - WaitBfTime: 1s12ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 465.411ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 24.677us - InputRows: 273 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.237us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.375us - BlocksProduced: 3 - CloseTime: 90.713us - ExecTime: 201.434ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 293.907us - ProcessConjunctTime: 59.29us - ProjectionTime: 517.791us - RowsProduced: 273 - RowsRead: 273 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 385.681ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 200.409ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [90.020ms, 68.930ms, 141.780ms, ] - PerScannerRowsRead: [42, 192, 39, ] - PerScannerWaitTime: [127.646ms, 128.889ms, 129.145ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 300.18ms - MemoryUsage: - FreeBlocks: 364.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.275ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 169ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 178.655ms - ScannerCtxSchedTime: 385.674ms - ScannerFilterTime: 112.957us - ScannerGetBlockTime: 300.515ms - ScannerInitTime: 107.38us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 3.991us - BlockConditionsFilteredBloomFilterTime: 5.550us - BlockConditionsFilteredDictTime: 26.360us - BlockConditionsFilteredTime: 158.213us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 43.133us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 239.15us - BlockLoadTime: 303.329ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 481 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 128.586ms - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 509.507us - FirstReadTime: 91.184ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.18us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.641ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 6.106ms - OutputIndexResultColumnTimer: 44.423us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 4.233012M (4233012) - RowsVectorPredInput: 4.79901M (4799010) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 62.470ms - ShortPredEvalTime: 43.958us - TotalPagesNum: 481 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.329ms PipelineXTask (index=7):(Active: 705.513us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 263.425us - CloseTime: 96.836us - GetBlockTime: 104.413us - OpenTime: 117.822us - PrepareTime: 218.866us - SinkTime: 19.306us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 598.58us - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 801.289ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.169us - InputRows: 248 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.44us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.105us - BlocksProduced: 2 - CloseTime: 93.535us - ExecTime: 153.751ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 209.727us - ProcessConjunctTime: 32.376us - ProjectionTime: 617.450us - RowsProduced: 248 - RowsRead: 248 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.214ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 152.703ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [168.779ms, 145.251ms, ] - PerScannerRowsRead: [154, 94, ] - PerScannerWaitTime: [3.531ms, 3.682ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 310.699ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 43.155ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.752ms - ScannerCtxSchedTime: 7.210ms - ScannerFilterTime: 152.616us - ScannerGetBlockTime: 313.745ms - ScannerInitTime: 47.728us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 19.139us - BlockConditionsFilteredBloomFilterTime: 10.617us - BlockConditionsFilteredDictTime: 41.398us - BlockConditionsFilteredTime: 219.752us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.944us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 308.521us - BlockLoadTime: 315.938ms - BlocksLoad: 863 - CachedPagesNum: 191 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 73.485ms - FirstReadSeekCount: 856 - FirstReadSeekTime: 693.505us - FirstReadTime: 54.483ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.689us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 153.427ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 3.256ms - OutputIndexResultColumnTimer: 19.63ms - RawRowsRead: 3.472159M (3472159) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 5 - RowsDictFiltered: 5 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 3.2595M (3259500) - RowsVectorPredInput: 3.472159M (3472159) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 145.463ms - ShortPredEvalTime: 34.671us - TotalPagesNum: 191 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.742ms PipelineXTask (index=10):(Active: 687.783us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 280.607us - CloseTime: 84.548us - GetBlockTime: 92.207us - OpenTime: 153.567us - PrepareTime: 160.253us - SinkTime: 11.586us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 593.988us - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 868.507ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 12.758us - InputRows: 240 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.206us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.769us - BlocksProduced: 2 - CloseTime: 81.661us - ExecTime: 56.32ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 262.914us - ProcessConjunctTime: 18.322us - ProjectionTime: 508.160us - RowsProduced: 240 - RowsRead: 240 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.222ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 55.69ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [142.710ms, 48.408ms, ] - PerScannerRowsRead: [156, 84, ] - PerScannerWaitTime: [5.088ms, 5.134ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 189.75ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 43.68ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 124ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 114.828ms - ScannerCtxSchedTime: 10.220ms - ScannerFilterTime: 116.22us - ScannerGetBlockTime: 190.910ms - ScannerInitTime: 114.400us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 3.788us - BlockConditionsFilteredBloomFilterTime: 5.831us - BlockConditionsFilteredDictTime: 28.533us - BlockConditionsFilteredTime: 132.304us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.240us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 200.439us - BlockLoadTime: 232.726ms - BlocksLoad: 861 - CachedPagesNum: 187 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 32.479ms - FirstReadSeekCount: 856 - FirstReadSeekTime: 437.758us - FirstReadTime: 44.965ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.176us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 146.611ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 2.653ms - OutputIndexResultColumnTimer: 29.806us - RawRowsRead: 3.472122M (3472122) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 4 - RowsDictFiltered: 4 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 3.25917M (3259170) - RowsVectorPredInput: 3.472122M (3472122) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 48.162ms - ShortPredEvalTime: 25.619us - TotalPagesNum: 187 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.901ms PipelineXTask (index=13):(Active: 465.693us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 167.293us - CloseTime: 29.356us - GetBlockTime: 54.42us - OpenTime: 61.789us - PrepareTime: 198.190us - SinkTime: 26.87us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 426.118us - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 810.542ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 26.458us - InputRows: 562 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.231us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.659us - BlocksProduced: 2 - CloseTime: 28.344us - ExecTime: 243.343ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 175.376us - ProcessConjunctTime: 20.473us - ProjectionTime: 22.813ms - RowsProduced: 562 - RowsRead: 562 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.83ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 220.244ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [128.388ms, ] - PerScannerRowsRead: [562, ] - PerScannerWaitTime: [8.083ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.482ms - MemoryUsage: - FreeBlocks: 124.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 59.801ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 256ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 70.259ms - ScannerCtxSchedTime: 8.80ms - ScannerFilterTime: 187.637us - ScannerGetBlockTime: 128.64ms - ScannerInitTime: 24.113us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.74us - BlockConditionsFilteredBloomFilterTime: 2.78us - BlockConditionsFilteredDictTime: 8.870us - BlockConditionsFilteredTime: 52.363us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.120us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 74.728us - BlockLoadTime: 128.407ms - BlocksLoad: 558 - CachedPagesNum: 384 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 23.76ms - FirstReadSeekCount: 557 - FirstReadSeekTime: 130.111us - FirstReadTime: 69.390ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.26us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.889ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.621ms - OutputIndexResultColumnTimer: 27.118us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 2.157574M (2157574) - RowsVectorPredInput: 2.259795M (2259795) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 20.118ms - ShortPredEvalTime: 25.164us - TotalPagesNum: 384 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.900ms PipelineXTask (index=16):(Active: 556.547us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 215.553us - CloseTime: 50.36us - GetBlockTime: 50.22us - OpenTime: 132.869us - PrepareTime: 149.229us - SinkTime: 6.423us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 496.159us - WaitBfTime: 1s434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 873.165ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.936us - InputRows: 563 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.43us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.504us - BlocksProduced: 2 - CloseTime: 49.57us - ExecTime: 152.448ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 229.88us - ProcessConjunctTime: 15.62us - ProjectionTime: 834.418us - RowsProduced: 563 - RowsRead: 563 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.597ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 151.246ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [140.685ms, ] - PerScannerRowsRead: [563, ] - PerScannerWaitTime: [7.597ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 139.777ms - MemoryUsage: - FreeBlocks: 124.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 886.574us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 281ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 76.545ms - ScannerCtxSchedTime: 7.594ms - ScannerFilterTime: 178.950us - ScannerGetBlockTime: 140.383ms - ScannerInitTime: 81.112us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 958ns - BlockConditionsFilteredBloomFilterTime: 1.188us - BlockConditionsFilteredDictTime: 5.578us - BlockConditionsFilteredTime: 30.685us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.127us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 44.536us - BlockLoadTime: 122.311ms - BlocksLoad: 558 - CachedPagesNum: 375 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 41.540ms - FirstReadSeekCount: 557 - FirstReadSeekTime: 136.660us - FirstReadTime: 41.680ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.40us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 32.794ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.783ms - OutputIndexResultColumnTimer: 25.661us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 2.157283M (2157283) - RowsVectorPredInput: 2.259785M (2259785) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 22.43ms - ShortPredEvalTime: 27.440us - TotalPagesNum: 375 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.51ms PipelineXTask (index=19):(Active: 590.231us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 263.648us - CloseTime: 65.477us - GetBlockTime: 99.199us - OpenTime: 99.851us - PrepareTime: 152.692us - SinkTime: 34.281us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 515.436us - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 831.332ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 32.970us - InputRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.83us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.365us - BlocksProduced: 2 - CloseTime: 62.294us - ExecTime: 142.951ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 197.952us - ProcessConjunctTime: 27.943us - ProjectionTime: 421.441us - RowsProduced: 4.236K (4236) - RowsRead: 4.236K (4236) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.454ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.149ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [124.438ms, ] - PerScannerRowsRead: [4.24K, ] - PerScannerWaitTime: [8.454ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 123.931ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 866.749us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 209ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 34.591ms - ScannerCtxSchedTime: 8.450ms - ScannerFilterTime: 89.719us - ScannerGetBlockTime: 124.274ms - ScannerInitTime: 51.220us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 546ns - BlockConditionsFilteredBloomFilterTime: 927ns - BlockConditionsFilteredDictTime: 5.417us - BlockConditionsFilteredTime: 19.394us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.344us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 28.969us - BlockLoadTime: 124.606ms - BlocksLoad: 217 - CachedPagesNum: 258 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.270ms - FirstReadSeekCount: 216 - FirstReadSeekTime: 53.769us - FirstReadTime: 6.434ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.224us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 112.796ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 477.569us - OutputIndexResultColumnTimer: 8.23us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 843.428K (843428) - RowsVectorPredInput: 876.719K (876719) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 89.261ms - ShortPredEvalTime: 6.600us - TotalPagesNum: 258 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 721.550us PipelineXTask (index=22):(Active: 461.662us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 197.247us - CloseTime: 53.683us - GetBlockTime: 90.804us - OpenTime: 61.876us - PrepareTime: 141.636us - SinkTime: 19.155us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 399.537us - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 881.672ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 18.960us - InputRows: 4.235K (4235) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.142us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.508us - BlocksProduced: 2 - CloseTime: 50.381us - ExecTime: 143.625ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 144.367us - ProcessConjunctTime: 18.61us - ProjectionTime: 636.470us - RowsProduced: 4.235K (4235) - RowsRead: 4.235K (4235) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.635ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.672ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [128.991ms, ] - PerScannerRowsRead: [4.24K, ] - PerScannerWaitTime: [10.635ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 128.279ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.210ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 305ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.821ms - ScannerCtxSchedTime: 10.631ms - ScannerFilterTime: 156.15us - ScannerGetBlockTime: 128.728ms - ScannerInitTime: 26.178us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 722ns - BlockConditionsFilteredBloomFilterTime: 1.230us - BlockConditionsFilteredDictTime: 6.677us - BlockConditionsFilteredTime: 24.792us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.814us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 35.123us - BlockLoadTime: 129.184ms - BlocksLoad: 217 - CachedPagesNum: 255 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.58ms - FirstReadSeekCount: 216 - FirstReadSeekTime: 74.119us - FirstReadTime: 27.748ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.660us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 94.671ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 653.715us - OutputIndexResultColumnTimer: 11.766us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 843.19K (843190) - RowsVectorPredInput: 876.727K (876727) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 6.147ms - ShortPredEvalTime: 8.250us - TotalPagesNum: 255 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 836.185us PipelineXTask (index=25):(Active: 698.896us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 283.253us - CloseTime: 98.663us - GetBlockTime: 79.628us - OpenTime: 153.662us - PrepareTime: 155.840us - SinkTime: 25.339us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 590.304us - WaitBfTime: 1s506ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 873.462ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 24.953us - InputRows: 141 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.232us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.13us - BlocksProduced: 2 - CloseTime: 92.513us - ExecTime: 80.504ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 251.291us - ProcessConjunctTime: 44.951us - ProjectionTime: 368.575us - RowsProduced: 141 - RowsRead: 141 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 27.883ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 79.699ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [88.537ms, 61.919ms, ] - PerScannerRowsRead: [107, 34, ] - PerScannerWaitTime: [13.820ms, 14.062ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 149.896ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.18ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 187ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 152.997ms - ScannerCtxSchedTime: 27.878ms - ScannerFilterTime: 80.745us - ScannerGetBlockTime: 150.285ms - ScannerInitTime: 84.692us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 2.814us - BlockConditionsFilteredBloomFilterTime: 3.64us - BlockConditionsFilteredDictTime: 16.681us - BlockConditionsFilteredTime: 101.904us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.619us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 137.694us - BlockLoadTime: 154.347ms - BlocksLoad: 838 - CachedPagesNum: 344 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 25.45ms - FirstReadSeekCount: 836 - FirstReadSeekTime: 340.760us - FirstReadTime: 49.524ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.641us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 67.253ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 5.200ms - OutputIndexResultColumnTimer: 34.263us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 2.962427M (2962427) - RowsVectorPredInput: 3.39021M (3390210) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 63.213ms - ShortPredEvalTime: 28.184us - TotalPagesNum: 344 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.314ms PipelineXTask (index=28):(Active: 671.320us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 219.108us - CloseTime: 75.298us - GetBlockTime: 67.759us - OpenTime: 108.30us - PrepareTime: 258.767us - SinkTime: 16.959us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 586.65us - WaitBfTime: 1s17ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 673.423ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.160us - InputRows: 143 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.965us - BlocksProduced: 2 - CloseTime: 72.970us - ExecTime: 192.646ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 207.360us - ProcessConjunctTime: 34.980us - ProjectionTime: 291.767us - RowsProduced: 143 - RowsRead: 143 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 271.748ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.991ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [82.321ms, 54.082ms, ] - PerScannerRowsRead: [105, 38, ] - PerScannerWaitTime: [135.738ms, 136.010ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 135.958ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.178ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 212ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 140.544ms - ScannerCtxSchedTime: 271.742ms - ScannerFilterTime: 68.601us - ScannerGetBlockTime: 136.264ms - ScannerInitTime: 50.141us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 4.459us - BlockConditionsFilteredBloomFilterTime: 3.338us - BlockConditionsFilteredDictTime: 29.764us - BlockConditionsFilteredTime: 113.311us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.800us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 151.448us - BlockLoadTime: 138.533ms - BlocksLoad: 838 - CachedPagesNum: 345 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.921ms - FirstReadSeekCount: 836 - FirstReadSeekTime: 272.476us - FirstReadTime: 46.39ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.112us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 59.928ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 4.437ms - OutputIndexResultColumnTimer: 28.123us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 2.961542M (2961542) - RowsVectorPredInput: 3.389621M (3389621) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 55.584ms - ShortPredEvalTime: 26.388us - TotalPagesNum: 345 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.127ms PipelineXTask (index=31):(Active: 624.53us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 262.775us - CloseTime: 120.75us - GetBlockTime: 108.610us - OpenTime: 95.177us - PrepareTime: 137.677us - SinkTime: 31.215us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 493.162us - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 713.589ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 30.967us - InputRows: 149 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.112us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.998us - BlocksProduced: 3 - CloseTime: 117.661us - ExecTime: 45.41ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 180.328us - ProcessConjunctTime: 15.228us - ProjectionTime: 383.717us - RowsProduced: 149 - RowsRead: 149 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 31.208ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 44.238ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [174.573ms, 90.151ms, 31.348ms, ] - PerScannerRowsRead: [56, 67, 26, ] - PerScannerWaitTime: [9.756ms, 10.108ms, 11.342ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 292.771ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.534ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 183ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 212.185ms - ScannerCtxSchedTime: 31.203ms - ScannerFilterTime: 72.968us - ScannerGetBlockTime: 295.921ms - ScannerInitTime: 57.438us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 4.328us - BlockConditionsFilteredBloomFilterTime: 5.525us - BlockConditionsFilteredDictTime: 30.295us - BlockConditionsFilteredTime: 174.24us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.175us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 239.914us - BlockLoadTime: 300.71ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 554 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 37.225ms - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 460.12us - FirstReadTime: 116.201ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.433us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 120.272ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 7.931ms - OutputIndexResultColumnTimer: 3.569ms - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 4.205392M (4205392) - RowsVectorPredInput: 4.97661M (4976610) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 114.255ms - ShortPredEvalTime: 35.856us - TotalPagesNum: 554 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.639ms PipelineXTask (index=34):(Active: 693.448us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 264.719us - CloseTime: 117.205us - GetBlockTime: 109.418us - OpenTime: 113.93us - PrepareTime: 189.964us - SinkTime: 17.337us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 565.306us - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 804.184ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.639us - InputRows: 157 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.92us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 22, type = minmax), RuntimeFilter: (id = 23, type = in_or_bloomfilter), - PushDownPredicates: [{FANS_FLAG IN [Y]}] - KeyRanges: ScanKeys: - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.780us - BlocksProduced: 3 - CloseTime: 115.186us - ExecTime: 49.540ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 234.531us - ProcessConjunctTime: 21.73us - ProjectionTime: 406.933us - RowsProduced: 157 - RowsRead: 157 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 41.8ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 48.656ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 22, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 23, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FANS_FLAG, FRIST_FANS_TIME, UNIONID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=27, opposite=false - PerScannerRunningTime: [89.603ms, 90.881ms, 32.071ms, ] - PerScannerRowsRead: [67, 63, 27, ] - PerScannerWaitTime: [12.359ms, 13.867ms, 14.781ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 206.11ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.672ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 164ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 216.291ms - ScannerCtxSchedTime: 41.4ms - ScannerFilterTime: 87.681us - ScannerGetBlockTime: 212.393ms - ScannerInitTime: 66.898us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 6.449us - BlockConditionsFilteredBloomFilterTime: 11.199us - BlockConditionsFilteredDictTime: 49.69us - BlockConditionsFilteredTime: 251.18us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 59.971us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 339.280us - BlockLoadTime: 214.407ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 562 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 38.46ms - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 515.405us - FirstReadTime: 75.636ms - IOTimer: 0ns - InvertedIndexFilterTime: 25.510us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 82.309ms - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 7.962ms - OutputIndexResultColumnTimer: 48.535us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 4.204106M (4204106) - RowsVectorPredInput: 4.976137M (4976137) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 77.262ms - ShortPredEvalTime: 37.552us - TotalPagesNum: 562 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.835ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 203.591ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 203.505ms - CloseTime: 12.925us - GetBlockTime: 26.384ms - OpenTime: 2.63us - PrepareTime: 59.144us - SinkTime: 175.404ms - GetBlockCounter: 2.059K (2059) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 55 - NumBlockedTimes: 57 - NumScheduleTimes: 57 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 187.309ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s250ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 348.935us - BuildRows: 708.299K (708299) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 109.8ms - BuildTableInsertTime: 46.253ms - BuildTableTime: 46.824ms - CloseTime: 0ns - ExecTime: 175.142ms - InputRows: 708.298K (708298) - MemoryUsage: - BuildBlocks: 56.72 MB - BuildKeyArena: 32.00 MB - HashTable: 6.70 MB - PeakMemoryUsage: 95.42 MB - OpenTime: 24.267us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.978us - RuntimeFilterComputeTime: 17.893ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=50): - BlocksProduced: 2.058K (2058) - BytesReceived: 0.00 - CloseTime: 9.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.946ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 170.36 MB - MemoryUsage: - Blocks: 19.69 MB - PeakMemoryUsage: 5.71 MB - OpenTime: 14.154us - ProjectionTime: 0ns - RowsProduced: 708.298K (708298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s628ms PipelineXTask (index=5):(Active: 160.590us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 83.850us - CloseTime: 11.51us - GetBlockTime: 0ns - OpenTime: 2.913us - PrepareTime: 58.50us - SinkTime: 57.433us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.704us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.25ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 74.364us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.176us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s57ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.112us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.489us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.618us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 158.705us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 74.974us - CloseTime: 13.761us - GetBlockTime: 0ns - OpenTime: 2.678us - PrepareTime: 62.1us - SinkTime: 51.650us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 137.789us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.227ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 69.493us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.188us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s59ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.316us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.158us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 219.822us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 72.581us - CloseTime: 7.200us - GetBlockTime: 0ns - OpenTime: 1.973us - PrepareTime: 131.828us - SinkTime: 57.569us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 193.700us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.893ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 144.610us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 87.193us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s59ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.842us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.56us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.572us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 107.400us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.753us - CloseTime: 4.355us - GetBlockTime: 0ns - OpenTime: 2.610us - PrepareTime: 59.378us - SinkTime: 20.295us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.946us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.746ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.127us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.923us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s66ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.381us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.721us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.444us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 122.848us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.350us - CloseTime: 3.332us - GetBlockTime: 0ns - OpenTime: 2.165us - PrepareTime: 79.974us - SinkTime: 16.854us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.401us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.25ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.66us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.400us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s59ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.0us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.142us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 113.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.916us - CloseTime: 3.569us - GetBlockTime: 0ns - OpenTime: 2.508us - PrepareTime: 69.900us - SinkTime: 17.454us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.888us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.835ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.117us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.737us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s65ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.643us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.238us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.713us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 129.22us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.175us - CloseTime: 4.38us - GetBlockTime: 0ns - OpenTime: 2.203us - PrepareTime: 83.660us - SinkTime: 17.408us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 117.308us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.103ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.37us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.699us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s59ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.249us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.136us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.58us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 15.673ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 75.223us - CloseTime: 15.537ms - GetBlockTime: 0ns - OpenTime: 1.950us - PrepareTime: 54.611us - SinkTime: 58.700us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.627us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.374ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 77.47us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.768us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s68ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 15.535ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.556ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.776us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 193.671us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 97.346us - CloseTime: 15.161us - GetBlockTime: 0ns - OpenTime: 1.848us - PrepareTime: 76.112us - SinkTime: 78.329us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 171.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.435ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 94.337us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.559us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s67ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.179us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.776us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.778us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 183.735us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 82.517us - CloseTime: 16.546us - GetBlockTime: 0ns - OpenTime: 2.700us - PrepareTime: 76.760us - SinkTime: 65.28us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 160.613us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.940ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 102.132us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 37.628us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s69ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.210us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.293us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.393us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 132.504us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 43.13us - CloseTime: 6.870us - GetBlockTime: 0ns - OpenTime: 2.498us - PrepareTime: 74.717us - SinkTime: 24.929us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.844us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.32ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962ffa - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 55.325us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.938us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4s57ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.461us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.161us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.771us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 133: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 438.762ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 428.622ms - CloseTime: 86.832us - GetBlockTime: 406.152ms - OpenTime: 9.795ms - PrepareTime: 244.766us - SinkTime: 11.620ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 338.561ms - WaitBfTime: 1s430ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s460ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 514 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.605us - CompressTime: 0ns - ExecTime: 11.507ms - InputRows: 176.388K (176388) - LocalBytesSent: 14.13 MB - LocalSendTime: 11.156ms - LocalSentRows: 176.388K (176388) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 38.825us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 176.388K (176388) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 204.47ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 19.398us - ExecTime: 387.100ms - InitProbeSideTime: 67.242ms - JoinFilterTimer: 86.960us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 19.346us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 119.585us - ProbeFindNextTime: 0ns - ProbeRows: 2.082107M (2082107) - ProbeTime: 381.992ms - ProbeWhenBuildSideOutputTime: 18.829ms - ProbeWhenProbeSideOutputTime: 43.254ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 244.294ms - ProjectionTime: 3.283ms - RowsProduced: 176.388K (176388) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 524.678ms OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 20, type = minmax), RuntimeFilter: (id = 21, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.579us - BlocksProduced: 514 - CloseTime: 50.493us - ExecTime: 314.390ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 9.898ms - ProcessConjunctTime: 62.630us - ProjectionTime: 0ns - RowsProduced: 2.082107M (2082107) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 32.390ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 285.984ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 20, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 21, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 49 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [263.348ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [32.390ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 245.437ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.990ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.468us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.945ms - ScannerCtxSchedTime: 32.368ms - ScannerFilterTime: 15.826ms - ScannerGetBlockTime: 247.275ms - ScannerInitTime: 191.717us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.283us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.493us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 22.874us - BlockInitTime: 148.522us - BlockLoadTime: 247.797ms - BlocksLoad: 516 - CachedPagesNum: 2.109K (2109) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 2.176ms - FirstReadTime: 245.878ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.28us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 159.504us - OutputIndexResultColumnTimer: 57.120us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.109K (2109) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 423.440ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 423.56ms - CloseTime: 80.987us - GetBlockTime: 409.689ms - OpenTime: 93.1us - PrepareTime: 194.744us - SinkTime: 12.168ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 21 - NumScheduleTimes: 22 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 330.768ms - WaitBfTime: 1s24ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s499ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 514 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.518us - CompressTime: 0ns - ExecTime: 12.30ms - InputRows: 176.903K (176903) - LocalBytesSent: 14.17 MB - LocalSendTime: 11.704ms - LocalSentRows: 176.903K (176903) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 27.789us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 176.903K (176903) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 204.47ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 19.930us - ExecTime: 406.751ms - InitProbeSideTime: 77.943ms - JoinFilterTimer: 82.771us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 17.173us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 121.222us - ProbeFindNextTime: 0ns - ProbeRows: 2.086135M (2086135) - ProbeTime: 401.736ms - ProbeWhenBuildSideOutputTime: 23.281ms - ProbeWhenProbeSideOutputTime: 16.512ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 275.626ms - ProjectionTime: 3.308ms - RowsProduced: 176.903K (176903) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 584.695ms OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 20, type = minmax), RuntimeFilter: (id = 21, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.804us - BlocksProduced: 514 - CloseTime: 49.338us - ExecTime: 267.910ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 164.889us - ProcessConjunctTime: 21.35us - ProjectionTime: 0ns - RowsProduced: 2.086135M (2086135) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 165.511ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 265.389ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 20, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 21, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 99 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [108.834ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [165.511ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 88.730ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.710ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.911us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 100.120ms - ScannerCtxSchedTime: 165.488ms - ScannerFilterTime: 17.564ms - ScannerGetBlockTime: 91.9ms - ScannerInitTime: 42.160us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 996ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.91us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 29.326us - BlockInitTime: 139.13us - BlockLoadTime: 91.301ms - BlocksLoad: 516 - CachedPagesNum: 2.114K (2114) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.882ms - FirstReadTime: 89.474ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.382us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 140.262us - OutputIndexResultColumnTimer: 53.426us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.114K (2114) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 392.56ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 391.557ms - CloseTime: 101.938us - GetBlockTime: 378.391ms - OpenTime: 85.915us - PrepareTime: 297.478us - SinkTime: 11.882ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 334.8ms - WaitBfTime: 1s23ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s477ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 515 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.445us - CompressTime: 0ns - ExecTime: 11.729ms - InputRows: 177.744K (177744) - LocalBytesSent: 14.23 MB - LocalSendTime: 11.412ms - LocalSentRows: 177.744K (177744) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 21.773us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 177.744K (177744) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 204.47ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 13.998us - ExecTime: 375.295ms - InitProbeSideTime: 76.309ms - JoinFilterTimer: 84.772us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 13.46us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 124.297us - ProbeFindNextTime: 0ns - ProbeRows: 2.086985M (2086985) - ProbeTime: 369.891ms - ProbeWhenBuildSideOutputTime: 17.453ms - ProbeWhenProbeSideOutputTime: 15.785ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 252.6ms - ProjectionTime: 3.620ms - RowsProduced: 177.744K (177744) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 750.53ms OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 20, type = minmax), RuntimeFilter: (id = 21, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.600us - BlocksProduced: 515 - CloseTime: 71.843us - ExecTime: 261.114ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 276.333us - ProcessConjunctTime: 19.731us - ProjectionTime: 0ns - RowsProduced: 2.086985M (2086985) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 165.383ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 258.303ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 20, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 21, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 60 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [96.750ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [165.383ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 79.50ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.77ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.991us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 101.367ms - ScannerCtxSchedTime: 165.353ms - ScannerFilterTime: 15.497ms - ScannerGetBlockTime: 81.6ms - ScannerInitTime: 44.193us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.92us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.322us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.57us - BlockInitTime: 115.445us - BlockLoadTime: 81.651ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 2.247ms - FirstReadTime: 79.619ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.435us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 143.370us - OutputIndexResultColumnTimer: 82.827us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.115K (2115) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 326.913ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 326.467ms - CloseTime: 88.223us - GetBlockTime: 313.112ms - OpenTime: 136.487us - PrepareTime: 209.504us - SinkTime: 12.77ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.846ms - WaitBfTime: 1s340ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s784ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 515 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.753us - CompressTime: 0ns - ExecTime: 11.956ms - InputRows: 177.263K (177263) - LocalBytesSent: 14.20 MB - LocalSendTime: 11.611ms - LocalSentRows: 177.263K (177263) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 39.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 177.263K (177263) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 204.47ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 11.332us - ExecTime: 310.37ms - InitProbeSideTime: 71.331ms - JoinFilterTimer: 82.322us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.803us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 117.921us - ProbeFindNextTime: 0ns - ProbeRows: 2.08686M (2086860) - ProbeTime: 305.271ms - ProbeWhenBuildSideOutputTime: 22.600ms - ProbeWhenProbeSideOutputTime: 15.691ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 186.902ms - ProjectionTime: 3.63ms - RowsProduced: 177.263K (177263) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 321.465ms OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 20, type = minmax), RuntimeFilter: (id = 21, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.893us - BlocksProduced: 515 - CloseTime: 61.374us - ExecTime: 173.802ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 219.288us - ProcessConjunctTime: 20.939us - ProjectionTime: 0ns - RowsProduced: 2.08686M (2086860) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 30.786ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 171.17ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 20, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.528K (414528) RuntimeFilter: (id = 21, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 32 - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [145.029ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [30.786ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 126.251ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.581ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.645us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 93.803ms - ScannerCtxSchedTime: 30.761ms - ScannerFilterTime: 16.478ms - ScannerGetBlockTime: 128.331ms - ScannerInitTime: 81.324us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 918ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.955us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.651us - BlockInitTime: 103.566us - BlockLoadTime: 128.654ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 2.220ms - FirstReadTime: 126.894ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.272us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 128.64us - OutputIndexResultColumnTimer: 47.901us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2.115K (2115) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 88.982ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 88.903ms - CloseTime: 12.570us - GetBlockTime: 632.66us - OpenTime: 2.695us - PrepareTime: 52.332us - SinkTime: 88.98ms - GetBlockCounter: 44 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.857ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s33ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 28.560us - BuildRows: 177.503K (177503) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.538ms - BuildTableInsertTime: 7.284ms - BuildTableTime: 7.289ms - CloseTime: 0ns - ExecTime: 88.95ms - InputRows: 177.502K (177502) - MemoryUsage: - BuildBlocks: 8.63 MB - BuildKeyArena: 6.10 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.41 MB - OpenTime: 16.450us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.640us - RuntimeFilterComputeTime: 4.96ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 43 - BytesReceived: 0.00 - CloseTime: 9.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 622.261us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.45 MB - MemoryUsage: - Blocks: 6.38 MB - PeakMemoryUsage: 6.38 MB - OpenTime: 16.656us - ProjectionTime: 0ns - RowsProduced: 177.502K (177502) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s402ms PipelineXTask (index=3):(Active: 39.906ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 39.818ms - CloseTime: 19.767us - GetBlockTime: 655.25us - OpenTime: 3.640us - PrepareTime: 56.617us - SinkTime: 38.888ms - GetBlockCounter: 44 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 891.976ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 41.142us - BuildRows: 178.047K (178047) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.366ms - BuildTableInsertTime: 19.446ms - BuildTableTime: 19.452ms - CloseTime: 0ns - ExecTime: 38.875ms - InputRows: 178.046K (178046) - MemoryUsage: - BuildBlocks: 8.66 MB - BuildKeyArena: 6.12 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.45 MB - OpenTime: 11.942us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.799us - RuntimeFilterComputeTime: 3.873ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 43 - BytesReceived: 0.00 - CloseTime: 15.751us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 639.962us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.66 MB - MemoryUsage: - Blocks: 3.00 MB - PeakMemoryUsage: 3.00 MB - OpenTime: 17.453us - ProjectionTime: 0ns - RowsProduced: 178.046K (178046) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s439ms PipelineXTask (index=5):(Active: 27.992ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 27.905ms - CloseTime: 21.158us - GetBlockTime: 681.703us - OpenTime: 2.680us - PrepareTime: 56.700us - SinkTime: 27.64ms - GetBlockCounter: 44 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.890ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s153ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.551us - BuildRows: 178.794K (178794) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.83ms - BuildTableInsertTime: 7.579ms - BuildTableTime: 7.584ms - CloseTime: 0ns - ExecTime: 27.57ms - InputRows: 178.793K (178793) - MemoryUsage: - BuildBlocks: 8.70 MB - BuildKeyArena: 6.14 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.52 MB - OpenTime: 13.295us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.765us - RuntimeFilterComputeTime: 4.251ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 43 - BytesReceived: 0.00 - CloseTime: 16.408us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 674.6us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.86 MB - MemoryUsage: - Blocks: 6.38 MB - PeakMemoryUsage: 6.38 MB - OpenTime: 14.410us - ProjectionTime: 0ns - RowsProduced: 178.793K (178793) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s355ms PipelineXTask (index=7):(Active: 37.733ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 37.657ms - CloseTime: 20.688us - GetBlockTime: 708.3us - OpenTime: 2.554us - PrepareTime: 46.849us - SinkTime: 36.715ms - GetBlockCounter: 44 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.374ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 871.613ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.54us - BuildRows: 178.363K (178363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.774ms - BuildTableInsertTime: 14.665ms - BuildTableTime: 14.671ms - CloseTime: 0ns - ExecTime: 36.710ms - InputRows: 178.362K (178362) - MemoryUsage: - BuildBlocks: 8.67 MB - BuildKeyArena: 6.13 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.48 MB - OpenTime: 15.66us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.350us - RuntimeFilterComputeTime: 4.104ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 43 - BytesReceived: 0.00 - CloseTime: 15.489us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 699.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.73 MB - MemoryUsage: - Blocks: 3.38 MB - PeakMemoryUsage: 3.38 MB - OpenTime: 13.189us - ProjectionTime: 0ns - RowsProduced: 178.362K (178362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s436ms Fragment 134: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 18.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.688ms - CloseTime: 42.844us - GetBlockTime: 7.216ms - OpenTime: 6.569us - PrepareTime: 101.886us - SinkTime: 11.252ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.720ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 676.10ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.713us - CompressTime: 0ns - ExecTime: 11.305ms - InputRows: 82.896K (82896) - LocalBytesSent: 4.03 MB - LocalSendTime: 195.38us - LocalSentRows: 82.896K (82896) - MemoryUsage: - PeakMemoryUsage: 6.44 MB - MergeBlockTime: 0ns - OpenTime: 43.624us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 82.896K (82896) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.296ms - SplitBlockHashComputeTime: 2.883ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 24 - BuildOutputBlock: 0ns - CloseTime: 17.247us - ExecTime: 7.15ms - InitProbeSideTime: 1.440ms - JoinFilterTimer: 4.468us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 20.571us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.311us - ProbeFindNextTime: 0ns - ProbeRows: 82.896K (82896) - ProbeTime: 6.86ms - ProbeWhenBuildSideOutputTime: 369.260us - ProbeWhenProbeSideOutputTime: 1.817ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.896ms - ProjectionTime: 812.19us - RowsProduced: 82.896K (82896) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 24 - CloseTime: 0ns - ExecTime: 157.97us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.57 MB - OpenTime: 744ns - ProjectionTime: 0ns - RowsProduced: 82.896K (82896) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s256ms PipelineXTask (index=3):(Active: 53.872ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 53.726ms - CloseTime: 39.513us - GetBlockTime: 42.865ms - OpenTime: 5.917us - PrepareTime: 93.36us - SinkTime: 10.678ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.782ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s182ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.183us - CompressTime: 0ns - ExecTime: 10.723ms - InputRows: 71.757K (71757) - LocalBytesSent: 3.49 MB - LocalSendTime: 178.643us - LocalSentRows: 71.757K (71757) - MemoryUsage: - PeakMemoryUsage: 5.38 MB - MergeBlockTime: 0ns - OpenTime: 43.476us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 71.757K (71757) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.177ms - SplitBlockHashComputeTime: 2.407ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 20.980us - ExecTime: 42.709ms - InitProbeSideTime: 13.537ms - JoinFilterTimer: 3.746us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.345us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.820us - ProbeFindNextTime: 0ns - ProbeRows: 71.757K (71757) - ProbeTime: 41.931ms - ProbeWhenBuildSideOutputTime: 196.905us - ProbeWhenProbeSideOutputTime: 26.115ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.577ms - ProjectionTime: 673.44us - RowsProduced: 71.757K (71757) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 118.829us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.97 MB - OpenTime: 593ns - ProjectionTime: 0ns - RowsProduced: 71.757K (71757) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s79ms PipelineXTask (index=6):(Active: 24.68ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.916ms - CloseTime: 45.993us - GetBlockTime: 12.52ms - OpenTime: 4.166us - PrepareTime: 95.616us - SinkTime: 11.654ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.231ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 655.671ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.319us - CompressTime: 0ns - ExecTime: 11.696ms - InputRows: 74.351K (74351) - LocalBytesSent: 3.62 MB - LocalSendTime: 153.709us - LocalSentRows: 74.351K (74351) - MemoryUsage: - PeakMemoryUsage: 5.38 MB - MergeBlockTime: 0ns - OpenTime: 45.12us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74.351K (74351) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.40ms - SplitBlockHashComputeTime: 2.555ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 34.495us - ExecTime: 11.877ms - InitProbeSideTime: 1.337ms - JoinFilterTimer: 3.699us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 9.449us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.240us - ProbeFindNextTime: 0ns - ProbeRows: 74.351K (74351) - ProbeTime: 11.30ms - ProbeWhenBuildSideOutputTime: 134.794us - ProbeWhenProbeSideOutputTime: 7.366ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.713ms - ProjectionTime: 714.112us - RowsProduced: 74.351K (74351) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 145.424us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.31 MB - OpenTime: 8.676us - ProjectionTime: 0ns - RowsProduced: 74.351K (74351) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s271ms PipelineXTask (index=9):(Active: 16.291ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 16.144ms - CloseTime: 40.760us - GetBlockTime: 6.358ms - OpenTime: 5.991us - PrepareTime: 92.478us - SinkTime: 9.599ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.227ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 645.67ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.96us - CompressTime: 0ns - ExecTime: 9.639ms - InputRows: 63.016K (63016) - LocalBytesSent: 3.06 MB - LocalSendTime: 152.308us - LocalSentRows: 63.016K (63016) - MemoryUsage: - PeakMemoryUsage: 4.94 MB - MergeBlockTime: 0ns - OpenTime: 35.720us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 63.016K (63016) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.404ms - SplitBlockHashComputeTime: 2.250ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 20.100us - ExecTime: 6.180ms - InitProbeSideTime: 1.291ms - JoinFilterTimer: 3.655us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.699us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.359us - ProbeFindNextTime: 0ns - ProbeRows: 63.016K (63016) - ProbeTime: 5.493ms - ProbeWhenBuildSideOutputTime: 254.6us - ProbeWhenProbeSideOutputTime: 2.21ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.487ms - ProjectionTime: 570.784us - RowsProduced: 63.016K (63016) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 145.421us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.57 MB - OpenTime: 844ns - ProjectionTime: 0ns - RowsProduced: 63.016K (63016) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s276ms PipelineXTask (index=12):(Active: 25.86ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.899ms - CloseTime: 48.359us - GetBlockTime: 5.332ms - OpenTime: 6.187us - PrepareTime: 125.593us - SinkTime: 19.401ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.977ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 316.107ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.149us - CompressTime: 0ns - ExecTime: 19.443ms - InputRows: 68.358K (68358) - LocalBytesSent: 3.32 MB - LocalSendTime: 140.996us - LocalSentRows: 68.358K (68358) - MemoryUsage: - PeakMemoryUsage: 5.38 MB - MergeBlockTime: 0ns - OpenTime: 34.221us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 68.358K (68358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.600ms - SplitBlockHashComputeTime: 2.62ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 23.285us - ExecTime: 5.171ms - InitProbeSideTime: 1.36ms - JoinFilterTimer: 6.776us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.976us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.986us - ProbeFindNextTime: 0ns - ProbeRows: 68.358K (68358) - ProbeTime: 4.425ms - ProbeWhenBuildSideOutputTime: 118.126us - ProbeWhenProbeSideOutputTime: 1.451ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.408ms - ProjectionTime: 649.638us - RowsProduced: 68.358K (68358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 123.800us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.53 MB - OpenTime: 1.23us - ProjectionTime: 0ns - RowsProduced: 68.358K (68358) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s641ms PipelineXTask (index=15):(Active: 17.305ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.134ms - CloseTime: 39.990us - GetBlockTime: 6.869ms - OpenTime: 6.332us - PrepareTime: 119.148us - SinkTime: 10.51ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 781.945ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.154us - CompressTime: 0ns - ExecTime: 10.98ms - InputRows: 62.129K (62129) - LocalBytesSent: 3.02 MB - LocalSendTime: 163.962us - LocalSentRows: 62.129K (62129) - MemoryUsage: - PeakMemoryUsage: 4.61 MB - MergeBlockTime: 0ns - OpenTime: 44.999us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 62.129K (62129) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.759ms - SplitBlockHashComputeTime: 2.305ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 19.241us - ExecTime: 6.704ms - InitProbeSideTime: 1.374ms - JoinFilterTimer: 3.911us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 28.151us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.790us - ProbeFindNextTime: 0ns - ProbeRows: 62.129K (62129) - ProbeTime: 5.826ms - ProbeWhenBuildSideOutputTime: 333.465us - ProbeWhenProbeSideOutputTime: 2.156ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.539ms - ProjectionTime: 760.929us - RowsProduced: 62.129K (62129) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 127.967us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 1.09 MB - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 62.129K (62129) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s161ms PipelineXTask (index=18):(Active: 15.73ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.931ms - CloseTime: 16.643us - GetBlockTime: 5.912ms - OpenTime: 3.420us - PrepareTime: 116.860us - SinkTime: 8.872ms - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.22ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 340.88ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.991us - CompressTime: 0ns - ExecTime: 8.916ms - InputRows: 54.88K (54880) - LocalBytesSent: 2.67 MB - LocalSendTime: 135.693us - LocalSentRows: 54.88K (54880) - MemoryUsage: - PeakMemoryUsage: 4.34 MB - MergeBlockTime: 0ns - OpenTime: 48.976us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 54.88K (54880) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.174ms - SplitBlockHashComputeTime: 1.931ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 7.734us - ExecTime: 5.795ms - InitProbeSideTime: 1.278ms - JoinFilterTimer: 3.228us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.385us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.698us - ProbeFindNextTime: 0ns - ProbeRows: 54.88K (54880) - ProbeTime: 4.933ms - ProbeWhenBuildSideOutputTime: 86.352us - ProbeWhenProbeSideOutputTime: 1.907ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.278ms - ProjectionTime: 782.518us - RowsProduced: 54.88K (54880) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 16 - CloseTime: 0ns - ExecTime: 76.658us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.09 MB - OpenTime: 836ns - ProjectionTime: 0ns - RowsProduced: 54.88K (54880) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s605ms PipelineXTask (index=21):(Active: 26.823ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.696ms - CloseTime: 32.589us - GetBlockTime: 16.193ms - OpenTime: 3.220us - PrepareTime: 86.905us - SinkTime: 10.341ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.26ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 741.323ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.730us - CompressTime: 0ns - ExecTime: 10.387ms - InputRows: 49.949K (49949) - LocalBytesSent: 2.43 MB - LocalSendTime: 107.473us - LocalSentRows: 49.949K (49949) - MemoryUsage: - PeakMemoryUsage: 3.88 MB - MergeBlockTime: 0ns - OpenTime: 40.66us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 49.949K (49949) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.729ms - SplitBlockHashComputeTime: 4.843ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 11.320us - ExecTime: 16.40ms - InitProbeSideTime: 1.344ms - JoinFilterTimer: 3.149us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.827us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.88us - ProbeFindNextTime: 0ns - ProbeRows: 49.949K (49949) - ProbeTime: 15.291ms - ProbeWhenBuildSideOutputTime: 142.141us - ProbeWhenProbeSideOutputTime: 1.390ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.29ms - ProjectionTime: 670.929us - RowsProduced: 49.949K (49949) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 106.850us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.09 MB - OpenTime: 1.142us - ProjectionTime: 0ns - RowsProduced: 49.949K (49949) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s173ms PipelineXTask (index=24):(Active: 11.565ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.416ms - CloseTime: 33.948us - GetBlockTime: 4.798ms - OpenTime: 4.322us - PrepareTime: 102.427us - SinkTime: 6.436ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.498ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s464ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.555us - CompressTime: 0ns - ExecTime: 6.487ms - InputRows: 46.826K (46826) - LocalBytesSent: 2.28 MB - LocalSendTime: 148.957us - LocalSentRows: 46.826K (46826) - MemoryUsage: - PeakMemoryUsage: 3.75 MB - MergeBlockTime: 0ns - OpenTime: 43.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 46.826K (46826) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.755ms - SplitBlockHashComputeTime: 1.849ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.38us - ExecTime: 4.645ms - InitProbeSideTime: 1.84ms - JoinFilterTimer: 2.694us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 23.91us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.278us - ProbeFindNextTime: 0ns - ProbeRows: 46.826K (46826) - ProbeTime: 4.28ms - ProbeWhenBuildSideOutputTime: 151.524us - ProbeWhenProbeSideOutputTime: 1.160ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.256ms - ProjectionTime: 527.904us - RowsProduced: 46.826K (46826) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 112.481us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 853ns - ProjectionTime: 0ns - RowsProduced: 46.826K (46826) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 731.257ms PipelineXTask (index=27):(Active: 14.375ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.220ms - CloseTime: 44.183us - GetBlockTime: 5.729ms - OpenTime: 3.677us - PrepareTime: 100.993us - SinkTime: 8.304ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.283ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 718.192ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.520us - CompressTime: 0ns - ExecTime: 8.346ms - InputRows: 50.554K (50554) - LocalBytesSent: 2.46 MB - LocalSendTime: 148.498us - LocalSentRows: 50.554K (50554) - MemoryUsage: - PeakMemoryUsage: 3.81 MB - MergeBlockTime: 0ns - OpenTime: 33.494us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 50.554K (50554) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.513ms - SplitBlockHashComputeTime: 1.924ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 18.496us - ExecTime: 5.603ms - InitProbeSideTime: 1.324ms - JoinFilterTimer: 3.655us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.960us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.239us - ProbeFindNextTime: 0ns - ProbeRows: 50.554K (50554) - ProbeTime: 4.712ms - ProbeWhenBuildSideOutputTime: 126.454us - ProbeWhenProbeSideOutputTime: 1.481ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.361ms - ProjectionTime: 805.637us - RowsProduced: 50.554K (50554) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 89.215us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 448.00 KB - OpenTime: 552ns - ProjectionTime: 0ns - RowsProduced: 50.554K (50554) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s298ms PipelineXTask (index=30):(Active: 12.297ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.180ms - CloseTime: 30.405us - GetBlockTime: 5.18ms - OpenTime: 3.231us - PrepareTime: 77.445us - SinkTime: 7.9ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.72ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 606.302ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.42us - CompressTime: 0ns - ExecTime: 7.47ms - InputRows: 43.285K (43285) - LocalBytesSent: 2.11 MB - LocalSendTime: 103.48us - LocalSentRows: 43.285K (43285) - MemoryUsage: - PeakMemoryUsage: 3.38 MB - MergeBlockTime: 0ns - OpenTime: 32.299us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 43.285K (43285) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.704ms - SplitBlockHashComputeTime: 1.661ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.450us - ExecTime: 4.909ms - InitProbeSideTime: 1.115ms - JoinFilterTimer: 2.581us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.597us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.614us - ProbeFindNextTime: 0ns - ProbeRows: 43.285K (43285) - ProbeTime: 4.59ms - ProbeWhenBuildSideOutputTime: 130.43us - ProbeWhenProbeSideOutputTime: 1.411ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.83ms - ProjectionTime: 775.838us - RowsProduced: 43.285K (43285) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 72.72us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 672.00 KB - OpenTime: 727ns - ProjectionTime: 0ns - RowsProduced: 43.285K (43285) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s282ms PipelineXTask (index=33):(Active: 9.664ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.514ms - CloseTime: 37.75us - GetBlockTime: 4.16ms - OpenTime: 4.235us - PrepareTime: 102.747us - SinkTime: 5.366ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.600ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 832.382ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.482us - CompressTime: 0ns - ExecTime: 5.410ms - InputRows: 44.702K (44702) - LocalBytesSent: 2.17 MB - LocalSendTime: 99.123us - LocalSentRows: 44.702K (44702) - MemoryUsage: - PeakMemoryUsage: 3.44 MB - MergeBlockTime: 0ns - OpenTime: 41.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 44.702K (44702) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.418ms - SplitBlockHashComputeTime: 1.379ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 23.305us - ExecTime: 3.909ms - InitProbeSideTime: 909.276us - JoinFilterTimer: 2.171us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.983us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.640us - ProbeFindNextTime: 0ns - ProbeRows: 44.702K (44702) - ProbeTime: 3.291ms - ProbeWhenBuildSideOutputTime: 164.379us - ProbeWhenProbeSideOutputTime: 1.30ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 912.732us - ProjectionTime: 532.102us - RowsProduced: 44.702K (44702) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 93.947us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 807ns - ProjectionTime: 0ns - RowsProduced: 44.702K (44702) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s80ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 863.593us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 378.9us - CloseTime: 42.959us - GetBlockTime: 45.310us - OpenTime: 299.132us - PrepareTime: 133.558us - SinkTime: 9.88us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 810.91us - WaitBfTime: 256.855ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.740ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.755us - InputRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.118us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 50.211us - BlocksProduced: 1 - CloseTime: 39.957us - ExecTime: 156.588ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 380.635us - ProcessConjunctTime: 165.767us - ProjectionTime: 12.457us - RowsProduced: 4 - RowsRead: 4 - RuntimeFilterInfo: - filter id = -1 filtered: 197.73K (197730) - filter id = -1 input: 197.738K (197738) - ScannerWorkerWaitTime: 108.607ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.109ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [1.352ms, ] - PerScannerRowsRead: [4, ] - PerScannerWaitTime: [108.607ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.288ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 46.27ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 155ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 3.476ms - ScannerCtxSchedTime: 108.605ms - ScannerFilterTime: 5.615us - ScannerGetBlockTime: 1.336ms - ScannerInitTime: 62.378us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 197738, filtered = 197730] - BitmapIndexFilterTimer: 616ns - BlockConditionsFilteredBloomFilterTime: 2.132us - BlockConditionsFilteredDictTime: 57.842us - BlockConditionsFilteredTime: 96.622us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.643us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.120us - BlockInitTime: 132.790us - BlockLoadTime: 47.147ms - BlocksLoad: 139 - CachedPagesNum: 108 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 414 - FirstReadSeekTime: 48.157us - FirstReadTime: 45.917ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.506us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 24.229us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 29.151us - OutputIndexResultColumnTimer: 7.379us - RawRowsRead: 556.885K (556885) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 98.865K (98865) - RowsShortCircuitPredInput: 98.869K (98869) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 458.016K (458016) - RowsVectorPredInput: 556.885K (556885) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 209.775us - TotalPagesNum: 108 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 684.86us PipelineXTask (index=4):(Active: 828.952us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 363.117us - CloseTime: 51.804us - GetBlockTime: 47.707us - OpenTime: 276.35us - PrepareTime: 129.562us - SinkTime: 19.41us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 768.84us - WaitBfTime: 257.18ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.69ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.358us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.140us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 27.464us - BlocksProduced: 1 - CloseTime: 49.973us - ExecTime: 118.70ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 353.326us - ProcessConjunctTime: 139.739us - ProjectionTime: 10.227us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 112.863ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.608ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [2.991ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [112.863ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.197ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.654ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.731ms - ScannerCtxSchedTime: 112.861ms - ScannerFilterTime: 3.633us - ScannerGetBlockTime: 2.981ms - ScannerInitTime: 89.102us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 2.34us - BlockConditionsFilteredBloomFilterTime: 5.873us - BlockConditionsFilteredDictTime: 157.118us - BlockConditionsFilteredTime: 245.184us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 62.920us - BlockInitSeekCount: 37 - BlockInitSeekTime: 238.558us - BlockInitTime: 562.129us - BlockLoadTime: 4.193ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 100.266us - FirstReadTime: 2.174ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.673us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 31.339us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 30.906us - OutputIndexResultColumnTimer: 13.696us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 95.745K (95745) - RowsShortCircuitPredInput: 95.75K (95750) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 428.292us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 743.950us PipelineXTask (index=7):(Active: 13.176ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 12.676ms - CloseTime: 47.270us - GetBlockTime: 12.284ms - OpenTime: 269.247us - PrepareTime: 175.923us - SinkTime: 69.257us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.4ms - WaitBfTime: 259.474ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 214.739ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 60.768us - InputRows: 11.788K (11788) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.449us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.227us - BlocksProduced: 6 - CloseTime: 44.832us - ExecTime: 164.621ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 374.845us - ProcessConjunctTime: 150.485us - ProjectionTime: 665.303us - RowsProduced: 11.788K (11788) - RowsRead: 11.788K (11788) - RuntimeFilterInfo: - filter id = -1 filtered: 656.598K (656598) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 129.679ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 151.230ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [30.367ms, ] - PerScannerRowsRead: [11.79K, ] - PerScannerWaitTime: [129.679ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 28.645ms - MemoryUsage: - FreeBlocks: 532.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 823.292us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 785ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.672ms - ScannerCtxSchedTime: 129.668ms - ScannerFilterTime: 178.295us - ScannerGetBlockTime: 30.41ms - ScannerInitTime: 61.346us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656598] - BitmapIndexFilterTimer: 1.301us - BlockConditionsFilteredBloomFilterTime: 3.945us - BlockConditionsFilteredDictTime: 66.47us - BlockConditionsFilteredTime: 156.400us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 67.65us - BlockInitSeekCount: 17 - BlockInitSeekTime: 21.79us - BlockInitTime: 231.645us - BlockLoadTime: 30.3ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 177.622us - FirstReadTime: 5.941ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.32us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 19.508ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 625.943us - OutputIndexResultColumnTimer: 37.868us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 328.299K (328299) - RowsShortCircuitPredInput: 340.087K (340087) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 840.754us - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.75ms PipelineXTask (index=10):(Active: 1.62ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 576.879us - CloseTime: 51.108us - GetBlockTime: 162.259us - OpenTime: 275.363us - PrepareTime: 149.828us - SinkTime: 82.790us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 994.838us - WaitBfTime: 276.33ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 228.587ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 80.83us - InputRows: 19.87K (19870) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.98us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.120us - BlocksProduced: 8 - CloseTime: 48.947us - ExecTime: 138.846ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 359.745us - ProcessConjunctTime: 156.851us - ProjectionTime: 691.315us - RowsProduced: 19.87K (19870) - RowsRead: 19.87K (19870) - RuntimeFilterInfo: - filter id = -1 filtered: 647.96K (647960) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 113.765ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.545ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [19.586ms, ] - PerScannerRowsRead: [19.87K, ] - PerScannerWaitTime: [113.765ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 17.750ms - MemoryUsage: - FreeBlocks: 756.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.508ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 844ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.805ms - ScannerCtxSchedTime: 113.752ms - ScannerFilterTime: 222.685us - ScannerGetBlockTime: 19.229ms - ScannerInitTime: 70.572us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 647960] - BitmapIndexFilterTimer: 2.60us - BlockConditionsFilteredBloomFilterTime: 5.164us - BlockConditionsFilteredDictTime: 180.575us - BlockConditionsFilteredTime: 314.632us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 95.796us - BlockInitSeekCount: 26 - BlockInitSeekTime: 24.680us - BlockInitTime: 421.733us - BlockLoadTime: 19.790ms - BlocksLoad: 405 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 199.607us - FirstReadTime: 6.848ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.673us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.908ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 705.233us - OutputIndexResultColumnTimer: 31.543us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 323.98K (323980) - RowsShortCircuitPredInput: 343.85K (343850) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 940.87us - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.205ms PipelineXTask (index=13):(Active: 1.218ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 714.509us - CloseTime: 59.988us - GetBlockTime: 228.764us - OpenTime: 250.876us - PrepareTime: 183.442us - SinkTime: 174.665us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.144ms - WaitBfTime: 276.269ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s156ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 169.974us - InputRows: 43.479K (43479) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.180us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.728us - BlocksProduced: 13 - CloseTime: 56.727us - ExecTime: 447.325ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 352.987us - ProcessConjunctTime: 138.934us - ProjectionTime: 981.668us - RowsProduced: 43.479K (43479) - RowsRead: 43.479K (43479) - RuntimeFilterInfo: - filter id = -1 filtered: 914.51K (914510) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 278.626ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 445.679ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [162.727ms, ] - PerScannerRowsRead: [43.48K, ] - PerScannerWaitTime: [278.626ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 157.537ms - MemoryUsage: - FreeBlocks: 1.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.14ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 689ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.54ms - ScannerCtxSchedTime: 278.622ms - ScannerFilterTime: 283.35us - ScannerGetBlockTime: 162.290ms - ScannerInitTime: 65.192us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 914510] - BitmapIndexFilterTimer: 2.878us - BlockConditionsFilteredBloomFilterTime: 6.674us - BlockConditionsFilteredDictTime: 96.149us - BlockConditionsFilteredTime: 221.282us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 89.648us - BlockInitSeekCount: 25 - BlockInitSeekTime: 2.877ms - BlockInitTime: 3.196ms - BlockLoadTime: 162.285ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 188.979us - FirstReadTime: 22.580ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.321us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 65.530ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.162ms - OutputIndexResultColumnTimer: 38.703us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 457.255K (457255) - RowsShortCircuitPredInput: 500.734K (500734) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.439ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.406ms PipelineXTask (index=16):(Active: 1.355ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 638.461us - CloseTime: 63.686us - GetBlockTime: 79.948us - OpenTime: 489.363us - PrepareTime: 156.51us - SinkTime: 41.565us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.143ms - WaitBfTime: 245.872ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 224.793ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 40.521us - InputRows: 19.524K (19524) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.33us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.650us - BlocksProduced: 6 - CloseTime: 60.900us - ExecTime: 231.355ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 599.768us - ProcessConjunctTime: 197.548us - ProjectionTime: 633.490us - RowsProduced: 19.524K (19524) - RowsRead: 19.524K (19524) - RuntimeFilterInfo: - filter id = -1 filtered: 921.114K (921114) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 124.573ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 229.933ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [101.931ms, ] - PerScannerRowsRead: [19.52K, ] - PerScannerWaitTime: [124.573ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 99.174ms - MemoryUsage: - FreeBlocks: 824.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 710.114us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 326ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.71ms - ScannerCtxSchedTime: 124.571ms - ScannerFilterTime: 193.561us - ScannerGetBlockTime: 101.626ms - ScannerInitTime: 224.382us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921114] - BitmapIndexFilterTimer: 3.45us - BlockConditionsFilteredBloomFilterTime: 6.751us - BlockConditionsFilteredDictTime: 93.322us - BlockConditionsFilteredTime: 254.704us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 110.439us - BlockInitSeekCount: 31 - BlockInitSeekTime: 25.534us - BlockInitTime: 384.832us - BlockLoadTime: 101.403ms - BlocksLoad: 410 - CachedPagesNum: 1.157K (1157) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 20.194ms - FirstReadTime: 26.455ms - IOTimer: 0ns - InvertedIndexFilterTime: 24.798us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 45.141ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 25.316ms - OutputIndexResultColumnTimer: 27.256us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 460.557K (460557) - RowsShortCircuitPredInput: 480.081K (480081) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.157ms - TotalPagesNum: 1.157K (1157) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.264ms PipelineXTask (index=19):(Active: 1.356ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 846.901us - CloseTime: 48.320us - GetBlockTime: 263.955us - OpenTime: 293.687us - PrepareTime: 159.366us - SinkTime: 211.801us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.292ms - WaitBfTime: 246.337ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 680.488ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 203.326us - InputRows: 141.175K (141175) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.60us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.61us - BlocksProduced: 39 - CloseTime: 45.2us - ExecTime: 443.703ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 403.528us - ProcessConjunctTime: 161.682us - ProjectionTime: 2.53ms - RowsProduced: 141.175K (141175) - RowsRead: 141.175K (141175) - RuntimeFilterInfo: - filter id = -1 filtered: 1.037608M (1037608) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 351.200ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 440.912ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [45.494ms, ] - PerScannerRowsRead: [141.18K, ] - PerScannerWaitTime: [351.200ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.996ms - MemoryUsage: - FreeBlocks: 4.45 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 832.600us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.742us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.623ms - ScannerCtxSchedTime: 351.194ms - ScannerFilterTime: 295.196us - ScannerGetBlockTime: 45.41ms - ScannerInitTime: 89.280us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1037608] - BitmapIndexFilterTimer: 2.983us - BlockConditionsFilteredBloomFilterTime: 11.660us - BlockConditionsFilteredDictTime: 128.921us - BlockConditionsFilteredTime: 263.943us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.272us - BlockInitSeekCount: 35 - BlockInitSeekTime: 30.926us - BlockInitTime: 397.267us - BlockLoadTime: 44.609ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 230.579us - FirstReadTime: 6.520ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.941us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 28.335ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.753ms - OutputIndexResultColumnTimer: 40.958us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 518.804K (518804) - RowsShortCircuitPredInput: 659.979K (659979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.99ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.404ms PipelineXTask (index=22):(Active: 1.338ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 827.292us - CloseTime: 51.282us - GetBlockTime: 318.403us - OpenTime: 272.999us - PrepareTime: 177.980us - SinkTime: 162.825us - GetBlockCounter: 30 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.271ms - WaitBfTime: 275.873ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 590.857ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 156.894us - InputRows: 106.535K (106535) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.117us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 27.0us - BlocksProduced: 30 - CloseTime: 47.598us - ExecTime: 368.148ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 378.457us - ProcessConjunctTime: 136.728us - ProjectionTime: 1.685ms - RowsProduced: 106.535K (106535) - RowsRead: 106.535K (106535) - RuntimeFilterInfo: - filter id = -1 filtered: 1.136506M (1136506) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 268.826ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 365.685ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [57.871ms, ] - PerScannerRowsRead: [106.53K, ] - PerScannerWaitTime: [268.826ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 53.865ms - MemoryUsage: - FreeBlocks: 3.55 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 988.262us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.221us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.200ms - ScannerCtxSchedTime: 268.819ms - ScannerFilterTime: 359.991us - ScannerGetBlockTime: 57.312ms - ScannerInitTime: 91.546us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1136506] - BitmapIndexFilterTimer: 3.445us - BlockConditionsFilteredBloomFilterTime: 15.995us - BlockConditionsFilteredDictTime: 166.513us - BlockConditionsFilteredTime: 338.224us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 112.94us - BlockInitSeekCount: 33 - BlockInitSeekTime: 51.455us - BlockInitTime: 522.715us - BlockLoadTime: 56.713ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 310.280us - FirstReadTime: 9.752ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.355us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 16.180ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 23.549ms - OutputIndexResultColumnTimer: 43.477us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 568.253K (568253) - RowsShortCircuitPredInput: 674.788K (674788) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.817ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.724ms PipelineXTask (index=25):(Active: 1.434ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 927.475us - CloseTime: 51.954us - GetBlockTime: 400.75us - OpenTime: 287.273us - PrepareTime: 158.946us - SinkTime: 170.488us - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.368ms - WaitBfTime: 257.130ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.560ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 164.710us - InputRows: 138.361K (138361) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.32us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 25.655us - BlocksProduced: 37 - CloseTime: 48.690us - ExecTime: 242.7ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 360.150us - ProcessConjunctTime: 164.698us - ProjectionTime: 1.588ms - RowsProduced: 138.361K (138361) - RowsRead: 138.361K (138361) - RuntimeFilterInfo: - filter id = -1 filtered: 918.412K (918412) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 115.437ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 239.593ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [116.214ms, ] - PerScannerRowsRead: [138.36K, ] - PerScannerWaitTime: [115.437ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 114.455ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 665.23us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.454us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.619ms - ScannerCtxSchedTime: 115.430ms - ScannerFilterTime: 172.637us - ScannerGetBlockTime: 115.928ms - ScannerInitTime: 72.271us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 918412] - BitmapIndexFilterTimer: 1.884us - BlockConditionsFilteredBloomFilterTime: 5.733us - BlockConditionsFilteredDictTime: 100.102us - BlockConditionsFilteredTime: 180.546us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 59.431us - BlockInitSeekCount: 25 - BlockInitSeekTime: 421.296us - BlockInitTime: 661.958us - BlockLoadTime: 115.766ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 159.45us - FirstReadTime: 64.514ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.295us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.735ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.317ms - OutputIndexResultColumnTimer: 47.186us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 459.206K (459206) - RowsShortCircuitPredInput: 597.567K (597567) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.576ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 15.246ms PipelineXTask (index=28):(Active: 22.36ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.181ms - CloseTime: 57.741us - GetBlockTime: 373.224us - OpenTime: 10.537ms - PrepareTime: 249.902us - SinkTime: 201.960us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.528ms - WaitBfTime: 258.654ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.321ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 194.903us - InputRows: 178.881K (178881) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.561us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.983us - BlocksProduced: 47 - CloseTime: 55.456us - ExecTime: 265.716ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 10.713ms - ProcessConjunctTime: 123.173us - ProjectionTime: 2.68ms - RowsProduced: 178.881K (178881) - RowsRead: 178.881K (178881) - RuntimeFilterInfo: - filter id = -1 filtered: 990.538K (990538) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 132.333ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.471ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [104.947ms, ] - PerScannerRowsRead: [178.88K, ] - PerScannerWaitTime: [132.333ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 102.988ms - MemoryUsage: - FreeBlocks: 5.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.85ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.728us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.913ms - ScannerCtxSchedTime: 132.329ms - ScannerFilterTime: 240.575us - ScannerGetBlockTime: 104.554ms - ScannerInitTime: 10.351ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 990538] - BitmapIndexFilterTimer: 2.92us - BlockConditionsFilteredBloomFilterTime: 5.913us - BlockConditionsFilteredDictTime: 119.889us - BlockConditionsFilteredTime: 225.756us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 76.653us - BlockInitSeekCount: 26 - BlockInitSeekTime: 203.746us - BlockInitTime: 542.757us - BlockLoadTime: 104.522ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 233.994us - FirstReadTime: 28.648ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.139us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 51.733ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.661ms - OutputIndexResultColumnTimer: 38.90us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 495.269K (495269) - RowsShortCircuitPredInput: 674.15K (674150) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 16.518ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.392ms PipelineXTask (index=31):(Active: 1.439ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 653.611us - CloseTime: 30.427us - GetBlockTime: 70.244us - OpenTime: 494.745us - PrepareTime: 250.621us - SinkTime: 58.301us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.395ms - WaitBfTime: 249.734ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.177ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 58.260us - InputRows: 24.594K (24594) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.174us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 56.903us - BlocksProduced: 7 - CloseTime: 28.990us - ExecTime: 116.723ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 689.900us - ProcessConjunctTime: 276.340us - ProjectionTime: 249.739us - RowsProduced: 24.594K (24594) - RowsRead: 24.594K (24594) - RuntimeFilterInfo: - filter id = -1 filtered: 333.578K (333578) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 108.18ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.670ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.075ms, ] - PerScannerRowsRead: [24.59K, ] - PerScannerWaitTime: [108.018ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.892ms - MemoryUsage: - FreeBlocks: 1.44 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 850.761us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 324ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.626ms - ScannerCtxSchedTime: 108.17ms - ScannerFilterTime: 39.346us - ScannerGetBlockTime: 5.10ms - ScannerInitTime: 128.708us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 333578] - BitmapIndexFilterTimer: 420ns - BlockConditionsFilteredBloomFilterTime: 1.533us - BlockConditionsFilteredDictTime: 20.242us - BlockConditionsFilteredTime: 48.154us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.257us - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.679us - BlockInitTime: 70.429us - BlockLoadTime: 5.630ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 39.850us - FirstReadTime: 1.55ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.116us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.977ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 421.742us - OutputIndexResultColumnTimer: 5.683us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 166.789K (166789) - RowsShortCircuitPredInput: 191.383K (191383) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 528.298us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 424.200us PipelineXTask (index=34):(Active: 710.604us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 320.313us - CloseTime: 42.840us - GetBlockTime: 54.371us - OpenTime: 191.22us - PrepareTime: 148.301us - SinkTime: 53.534us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 659.253us - WaitBfTime: 276.261ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.558ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 53.308us - InputRows: 28.487K (28487) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.327us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 18, type = minmax), RuntimeFilter: (id = 19, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 23.251us - BlocksProduced: 8 - CloseTime: 41.357us - ExecTime: 161.796ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 267.936us - ProcessConjunctTime: 121.835us - ProjectionTime: 22.526ms - RowsProduced: 28.487K (28487) - RowsRead: 28.487K (28487) - RuntimeFilterInfo: - filter id = -1 filtered: 344.766K (344766) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 108.677ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 138.897ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 18, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 19, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.534ms, ] - PerScannerRowsRead: [28.49K, ] - PerScannerWaitTime: [108.677ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.252ms - MemoryUsage: - FreeBlocks: 1.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 758.647us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 245ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.163ms - ScannerCtxSchedTime: 108.668ms - ScannerFilterTime: 66.927us - ScannerGetBlockTime: 5.432ms - ScannerInitTime: 29.776us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 344766] - BitmapIndexFilterTimer: 512ns - BlockConditionsFilteredBloomFilterTime: 1.547us - BlockConditionsFilteredDictTime: 18.640us - BlockConditionsFilteredTime: 58.822us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 30.835us - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.523us - BlockInitTime: 91.845us - BlockLoadTime: 5.840ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 61.621us - FirstReadTime: 1.65ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.876us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.723ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 598.424us - OutputIndexResultColumnTimer: 7.860us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 172.383K (172383) - RowsShortCircuitPredInput: 200.87K (200870) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 636.309us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 514.48us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 226.352us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 151.167us - CloseTime: 14.143us - GetBlockTime: 6.440us - OpenTime: 3.300us - PrepareTime: 53.190us - SinkTime: 119.292us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 203.763us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.62ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.484us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.943us - BuildTableInsertTime: 35.762us - BuildTableTime: 44.544us - CloseTime: 0ns - ExecTime: 134.594us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 15.663us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.254us - RuntimeFilterComputeTime: 17.208us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=44): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.464us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.528us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 16.247us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 241.91ms PipelineXTask (index=5):(Active: 158.389us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.350us - CloseTime: 7.85us - GetBlockTime: 0ns - OpenTime: 2.287us - PrepareTime: 107.567us - SinkTime: 19.506us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.779us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.743ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 80.676us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 61.366us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 256.235ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.577us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.318us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.951us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 143.829us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.99us - CloseTime: 13.792us - GetBlockTime: 0ns - OpenTime: 3.988us - PrepareTime: 53.6us - SinkTime: 38.762us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.530us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.353ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 53.315us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.875us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 237.375ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.482us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.838us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.528us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 132.873us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 47.145us - CloseTime: 15.398us - GetBlockTime: 0ns - OpenTime: 3.33us - PrepareTime: 62.412us - SinkTime: 28.573us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.754us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.850ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.779us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.410us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 242.113ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.437us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 107.396us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.537us - CloseTime: 4.698us - GetBlockTime: 0ns - OpenTime: 2.322us - PrepareTime: 64.686us - SinkTime: 13.927us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.446us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.975ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.10us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.205us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 242.45ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.21us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.477us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 245.65us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 51.836us - CloseTime: 14.758us - GetBlockTime: 0ns - OpenTime: 2.36us - PrepareTime: 171.334us - SinkTime: 36.729us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 225.62us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.214ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 159.238us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 123.31us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 245.374ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.621us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.124us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.752us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 179.890us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 44.266us - CloseTime: 4.904us - GetBlockTime: 0ns - OpenTime: 1.560us - PrepareTime: 124.725us - SinkTime: 31.518us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 168.983us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.305ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 97.38us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 65.790us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 245.346ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.847us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.212us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 39.901us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 98.899us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.424us - CloseTime: 4.689us - GetBlockTime: 0ns - OpenTime: 1.785us - PrepareTime: 62.890us - SinkTime: 13.26us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.455us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.359ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.773us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.966us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 245.329ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.923us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 108.92us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 40.322us - CloseTime: 7.706us - GetBlockTime: 0ns - OpenTime: 2.274us - PrepareTime: 53.648us - SinkTime: 23.24us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.722us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.460ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.493us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.888us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 257.626ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.676us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.738us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 107.513us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.698us - CloseTime: 5.130us - GetBlockTime: 0ns - OpenTime: 2.120us - PrepareTime: 68.438us - SinkTime: 11.127us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.622us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.760ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.357us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.380us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 256.195ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.609us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.709us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 142.331us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.888us - CloseTime: 16.832us - GetBlockTime: 0ns - OpenTime: 2.967us - PrepareTime: 64.126us - SinkTime: 34.211us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.922us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.660ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 57.234us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.910us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 254.357ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.72us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.260us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 179.695us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.727us - CloseTime: 5.59us - GetBlockTime: 0ns - OpenTime: 2.227us - PrepareTime: 127.185us - SinkTime: 17.30us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.835us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.946ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fea - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.446us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.626us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 242.67ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.129us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.227us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.164us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 135: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 513.895us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 196.760us - CloseTime: 40.35us - GetBlockTime: 36.909us - OpenTime: 131.636us - PrepareTime: 137.506us - SinkTime: 10.943us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 466.96us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.657ms DATA_STREAM_SINK_OPERATOR (id=44,dst_id=44): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.685us - CompressTime: 0ns - ExecTime: 51.821us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 7.365us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 29.274us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 109 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=43. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{USER_NAME is [not null]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 632ns - BlocksProduced: 1 - CloseTime: 26.760us - ExecTime: 170.97ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 196.683us - ProcessConjunctTime: 48.890us - ProjectionTime: 4.388us - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 169.605ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 169.832ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, USER_NAME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=2, opposite=false - PerScannerRunningTime: [27.375us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [169.605ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.987us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 143.860us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 96ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 225.879us - ScannerCtxSchedTime: 169.604ms - ScannerFilterTime: 723ns - ScannerGetBlockTime: 23.347us - ScannerInitTime: 55.960us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 326ns - BlockConditionsFilteredBloomFilterTime: 1.81us - BlockConditionsFilteredDictTime: 11.480us - BlockConditionsFilteredTime: 21.998us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.474us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.910us - BlockInitTime: 47.555us - BlockLoadTime: 65.409us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 2.938us - FirstReadTime: 5.75us - IOTimer: 0ns - InvertedIndexFilterTime: 1.833us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.930us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.967us - OutputIndexResultColumnTimer: 250ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 109 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 720ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 200ns Fragment 136: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 347.139us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 166.142us - CloseTime: 8.881us - GetBlockTime: 35.57us - OpenTime: 2.504us - PrepareTime: 154.94us - SinkTime: 109.970us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 329.625us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.213ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.946us - CompressTime: 0ns - ExecTime: 224.179us - InputRows: 47 - LocalBytesSent: 1.47 KB - LocalSendTime: 53.898us - LocalSentRows: 47 - MemoryUsage: - PeakMemoryUsage: 4.47 KB - MergeBlockTime: 0ns - OpenTime: 106.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 47 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.217us - SplitBlockHashComputeTime: 3.198us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 256ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.56us - GetResultsTime: 16.970us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 947ns - HashTableSize: 47 - InsertKeysToColumnTime: 9.217us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.293us - ProjectionTime: 14.143us - RowsProduced: 47 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s615ms PipelineXTask (index=2):(Active: 476.855us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 338.197us - CloseTime: 21.422us - GetBlockTime: 78.678us - OpenTime: 2.637us - PrepareTime: 108.620us - SinkTime: 230.247us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 447.441us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.283ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.106us - CompressTime: 0ns - ExecTime: 324.611us - InputRows: 45 - LocalBytesSent: 1.41 KB - LocalSendTime: 108.420us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 4.75 KB - MergeBlockTime: 0ns - OpenTime: 76.646us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 45 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 16.777us - SplitBlockHashComputeTime: 6.718us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 789ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.859us - GetResultsTime: 24.637us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.866us - HashTableSize: 45 - InsertKeysToColumnTime: 11.43us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.659us - ProjectionTime: 37.495us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s594ms PipelineXTask (index=4):(Active: 287.441us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 160.81us - CloseTime: 8.671us - GetBlockTime: 35.750us - OpenTime: 3.340us - PrepareTime: 108.107us - SinkTime: 95.931us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 267.515us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.202ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.659us - CompressTime: 0ns - ExecTime: 183.735us - InputRows: 48 - LocalBytesSent: 1.50 KB - LocalSendTime: 36.595us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 4.63 KB - MergeBlockTime: 0ns - OpenTime: 80.583us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 48 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 8.838us - SplitBlockHashComputeTime: 3.421us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 288ns - DeserializeAndMergeTime: 0ns - ExecTime: 42.839us - GetResultsTime: 19.775us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.39us - HashTableSize: 48 - InsertKeysToColumnTime: 10.523us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.398us - ProjectionTime: 12.369us - RowsProduced: 48 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s616ms PipelineXTask (index=6):(Active: 403.867us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 237.473us - CloseTime: 16.316us - GetBlockTime: 48.457us - OpenTime: 2.40us - PrepareTime: 128.291us - SinkTime: 167.85us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 381.517us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.235ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.378us - CompressTime: 0ns - ExecTime: 269.790us - InputRows: 45 - LocalBytesSent: 1.41 KB - LocalSendTime: 86.473us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 4.63 KB - MergeBlockTime: 0ns - OpenTime: 89.53us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 45 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.712us - SplitBlockHashComputeTime: 6.431us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 522ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.2us - GetResultsTime: 15.928us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.259us - HashTableSize: 45 - InsertKeysToColumnTime: 7.583us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.69us - ProjectionTime: 24.279us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s604ms PipelineXTask (index=8):(Active: 340.905us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 205.895us - CloseTime: 11.59us - GetBlockTime: 53.209us - OpenTime: 2.240us - PrepareTime: 115.377us - SinkTime: 131.259us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 319.678us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.554ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.783us - CompressTime: 0ns - ExecTime: 221.973us - InputRows: 36 - LocalBytesSent: 1.13 KB - LocalSendTime: 71.256us - LocalSentRows: 36 - MemoryUsage: - PeakMemoryUsage: 4.19 KB - MergeBlockTime: 0ns - OpenTime: 81.491us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 36 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.740us - SplitBlockHashComputeTime: 3.637us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 287ns - DeserializeAndMergeTime: 0ns - ExecTime: 62.522us - GetResultsTime: 25.900us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.211us - HashTableSize: 36 - InsertKeysToColumnTime: 12.61us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.157us - ProjectionTime: 21.291us - RowsProduced: 36 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s613ms PipelineXTask (index=10):(Active: 300.461us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 182.302us - CloseTime: 9.817us - GetBlockTime: 56.748us - OpenTime: 1.926us - PrepareTime: 100.748us - SinkTime: 110.35us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 284.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.764ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.345us - CompressTime: 0ns - ExecTime: 191.778us - InputRows: 52 - LocalBytesSent: 1.63 KB - LocalSendTime: 42.192us - LocalSentRows: 52 - MemoryUsage: - PeakMemoryUsage: 4.78 KB - MergeBlockTime: 0ns - OpenTime: 73.748us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 52 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 12.135us - SplitBlockHashComputeTime: 3.807us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 620ns - DeserializeAndMergeTime: 0ns - ExecTime: 64.356us - GetResultsTime: 30.904us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.225us - HashTableSize: 52 - InsertKeysToColumnTime: 12.43us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.743us - ProjectionTime: 21.51us - RowsProduced: 52 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s613ms PipelineXTask (index=12):(Active: 323.369us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 177.25us - CloseTime: 10.441us - GetBlockTime: 46.415us - OpenTime: 2.9us - PrepareTime: 127.446us - SinkTime: 115.438us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 306.435us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.705ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.165us - CompressTime: 0ns - ExecTime: 202.175us - InputRows: 45 - LocalBytesSent: 1.41 KB - LocalSendTime: 48.824us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 4.59 KB - MergeBlockTime: 0ns - OpenTime: 78.29us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 45 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 9.902us - SplitBlockHashComputeTime: 3.794us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 449ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.122us - GetResultsTime: 22.642us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.48us - HashTableSize: 45 - InsertKeysToColumnTime: 13.212us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.90us - ProjectionTime: 18.845us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s603ms PipelineXTask (index=14):(Active: 272.723us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 148.963us - CloseTime: 20.546us - GetBlockTime: 32.474us - OpenTime: 2.755us - PrepareTime: 93.906us - SinkTime: 94.820us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 244.224us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.991ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.960us - CompressTime: 0ns - ExecTime: 182.558us - InputRows: 45 - LocalBytesSent: 1.41 KB - LocalSendTime: 33.730us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 4.50 KB - MergeBlockTime: 0ns - OpenTime: 68.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 45 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.240us - SplitBlockHashComputeTime: 3.88us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 492ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.847us - GetResultsTime: 17.113us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1000ns - HashTableSize: 45 - InsertKeysToColumnTime: 9.929us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.334us - ProjectionTime: 12.337us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s616ms PipelineXTask (index=16):(Active: 446.876us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 264.6us - CloseTime: 14.469us - GetBlockTime: 49.507us - OpenTime: 3.225us - PrepareTime: 159.696us - SinkTime: 188.640us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 424.539us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.221ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.741us - CompressTime: 0ns - ExecTime: 327.780us - InputRows: 39 - LocalBytesSent: 1.22 KB - LocalSendTime: 98.560us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 4.31 KB - MergeBlockTime: 0ns - OpenTime: 127.18us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 39 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.800us - SplitBlockHashComputeTime: 5.172us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 444ns - DeserializeAndMergeTime: 0ns - ExecTime: 57.249us - GetResultsTime: 14.943us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.732us - HashTableSize: 39 - InsertKeysToColumnTime: 7.263us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.967us - ProjectionTime: 24.515us - RowsProduced: 39 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s604ms PipelineXTask (index=18):(Active: 459.225us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 256.506us - CloseTime: 16.193us - GetBlockTime: 59.886us - OpenTime: 2.510us - PrepareTime: 176.827us - SinkTime: 167.239us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 433.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.599ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.556us - CompressTime: 0ns - ExecTime: 323.363us - InputRows: 41 - LocalBytesSent: 1.28 KB - LocalSendTime: 84.559us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 4.19 KB - MergeBlockTime: 0ns - OpenTime: 142.50us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 41 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 15.61us - SplitBlockHashComputeTime: 4.467us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 460ns - DeserializeAndMergeTime: 0ns - ExecTime: 66.739us - GetResultsTime: 23.645us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.795us - HashTableSize: 41 - InsertKeysToColumnTime: 4.602us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.854us - ProjectionTime: 26.41us - RowsProduced: 41 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s609ms PipelineXTask (index=20):(Active: 348.51us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 209.256us - CloseTime: 12.333us - GetBlockTime: 48.745us - OpenTime: 4.243us - PrepareTime: 116.37us - SinkTime: 123.355us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 325.936us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.960ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.981us - CompressTime: 0ns - ExecTime: 209.925us - InputRows: 53 - LocalBytesSent: 1.66 KB - LocalSendTime: 61.336us - LocalSentRows: 53 - MemoryUsage: - PeakMemoryUsage: 5.03 KB - MergeBlockTime: 0ns - OpenTime: 76.237us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 53 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 10.264us - SplitBlockHashComputeTime: 6.700us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 358ns - DeserializeAndMergeTime: 0ns - ExecTime: 69.231us - GetResultsTime: 21.149us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.369us - HashTableSize: 53 - InsertKeysToColumnTime: 14.89us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 20.958us - ProjectionTime: 19.638us - RowsProduced: 53 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s606ms PipelineXTask (index=22):(Active: 343.221us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 200.292us - CloseTime: 17.562us - GetBlockTime: 48.597us - OpenTime: 3.78us - PrepareTime: 115.435us - SinkTime: 129.558us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 318.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.745ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.98us - CompressTime: 0ns - ExecTime: 221.878us - InputRows: 46 - LocalBytesSent: 1.44 KB - LocalSendTime: 60.841us - LocalSentRows: 46 - MemoryUsage: - PeakMemoryUsage: 4.75 KB - MergeBlockTime: 0ns - OpenTime: 78.529us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 46 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 11.33us - SplitBlockHashComputeTime: 4.23us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=41): - BlocksProduced: 1 - CloseTime: 963ns - DeserializeAndMergeTime: 0ns - ExecTime: 56.148us - GetResultsTime: 17.153us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.105us - HashTableSize: 46 - InsertKeysToColumnTime: 4.937us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.750us - ProjectionTime: 20.755us - RowsProduced: 46 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 4s591ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 358.118us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 270.448us - CloseTime: 11.895us - GetBlockTime: 73.374us - OpenTime: 3.411us - PrepareTime: 67.36us - SinkTime: 135.746us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 329.695us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.761ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 819ns - DeserializeAndMergeTime: 23.654us - ExecTime: 166.55us - ExprTime: 0ns - HashTableComputeTime: 76.824us - HashTableEmplaceTime: 43.98us - HashTableInputCount: 58 - InputRows: 58 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 118.961us - OpenTime: 32.753us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 10.13us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 96.700us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.66 KB - MemoryUsage: - Blocks: 4.59 KB - PeakMemoryUsage: 4.59 KB - OpenTime: 18.721us - ProjectionTime: 0ns - RowsProduced: 58 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s557ms PipelineXTask (index=3):(Active: 13.383ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.315ms - CloseTime: 6.505us - GetBlockTime: 90.778us - OpenTime: 2.522us - PrepareTime: 54.232us - SinkTime: 13.146ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 375.477us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.108ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 942ns - DeserializeAndMergeTime: 20.610us - ExecTime: 13.159ms - ExprTime: 0ns - HashTableComputeTime: 13.86ms - HashTableEmplaceTime: 43.344us - HashTableInputCount: 47 - InputRows: 47 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 13.127ms - OpenTime: 16.882us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.518us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.426us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.91 KB - MemoryUsage: - Blocks: 3.28 KB - PeakMemoryUsage: 3.28 KB - OpenTime: 16.92us - ProjectionTime: 0ns - RowsProduced: 47 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s518ms PipelineXTask (index=5):(Active: 326.209us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 241.375us - CloseTime: 3.597us - GetBlockTime: 70.688us - OpenTime: 3.258us - PrepareTime: 70.559us - SinkTime: 123.512us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 307.489us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.52ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 444ns - DeserializeAndMergeTime: 20.624us - ExecTime: 148.741us - ExprTime: 0ns - HashTableComputeTime: 79.36us - HashTableEmplaceTime: 39.155us - HashTableInputCount: 60 - InputRows: 60 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 113.775us - OpenTime: 26.572us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.773us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.13us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.75 KB - MemoryUsage: - Blocks: 5.44 KB - PeakMemoryUsage: 5.44 KB - OpenTime: 15.829us - ProjectionTime: 0ns - RowsProduced: 60 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s574ms PipelineXTask (index=7):(Active: 275.884us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 216.129us - CloseTime: 4.808us - GetBlockTime: 49.595us - OpenTime: 3.397us - PrepareTime: 45.591us - SinkTime: 125.930us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 260.894us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.300ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 328ns - DeserializeAndMergeTime: 16.94us - ExecTime: 141.690us - ExprTime: 0ns - HashTableComputeTime: 80.579us - HashTableEmplaceTime: 39.90us - HashTableInputCount: 52 - InputRows: 52 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 115.873us - OpenTime: 18.14us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.176us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.19 KB - MemoryUsage: - Blocks: 4.81 KB - PeakMemoryUsage: 4.81 KB - OpenTime: 14.914us - ProjectionTime: 0ns - RowsProduced: 52 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s573ms PipelineXTask (index=9):(Active: 263.53us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 196.20us - CloseTime: 3.821us - GetBlockTime: 52.502us - OpenTime: 2.848us - PrepareTime: 54.699us - SinkTime: 106.394us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.733us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.502ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 253ns - DeserializeAndMergeTime: 12.969us - ExecTime: 121.996us - ExprTime: 0ns - HashTableComputeTime: 72.142us - HashTableEmplaceTime: 44.543us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 98.66us - OpenTime: 16.991us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 3.89us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.993us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.69 KB - MemoryUsage: - Blocks: 4.47 KB - PeakMemoryUsage: 4.47 KB - OpenTime: 18.576us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s573ms PipelineXTask (index=11):(Active: 256.940us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 186.689us - CloseTime: 3.408us - GetBlockTime: 43.896us - OpenTime: 2.875us - PrepareTime: 58.956us - SinkTime: 106.895us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 243.949us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.676ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 652ns - DeserializeAndMergeTime: 21.206us - ExecTime: 126.641us - ExprTime: 0ns - HashTableComputeTime: 65.786us - HashTableEmplaceTime: 46.764us - HashTableInputCount: 66 - InputRows: 66 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 99.346us - OpenTime: 20.542us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.410us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.47 KB - MemoryUsage: - Blocks: 4.84 KB - PeakMemoryUsage: 4.84 KB - OpenTime: 23.306us - ProjectionTime: 0ns - RowsProduced: 66 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s572ms PipelineXTask (index=13):(Active: 297.996us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 229.187us - CloseTime: 3.487us - GetBlockTime: 55.177us - OpenTime: 3.65us - PrepareTime: 56.547us - SinkTime: 132.513us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 283.739us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.801ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 600ns - DeserializeAndMergeTime: 23.371us - ExecTime: 148.346us - ExprTime: 0ns - HashTableComputeTime: 84.113us - HashTableEmplaceTime: 58.319us - HashTableInputCount: 59 - InputRows: 59 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 120.188us - OpenTime: 18.346us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.467us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.66 KB - MemoryUsage: - Blocks: 3.88 KB - PeakMemoryUsage: 3.88 KB - OpenTime: 21.592us - ProjectionTime: 0ns - RowsProduced: 59 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s525ms PipelineXTask (index=15):(Active: 284.88us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 170.37us - CloseTime: 2.132us - GetBlockTime: 42.20us - OpenTime: 2.875us - PrepareTime: 102.367us - SinkTime: 93.376us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.11us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.814ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 334ns - DeserializeAndMergeTime: 14.107us - ExecTime: 123.571us - ExprTime: 0ns - HashTableComputeTime: 60.849us - HashTableEmplaceTime: 45.942us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 85.3us - OpenTime: 31.95us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 1.476us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.511us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.25 KB - MemoryUsage: - Blocks: 4.56 KB - PeakMemoryUsage: 4.56 KB - OpenTime: 41.487us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s572ms PipelineXTask (index=17):(Active: 303.690us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 233.843us - CloseTime: 9.243us - GetBlockTime: 59.735us - OpenTime: 2.593us - PrepareTime: 52.613us - SinkTime: 131.941us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.802us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.664ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 467ns - DeserializeAndMergeTime: 19.558us - ExecTime: 144.549us - ExprTime: 0ns - HashTableComputeTime: 82.435us - HashTableEmplaceTime: 57.219us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 118.330us - OpenTime: 14.658us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.396us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.516us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.00 KB - MemoryUsage: - Blocks: 4.06 KB - PeakMemoryUsage: 4.06 KB - OpenTime: 17.19us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s548ms PipelineXTask (index=19):(Active: 314.33us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 236.962us - CloseTime: 8.96us - GetBlockTime: 60.836us - OpenTime: 3.178us - PrepareTime: 60.819us - SinkTime: 125.768us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 295.161us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.753ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 851ns - DeserializeAndMergeTime: 19.60us - ExecTime: 145.513us - ExprTime: 0ns - HashTableComputeTime: 70.930us - HashTableEmplaceTime: 34.383us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 110.796us - OpenTime: 21.720us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.318us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.675us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.06 KB - MemoryUsage: - Blocks: 3.38 KB - PeakMemoryUsage: 3.38 KB - OpenTime: 19.936us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s519ms PipelineXTask (index=21):(Active: 326.419us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 255.251us - CloseTime: 5.490us - GetBlockTime: 84.977us - OpenTime: 4.602us - PrepareTime: 55.98us - SinkTime: 123.120us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.24us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.910ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 713ns - DeserializeAndMergeTime: 21.375us - ExecTime: 135.437us - ExprTime: 0ns - HashTableComputeTime: 76.462us - HashTableEmplaceTime: 50.293us - HashTableInputCount: 67 - InputRows: 67 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 111.859us - OpenTime: 13.809us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.793us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.25 KB - MemoryUsage: - Blocks: 4.06 KB - PeakMemoryUsage: 4.06 KB - OpenTime: 14.434us - ProjectionTime: 0ns - RowsProduced: 67 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s530ms PipelineXTask (index=23):(Active: 243.434us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 170.91us - CloseTime: 2.522us - GetBlockTime: 46.143us - OpenTime: 3.770us - PrepareTime: 61.658us - SinkTime: 87.251us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.767us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.378ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 845ns - DeserializeAndMergeTime: 19.442us - ExecTime: 102.567us - ExprTime: 0ns - HashTableComputeTime: 51.281us - HashTableEmplaceTime: 35.314us - HashTableInputCount: 56 - InputRows: 56 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 79.289us - OpenTime: 16.442us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 1.365us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.50 KB - MemoryUsage: - Blocks: 4.00 KB - PeakMemoryUsage: 4.00 KB - OpenTime: 27.955us - ProjectionTime: 0ns - RowsProduced: 56 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s523ms Fragment 137: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 75.162ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 74.797ms - CloseTime: 109.430us - GetBlockTime: 74.22ms - OpenTime: 20.24us - PrepareTime: 222.294us - SinkTime: 183.296us - GetBlockCounter: 146 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.431ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s99ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.187us - CompressTime: 0ns - ExecTime: 276.433us - InputRows: 62 - LocalBytesSent: 3.03 KB - LocalSendTime: 75.414us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 7.94 KB - MergeBlockTime: 0ns - OpenTime: 80.437us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 62 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.77us - SplitBlockHashComputeTime: 5.100us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 213.569us - CloseTime: 12.491us - DeserializeAndMergeTime: 0ns - ExecTime: 346.823us - ExprTime: 22.264us - GetResultsTime: 50.626us - HashTableComputeTime: 119.17us - HashTableEmplaceTime: 93.271us - HashTableInputCount: 62 - HashTableIterateTime: 2.565us - HashTableSize: 62 - InsertKeysToColumnTime: 16.163us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 27.368us - ProjectionTime: 0ns - RowsProduced: 62 - SerializeDataTime: 23.557us - SerializeKeyTime: 0ns - SerializeResultTime: 53.313us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 14.928us - ExecTime: 818.44us - InitProbeSideTime: 56.626us - JoinFilterTimer: 1.84us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.455us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.301us - ProbeFindNextTime: 0ns - ProbeRows: 62 - ProbeTime: 402.377us - ProbeWhenBuildSideOutputTime: 44.994us - ProbeWhenProbeSideOutputTime: 14.950us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 47.502us - ProjectionTime: 311.826us - RowsProduced: 62 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 54.14us - ExecTime: 62.154ms - InitProbeSideTime: 15.169ms - JoinFilterTimer: 2.152ms - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 12.747us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.221us - ProbeFindNextTime: 0ns - ProbeRows: 577.548K (577548) - ProbeTime: 61.244ms - ProbeWhenBuildSideOutputTime: 2.102ms - ProbeWhenProbeSideOutputTime: 484.474us - ProbeWhenProcessHashTableTime: 23.234ms - ProbeWhenSearchHashTableTime: 16.639ms - ProjectionTime: 310.243us - RowsProduced: 62 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s408ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 145 - BytesReceived: 0.00 - CloseTime: 9.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 10.326ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.12 MB - MemoryUsage: - Blocks: 5.45 MB - PeakMemoryUsage: 5.45 MB - OpenTime: 23.484us - ProjectionTime: 0ns - RowsProduced: 577.548K (577548) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s986ms PipelineXTask (index=3):(Active: 316.231ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 315.975ms - CloseTime: 41.556us - GetBlockTime: 312.836ms - OpenTime: 9.0us - PrepareTime: 193.85us - SinkTime: 124.731us - GetBlockCounter: 1.603K (1603) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 227.1ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 909.991ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.923us - CompressTime: 0ns - ExecTime: 201.412us - InputRows: 43 - LocalBytesSent: 2.10 KB - LocalSendTime: 52.334us - LocalSentRows: 43 - MemoryUsage: - PeakMemoryUsage: 6.69 KB - MergeBlockTime: 0ns - OpenTime: 67.75us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 43 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.439us - SplitBlockHashComputeTime: 3.939us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 173.528us - CloseTime: 4.658us - DeserializeAndMergeTime: 0ns - ExecTime: 258.294us - ExprTime: 19.816us - GetResultsTime: 31.654us - HashTableComputeTime: 87.909us - HashTableEmplaceTime: 65.154us - HashTableInputCount: 43 - HashTableIterateTime: 1.344us - HashTableSize: 43 - InsertKeysToColumnTime: 13.570us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 19.709us - ProjectionTime: 0ns - RowsProduced: 43 - SerializeDataTime: 13.179us - SerializeKeyTime: 0ns - SerializeResultTime: 33.249us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 14 - BuildOutputBlock: 0ns - CloseTime: 9.69us - ExecTime: 1.990ms - InitProbeSideTime: 65.208us - JoinFilterTimer: 771ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.292us - ProbeFindNextTime: 0ns - ProbeRows: 45 - ProbeTime: 320.182us - ProbeWhenBuildSideOutputTime: 39.696us - ProbeWhenProbeSideOutputTime: 12.483us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.641us - ProjectionTime: 1.447ms - RowsProduced: 43 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 9.632us - ExecTime: 261.578ms - InitProbeSideTime: 150.38ms - JoinFilterTimer: 9.469ms - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 257.402us - ProbeFindNextTime: 0ns - ProbeRows: 10.976264M (10976264) - ProbeTime: 245.601ms - ProbeWhenBuildSideOutputTime: 4.784ms - ProbeWhenProbeSideOutputTime: 2.75ms - ProbeWhenProcessHashTableTime: 77.721us - ProbeWhenSearchHashTableTime: 69.216ms - ProjectionTime: 2.56ms - RowsProduced: 45 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s424ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 1.602K (1602) - BytesReceived: 0.00 - CloseTime: 5.56us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.710ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 192.43 MB - MemoryUsage: - Blocks: 19.73 MB - PeakMemoryUsage: 19.73 MB - OpenTime: 17.58us - ProjectionTime: 0ns - RowsProduced: 10.976264M (10976264) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s940ms PipelineXTask (index=6):(Active: 56.231ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 55.956ms - CloseTime: 51.255us - GetBlockTime: 55.198ms - OpenTime: 8.576us - PrepareTime: 206.154us - SinkTime: 162.472us - GetBlockCounter: 146 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.74ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s60ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.729us - CompressTime: 0ns - ExecTime: 248.286us - InputRows: 49 - LocalBytesSent: 2.41 KB - LocalSendTime: 71.979us - LocalSentRows: 49 - MemoryUsage: - PeakMemoryUsage: 7.28 KB - MergeBlockTime: 0ns - OpenTime: 71.467us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 49 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.228us - SplitBlockHashComputeTime: 4.852us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 134.544us - CloseTime: 7.15us - DeserializeAndMergeTime: 0ns - ExecTime: 226.618us - ExprTime: 12.373us - GetResultsTime: 32.570us - HashTableComputeTime: 78.748us - HashTableEmplaceTime: 59.400us - HashTableInputCount: 50 - HashTableIterateTime: 1.831us - HashTableSize: 49 - InsertKeysToColumnTime: 6.202us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 21.400us - ProjectionTime: 0ns - RowsProduced: 49 - SerializeDataTime: 15.835us - SerializeKeyTime: 0ns - SerializeResultTime: 34.992us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 11.244us - ExecTime: 669.174us - InitProbeSideTime: 43.685us - JoinFilterTimer: 955ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.296us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.469us - ProbeFindNextTime: 0ns - ProbeRows: 50 - ProbeTime: 302.656us - ProbeWhenBuildSideOutputTime: 34.819us - ProbeWhenProbeSideOutputTime: 27.299us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.889us - ProjectionTime: 273.825us - RowsProduced: 50 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 7.596us - ExecTime: 51.751ms - InitProbeSideTime: 28.222ms - JoinFilterTimer: 2.272ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 9.95us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 44.678us - ProbeFindNextTime: 0ns - ProbeRows: 577.506K (577506) - ProbeTime: 50.890ms - ProbeWhenBuildSideOutputTime: 2.234ms - ProbeWhenProbeSideOutputTime: 511.966us - ProbeWhenProcessHashTableTime: 81.205us - ProbeWhenSearchHashTableTime: 16.38ms - ProjectionTime: 335.99us - RowsProduced: 50 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s408ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 145 - BytesReceived: 0.00 - CloseTime: 7.172us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.99ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.30 MB - MemoryUsage: - Blocks: 9.82 MB - PeakMemoryUsage: 9.82 MB - OpenTime: 14.424us - ProjectionTime: 0ns - RowsProduced: 577.506K (577506) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s69ms PipelineXTask (index=9):(Active: 45.238ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 44.903ms - CloseTime: 75.565us - GetBlockTime: 44.176ms - OpenTime: 10.151us - PrepareTime: 237.606us - SinkTime: 131.476us - GetBlockCounter: 145 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.549ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s110ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.3us - CompressTime: 0ns - ExecTime: 224.666us - InputRows: 55 - LocalBytesSent: 2.72 KB - LocalSendTime: 58.974us - LocalSentRows: 55 - MemoryUsage: - PeakMemoryUsage: 7.34 KB - MergeBlockTime: 0ns - OpenTime: 81.954us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 55 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 18.789us - SplitBlockHashComputeTime: 4.685us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 150.690us - CloseTime: 6.678us - DeserializeAndMergeTime: 0ns - ExecTime: 253.690us - ExprTime: 12.81us - GetResultsTime: 32.856us - HashTableComputeTime: 86.247us - HashTableEmplaceTime: 61.23us - HashTableInputCount: 57 - HashTableIterateTime: 1.268us - HashTableSize: 55 - InsertKeysToColumnTime: 6.600us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 31.924us - ProjectionTime: 0ns - RowsProduced: 55 - SerializeDataTime: 16.463us - SerializeKeyTime: 0ns - SerializeResultTime: 35.256us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 39.402us - ExecTime: 651.917us - InitProbeSideTime: 47.340us - JoinFilterTimer: 1.42us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.882us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.316us - ProbeFindNextTime: 0ns - ProbeRows: 59 - ProbeTime: 292.95us - ProbeWhenBuildSideOutputTime: 38.459us - ProbeWhenProbeSideOutputTime: 11.842us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.250us - ProjectionTime: 255.376us - RowsProduced: 57 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 5.966us - ExecTime: 40.727ms - InitProbeSideTime: 15.129ms - JoinFilterTimer: 2.989ms - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 14.314us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 38.211us - ProbeFindNextTime: 0ns - ProbeRows: 576.75K (576750) - ProbeTime: 39.815ms - ProbeWhenBuildSideOutputTime: 2.294ms - ProbeWhenProbeSideOutputTime: 567.857us - ProbeWhenProcessHashTableTime: 68.115us - ProbeWhenSearchHashTableTime: 17.139ms - ProjectionTime: 342.376us - RowsProduced: 59 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s424ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 144 - BytesReceived: 0.00 - CloseTime: 7.103us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.157ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.91 MB - MemoryUsage: - Blocks: 11.57 MB - PeakMemoryUsage: 11.57 MB - OpenTime: 19.597us - ProjectionTime: 0ns - RowsProduced: 576.75K (576750) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s17ms PipelineXTask (index=12):(Active: 46.596ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 46.284ms - CloseTime: 52.604us - GetBlockTime: 45.513ms - OpenTime: 7.606us - PrepareTime: 242.409us - SinkTime: 184.846us - GetBlockCounter: 144 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.193ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s1ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.72us - CompressTime: 0ns - ExecTime: 263.711us - InputRows: 44 - LocalBytesSent: 2.15 KB - LocalSendTime: 84.36us - LocalSentRows: 44 - MemoryUsage: - PeakMemoryUsage: 6.66 KB - MergeBlockTime: 0ns - OpenTime: 68.577us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 44 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.742us - SplitBlockHashComputeTime: 5.683us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 124.158us - CloseTime: 8.254us - DeserializeAndMergeTime: 0ns - ExecTime: 221.810us - ExprTime: 22.34us - GetResultsTime: 45.498us - HashTableComputeTime: 63.656us - HashTableEmplaceTime: 41.917us - HashTableInputCount: 44 - HashTableIterateTime: 4.691us - HashTableSize: 44 - InsertKeysToColumnTime: 10.278us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 24.87us - ProjectionTime: 0ns - RowsProduced: 44 - SerializeDataTime: 16.287us - SerializeKeyTime: 0ns - SerializeResultTime: 48.460us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.664us - ExecTime: 670.336us - InitProbeSideTime: 37.740us - JoinFilterTimer: 731ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 26.491us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.562us - ProbeFindNextTime: 0ns - ProbeRows: 44 - ProbeTime: 270.705us - ProbeWhenBuildSideOutputTime: 28.615us - ProbeWhenProbeSideOutputTime: 9.944us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.74us - ProjectionTime: 316.649us - RowsProduced: 44 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.445us - ExecTime: 42.148ms - InitProbeSideTime: 18.703ms - JoinFilterTimer: 2.228ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 14.470us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.21us - ProbeFindNextTime: 0ns - ProbeRows: 577.42K (577420) - ProbeTime: 41.240ms - ProbeWhenBuildSideOutputTime: 2.114ms - ProbeWhenProbeSideOutputTime: 537.309us - ProbeWhenProcessHashTableTime: 79.247us - ProbeWhenSearchHashTableTime: 15.991ms - ProjectionTime: 326.825us - RowsProduced: 44 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s411ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 143 - BytesReceived: 0.00 - CloseTime: 10.659us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.36ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.92 MB - MemoryUsage: - Blocks: 11.90 MB - PeakMemoryUsage: 11.90 MB - OpenTime: 18.310us - ProjectionTime: 0ns - RowsProduced: 577.42K (577420) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s128ms PipelineXTask (index=15):(Active: 45.892ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 45.577ms - CloseTime: 55.657us - GetBlockTime: 44.763ms - OpenTime: 10.3us - PrepareTime: 236.840us - SinkTime: 139.861us - GetBlockCounter: 144 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.686ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s126ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.764us - CompressTime: 0ns - ExecTime: 224.858us - InputRows: 74 - LocalBytesSent: 3.66 KB - LocalSendTime: 55.162us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 8.88 KB - MergeBlockTime: 0ns - OpenTime: 73.695us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 24.168us - SplitBlockHashComputeTime: 4.801us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 203.300us - CloseTime: 10.755us - DeserializeAndMergeTime: 0ns - ExecTime: 343.908us - ExprTime: 20.823us - GetResultsTime: 51.569us - HashTableComputeTime: 114.529us - HashTableEmplaceTime: 83.904us - HashTableInputCount: 77 - HashTableIterateTime: 2.865us - HashTableSize: 74 - InsertKeysToColumnTime: 19.128us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 49.919us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 24.207us - SerializeKeyTime: 0ns - SerializeResultTime: 54.179us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 13.875us - ExecTime: 808.14us - InitProbeSideTime: 67.471us - JoinFilterTimer: 1.180us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.280us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.510us - ProbeFindNextTime: 0ns - ProbeRows: 77 - ProbeTime: 411.150us - ProbeWhenBuildSideOutputTime: 49.141us - ProbeWhenProbeSideOutputTime: 18.520us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 57.601us - ProjectionTime: 300.913us - RowsProduced: 77 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 10.305us - ExecTime: 40.987ms - InitProbeSideTime: 14.591ms - JoinFilterTimer: 2.329ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 10.754us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 38.51us - ProbeFindNextTime: 0ns - ProbeRows: 577.133K (577133) - ProbeTime: 40.93ms - ProbeWhenBuildSideOutputTime: 2.569ms - ProbeWhenProbeSideOutputTime: 548.676us - ProbeWhenProcessHashTableTime: 92.934us - ProbeWhenSearchHashTableTime: 18.341ms - ProjectionTime: 341.47us - RowsProduced: 77 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s398ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 143 - BytesReceived: 0.00 - CloseTime: 5.540us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.157ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.94 MB - MemoryUsage: - Blocks: 5.44 MB - PeakMemoryUsage: 5.44 MB - OpenTime: 36.360us - ProjectionTime: 0ns - RowsProduced: 577.133K (577133) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s974ms PipelineXTask (index=18):(Active: 102.244ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 101.942ms - CloseTime: 69.21us - GetBlockTime: 101.87ms - OpenTime: 6.483us - PrepareTime: 214.743us - SinkTime: 163.736us - GetBlockCounter: 144 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 32 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 935.807ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.796us - CompressTime: 0ns - ExecTime: 254.103us - InputRows: 63 - LocalBytesSent: 3.09 KB - LocalSendTime: 77.81us - LocalSentRows: 63 - MemoryUsage: - PeakMemoryUsage: 8.16 KB - MergeBlockTime: 0ns - OpenTime: 80.89us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 63 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.989us - SplitBlockHashComputeTime: 5.750us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 179.80us - CloseTime: 11.155us - DeserializeAndMergeTime: 0ns - ExecTime: 292.683us - ExprTime: 14.537us - GetResultsTime: 51.330us - HashTableComputeTime: 105.269us - HashTableEmplaceTime: 79.613us - HashTableInputCount: 64 - HashTableIterateTime: 1.856us - HashTableSize: 63 - InsertKeysToColumnTime: 21.252us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 25.580us - ProjectionTime: 0ns - RowsProduced: 63 - SerializeDataTime: 19.778us - SerializeKeyTime: 0ns - SerializeResultTime: 53.919us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.341us - ExecTime: 697.365us - InitProbeSideTime: 51.248us - JoinFilterTimer: 724ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.237us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.843us - ProbeFindNextTime: 0ns - ProbeRows: 64 - ProbeTime: 311.541us - ProbeWhenBuildSideOutputTime: 32.966us - ProbeWhenProbeSideOutputTime: 10.735us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.230us - ProjectionTime: 301.751us - RowsProduced: 64 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 20.815us - ExecTime: 97.512ms - InitProbeSideTime: 44.231ms - JoinFilterTimer: 2.309ms - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 13.237us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 41.619us - ProbeFindNextTime: 0ns - ProbeRows: 577.039K (577039) - ProbeTime: 96.574ms - ProbeWhenBuildSideOutputTime: 2.251ms - ProbeWhenProbeSideOutputTime: 561.286us - ProbeWhenProcessHashTableTime: 81.68us - ProbeWhenSearchHashTableTime: 45.526ms - ProjectionTime: 337.211us - RowsProduced: 64 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s412ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 143 - BytesReceived: 0.00 - CloseTime: 9.948us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.99ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.88 MB - MemoryUsage: - Blocks: 7.35 MB - PeakMemoryUsage: 7.35 MB - OpenTime: 17.106us - ProjectionTime: 0ns - RowsProduced: 577.039K (577039) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s55ms PipelineXTask (index=21):(Active: 57.605ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 57.310ms - CloseTime: 59.697us - GetBlockTime: 56.528ms - OpenTime: 6.60us - PrepareTime: 220.471us - SinkTime: 150.793us - GetBlockCounter: 143 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.134ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s124ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.547us - CompressTime: 0ns - ExecTime: 268.727us - InputRows: 58 - LocalBytesSent: 2.83 KB - LocalSendTime: 77.224us - LocalSentRows: 58 - MemoryUsage: - PeakMemoryUsage: 7.66 KB - MergeBlockTime: 0ns - OpenTime: 104.926us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 58 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.228us - SplitBlockHashComputeTime: 5.524us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 166.792us - CloseTime: 12.397us - DeserializeAndMergeTime: 0ns - ExecTime: 271.952us - ExprTime: 22.152us - GetResultsTime: 39.692us - HashTableComputeTime: 87.126us - HashTableEmplaceTime: 64.160us - HashTableInputCount: 58 - HashTableIterateTime: 1.376us - HashTableSize: 58 - InsertKeysToColumnTime: 6.969us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 21.638us - ProjectionTime: 0ns - RowsProduced: 58 - SerializeDataTime: 23.710us - SerializeKeyTime: 0ns - SerializeResultTime: 43.179us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 10.231us - ExecTime: 710.668us - InitProbeSideTime: 54.403us - JoinFilterTimer: 901ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 11.863us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.894us - ProbeFindNextTime: 0ns - ProbeRows: 58 - ProbeTime: 322.101us - ProbeWhenBuildSideOutputTime: 36.551us - ProbeWhenProbeSideOutputTime: 15.375us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.988us - ProjectionTime: 303.782us - RowsProduced: 58 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 6.442us - ExecTime: 52.856ms - InitProbeSideTime: 27.357ms - JoinFilterTimer: 2.400ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 7.451us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 44.356us - ProbeFindNextTime: 0ns - ProbeRows: 577.767K (577767) - ProbeTime: 51.949ms - ProbeWhenBuildSideOutputTime: 2.265ms - ProbeWhenProbeSideOutputTime: 539.337us - ProbeWhenProcessHashTableTime: 66.76us - ProbeWhenSearchHashTableTime: 17.690ms - ProjectionTime: 350.626us - RowsProduced: 58 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s367ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 142 - BytesReceived: 0.00 - CloseTime: 11.700us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.199ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.98 MB - MemoryUsage: - Blocks: 12.86 MB - PeakMemoryUsage: 12.86 MB - OpenTime: 14.109us - ProjectionTime: 0ns - RowsProduced: 577.767K (577767) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s46ms PipelineXTask (index=24):(Active: 75.904ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 75.574ms - CloseTime: 74.672us - GetBlockTime: 65.529ms - OpenTime: 6.433us - PrepareTime: 240.423us - SinkTime: 9.445ms - GetBlockCounter: 144 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.479ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s93ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.490us - CompressTime: 0ns - ExecTime: 9.530ms - InputRows: 40 - LocalBytesSent: 1.95 KB - LocalSendTime: 91.720us - LocalSentRows: 40 - MemoryUsage: - PeakMemoryUsage: 6.03 KB - MergeBlockTime: 0ns - OpenTime: 71.482us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 40 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 25.309us - SplitBlockHashComputeTime: 5.52us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 126.234us - CloseTime: 10.4us - DeserializeAndMergeTime: 0ns - ExecTime: 212.89us - ExprTime: 12.462us - GetResultsTime: 32.106us - HashTableComputeTime: 68.903us - HashTableEmplaceTime: 49.492us - HashTableInputCount: 40 - HashTableIterateTime: 2.246us - HashTableSize: 40 - InsertKeysToColumnTime: 5.803us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 18.298us - ProjectionTime: 0ns - RowsProduced: 40 - SerializeDataTime: 16.951us - SerializeKeyTime: 0ns - SerializeResultTime: 35.107us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 15.427us - ExecTime: 601.882us - InitProbeSideTime: 47.933us - JoinFilterTimer: 642ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.440us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.258us - ProbeFindNextTime: 0ns - ProbeRows: 40 - ProbeTime: 248.579us - ProbeWhenBuildSideOutputTime: 32.326us - ProbeWhenProbeSideOutputTime: 7.849us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.726us - ProjectionTime: 273.762us - RowsProduced: 40 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 16.60us - ExecTime: 62.109ms - InitProbeSideTime: 24.635ms - JoinFilterTimer: 2.63ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 9.380us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.657us - ProbeFindNextTime: 0ns - ProbeRows: 577.143K (577143) - ProbeTime: 61.272ms - ProbeWhenBuildSideOutputTime: 2.287ms - ProbeWhenProbeSideOutputTime: 517.827us - ProbeWhenProcessHashTableTime: 75.822us - ProbeWhenSearchHashTableTime: 30.286ms - ProjectionTime: 319.465us - RowsProduced: 40 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s382ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 143 - BytesReceived: 0.00 - CloseTime: 12.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.164ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.14 MB - MemoryUsage: - Blocks: 5.82 MB - PeakMemoryUsage: 5.82 MB - OpenTime: 18.364us - ProjectionTime: 0ns - RowsProduced: 577.143K (577143) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s55ms PipelineXTask (index=27):(Active: 70.53ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 69.702ms - CloseTime: 54.200us - GetBlockTime: 68.946ms - OpenTime: 8.395us - PrepareTime: 280.838us - SinkTime: 167.107us - GetBlockCounter: 143 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.919ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s98ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.278us - CompressTime: 0ns - ExecTime: 267.696us - InputRows: 46 - LocalBytesSent: 2.26 KB - LocalSendTime: 87.810us - LocalSentRows: 46 - MemoryUsage: - PeakMemoryUsage: 6.94 KB - MergeBlockTime: 0ns - OpenTime: 87.883us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 46 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.978us - SplitBlockHashComputeTime: 6.281us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 181.616us - CloseTime: 9.267us - DeserializeAndMergeTime: 0ns - ExecTime: 332.788us - ExprTime: 16.425us - GetResultsTime: 39.127us - HashTableComputeTime: 101.252us - HashTableEmplaceTime: 77.364us - HashTableInputCount: 47 - HashTableIterateTime: 2.485us - HashTableSize: 46 - InsertKeysToColumnTime: 7.257us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 72.253us - ProjectionTime: 0ns - RowsProduced: 46 - SerializeDataTime: 19.298us - SerializeKeyTime: 0ns - SerializeResultTime: 41.973us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 9.853us - ExecTime: 13.641ms - InitProbeSideTime: 47.916us - JoinFilterTimer: 696ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.401us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.805us - ProbeFindNextTime: 0ns - ProbeRows: 48 - ProbeTime: 278.363us - ProbeWhenBuildSideOutputTime: 32.741us - ProbeWhenProbeSideOutputTime: 9.795us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 37.137us - ProjectionTime: 13.283ms - RowsProduced: 47 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.660us - ExecTime: 52.559ms - InitProbeSideTime: 14.495ms - JoinFilterTimer: 2.259ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 18.692us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 33.22us - ProbeFindNextTime: 0ns - ProbeRows: 577.268K (577268) - ProbeTime: 51.698ms - ProbeWhenBuildSideOutputTime: 15.254ms - ProbeWhenProbeSideOutputTime: 556.595us - ProbeWhenProcessHashTableTime: 68.828us - ProbeWhenSearchHashTableTime: 17.623ms - ProjectionTime: 318.107us - RowsProduced: 48 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s368ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 142 - BytesReceived: 0.00 - CloseTime: 10.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.2ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.79 MB - MemoryUsage: - Blocks: 6.09 MB - PeakMemoryUsage: 6.09 MB - OpenTime: 18.437us - ProjectionTime: 0ns - RowsProduced: 577.268K (577268) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s7ms PipelineXTask (index=30):(Active: 44.32ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 43.731ms - CloseTime: 68.722us - GetBlockTime: 42.938ms - OpenTime: 7.16us - PrepareTime: 216.639us - SinkTime: 156.74us - GetBlockCounter: 144 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.850ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s93ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.929us - CompressTime: 0ns - ExecTime: 263.52us - InputRows: 49 - LocalBytesSent: 2.41 KB - LocalSendTime: 86.553us - LocalSentRows: 49 - MemoryUsage: - PeakMemoryUsage: 6.94 KB - MergeBlockTime: 0ns - OpenTime: 79.765us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 49 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 18.598us - SplitBlockHashComputeTime: 5.275us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 159.987us - CloseTime: 7.439us - DeserializeAndMergeTime: 0ns - ExecTime: 287.811us - ExprTime: 19.533us - GetResultsTime: 46.668us - HashTableComputeTime: 77.784us - HashTableEmplaceTime: 54.594us - HashTableInputCount: 50 - HashTableIterateTime: 1.356us - HashTableSize: 49 - InsertKeysToColumnTime: 16.977us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 42.223us - ProjectionTime: 0ns - RowsProduced: 49 - SerializeDataTime: 18.197us - SerializeKeyTime: 0ns - SerializeResultTime: 49.114us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 12.519us - ExecTime: 740.362us - InitProbeSideTime: 48.147us - JoinFilterTimer: 1.21us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 11.291us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.187us - ProbeFindNextTime: 0ns - ProbeRows: 51 - ProbeTime: 362.257us - ProbeWhenBuildSideOutputTime: 40.305us - ProbeWhenProbeSideOutputTime: 21.410us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 60.154us - ProjectionTime: 280.562us - RowsProduced: 50 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 6.899us - ExecTime: 39.458ms - InitProbeSideTime: 14.863ms - JoinFilterTimer: 2.140ms - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 9.447us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 36.695us - ProbeFindNextTime: 0ns - ProbeRows: 577.491K (577491) - ProbeTime: 38.597ms - ProbeWhenBuildSideOutputTime: 2.121ms - ProbeWhenProbeSideOutputTime: 509.276us - ProbeWhenProcessHashTableTime: 64.954us - ProbeWhenSearchHashTableTime: 17.470ms - ProjectionTime: 320.780us - RowsProduced: 51 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s383ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 143 - BytesReceived: 0.00 - CloseTime: 9.513us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.999ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.75 MB - MemoryUsage: - Blocks: 5.96 MB - PeakMemoryUsage: 5.96 MB - OpenTime: 17.276us - ProjectionTime: 0ns - RowsProduced: 577.491K (577491) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s81ms PipelineXTask (index=33):(Active: 57.858ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 57.582ms - CloseTime: 43.646us - GetBlockTime: 56.802ms - OpenTime: 6.963us - PrepareTime: 216.521us - SinkTime: 116.291us - GetBlockCounter: 146 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.627ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s5ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.978us - CompressTime: 0ns - ExecTime: 193.677us - InputRows: 76 - LocalBytesSent: 3.73 KB - LocalSendTime: 46.634us - LocalSentRows: 76 - MemoryUsage: - PeakMemoryUsage: 8.88 KB - MergeBlockTime: 0ns - OpenTime: 68.194us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 76 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.983us - SplitBlockHashComputeTime: 4.971us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 239.153us - CloseTime: 9.726us - DeserializeAndMergeTime: 0ns - ExecTime: 372.243us - ExprTime: 22.999us - GetResultsTime: 55.66us - HashTableComputeTime: 123.234us - HashTableEmplaceTime: 87.505us - HashTableInputCount: 77 - HashTableIterateTime: 1.376us - HashTableSize: 76 - InsertKeysToColumnTime: 22.884us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 22.973us - ProjectionTime: 0ns - RowsProduced: 76 - SerializeDataTime: 25.664us - SerializeKeyTime: 0ns - SerializeResultTime: 56.632us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 22 - BuildOutputBlock: 0ns - CloseTime: 9.553us - ExecTime: 862.426us - InitProbeSideTime: 65.388us - JoinFilterTimer: 1.135us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 11.178us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.371us - ProbeFindNextTime: 0ns - ProbeRows: 79 - ProbeTime: 433.959us - ProbeWhenBuildSideOutputTime: 45.110us - ProbeWhenProbeSideOutputTime: 18.155us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 56.287us - ProjectionTime: 333.462us - RowsProduced: 77 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 4.832us - ExecTime: 52.966ms - InitProbeSideTime: 14.489ms - JoinFilterTimer: 2.263ms - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 7.950us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.419us - ProbeFindNextTime: 0ns - ProbeRows: 578.234K (578234) - ProbeTime: 52.39ms - ProbeWhenBuildSideOutputTime: 2.306ms - ProbeWhenProbeSideOutputTime: 518.57us - ProbeWhenProcessHashTableTime: 86.311us - ProbeWhenSearchHashTableTime: 30.935ms - ProjectionTime: 398.562us - RowsProduced: 79 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s383ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 145 - BytesReceived: 0.00 - CloseTime: 6.409us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.75ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.14 MB - MemoryUsage: - Blocks: 3.89 MB - PeakMemoryUsage: 3.89 MB - OpenTime: 20.395us - ProjectionTime: 0ns - RowsProduced: 578.234K (578234) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s142ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 4.594ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.467ms - CloseTime: 20.174us - GetBlockTime: 80.523us - OpenTime: 2.388us - PrepareTime: 98.338us - SinkTime: 4.342ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.669ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.97us - BuildRows: 17.656K (17656) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 849.640us - BuildTableInsertTime: 727.711us - BuildTableTime: 759.552us - CloseTime: 0ns - ExecTime: 4.371ms - InputRows: 17.655K (17655) - MemoryUsage: - BuildBlocks: 724.13 KB - BuildKeyArena: 556.00 KB - HashTable: 196.97 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 32.604us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.138ms - RuntimeFilterComputeTime: 512.644us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 16.306us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 123.862us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 972.00 KB - MemoryUsage: - Blocks: 432.00 KB - PeakMemoryUsage: 432.00 KB - OpenTime: 32.315us - ProjectionTime: 0ns - RowsProduced: 17.655K (17655) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 441.411ms PipelineXTask (index=4):(Active: 2.725ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.559ms - CloseTime: 14.204us - GetBlockTime: 73.646us - OpenTime: 2.295us - PrepareTime: 142.803us - SinkTime: 2.443ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.698ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.583ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.104us - BuildRows: 17.536K (17536) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.198ms - BuildTableInsertTime: 560.236us - BuildTableTime: 578.448us - CloseTime: 0ns - ExecTime: 2.468ms - InputRows: 17.535K (17535) - MemoryUsage: - BuildBlocks: 719.21 KB - BuildKeyArena: 556.00 KB - HashTable: 196.50 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 28.495us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 64.701us - RuntimeFilterComputeTime: 505.107us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.851us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.559us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 974.00 KB - MemoryUsage: - Blocks: 448.00 KB - PeakMemoryUsage: 448.00 KB - OpenTime: 95.561us - ProjectionTime: 0ns - RowsProduced: 17.535K (17535) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 420.745ms PipelineXTask (index=7):(Active: 2.955ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.873ms - CloseTime: 12.349us - GetBlockTime: 56.166us - OpenTime: 2.532us - PrepareTime: 59.602us - SinkTime: 2.773ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.929ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.750ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.388us - BuildRows: 17.183K (17183) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 797.575us - BuildTableInsertTime: 1.248ms - BuildTableTime: 1.265ms - CloseTime: 0ns - ExecTime: 2.787ms - InputRows: 17.182K (17182) - MemoryUsage: - BuildBlocks: 704.73 KB - BuildKeyArena: 544.00 KB - HashTable: 195.13 KB - PeakMemoryUsage: 1.41 MB - OpenTime: 16.408us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 58.985us - RuntimeFilterComputeTime: 475.771us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.79us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 77.423us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 983.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 16.660us - ProjectionTime: 0ns - RowsProduced: 17.182K (17182) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 442.193ms PipelineXTask (index=10):(Active: 12.571ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 12.497ms - CloseTime: 15.124us - GetBlockTime: 68.81us - OpenTime: 2.711us - PrepareTime: 52.719us - SinkTime: 12.378ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.771ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.186ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.838us - BuildRows: 17.517K (17517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.142ms - BuildTableInsertTime: 630.728us - BuildTableTime: 661.246us - CloseTime: 0ns - ExecTime: 12.394ms - InputRows: 17.516K (17516) - MemoryUsage: - BuildBlocks: 718.43 KB - BuildKeyArena: 552.00 KB - HashTable: 196.43 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 18.157us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.879ms - RuntimeFilterComputeTime: 511.885us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 8.983us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.767us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 12.606us - ProjectionTime: 0ns - RowsProduced: 17.516K (17516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 419.720ms PipelineXTask (index=13):(Active: 3.789ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.712ms - CloseTime: 14.374us - GetBlockTime: 62.541us - OpenTime: 3.936us - PrepareTime: 53.331us - SinkTime: 3.598ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.626ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.435us - BuildRows: 17.569K (17569) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.239ms - BuildTableInsertTime: 1.380ms - BuildTableTime: 1.399ms - CloseTime: 0ns - ExecTime: 3.612ms - InputRows: 17.568K (17568) - MemoryUsage: - BuildBlocks: 720.56 KB - BuildKeyArena: 556.00 KB - HashTable: 196.63 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 21.309us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 75.14us - RuntimeFilterComputeTime: 583.871us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.183us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.327us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 286.00 KB - PeakMemoryUsage: 286.00 KB - OpenTime: 12.697us - ProjectionTime: 0ns - RowsProduced: 17.568K (17568) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 431.337ms PipelineXTask (index=16):(Active: 3.188ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.95ms - CloseTime: 12.980us - GetBlockTime: 64.943us - OpenTime: 2.149us - PrepareTime: 72.476us - SinkTime: 2.990ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.163ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.315ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.710us - BuildRows: 17.413K (17413) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 765.575us - BuildTableInsertTime: 1.301ms - BuildTableTime: 1.320ms - CloseTime: 0ns - ExecTime: 3.12ms - InputRows: 17.412K (17412) - MemoryUsage: - BuildBlocks: 714.16 KB - BuildKeyArena: 552.00 KB - HashTable: 196.02 KB - PeakMemoryUsage: 1.42 MB - OpenTime: 24.248us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 70.152us - RuntimeFilterComputeTime: 533.239us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.134us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 950.00 KB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 424.00 KB - OpenTime: 23.509us - ProjectionTime: 0ns - RowsProduced: 17.412K (17412) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 420.564ms PipelineXTask (index=19):(Active: 3.358ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.282ms - CloseTime: 18.28us - GetBlockTime: 66.363us - OpenTime: 2.422us - PrepareTime: 50.644us - SinkTime: 3.169ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.310ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.388ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.554us - BuildRows: 17.597K (17597) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 926.318us - BuildTableInsertTime: 1.281ms - BuildTableTime: 1.300ms - CloseTime: 0ns - ExecTime: 3.186ms - InputRows: 17.596K (17596) - MemoryUsage: - BuildBlocks: 721.71 KB - BuildKeyArena: 556.00 KB - HashTable: 196.74 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 18.575us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 71.796us - RuntimeFilterComputeTime: 589.876us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 15.999us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 89.132us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 11.739us - ProjectionTime: 0ns - RowsProduced: 17.596K (17596) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 436.436ms PipelineXTask (index=22):(Active: 4.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.601ms - CloseTime: 18.717us - GetBlockTime: 65.30us - OpenTime: 17.687us - PrepareTime: 65.794us - SinkTime: 4.472ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.677ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.477ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.387us - BuildRows: 17.504K (17504) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.114ms - BuildTableInsertTime: 1.989ms - BuildTableTime: 2.20ms - CloseTime: 0ns - ExecTime: 4.485ms - InputRows: 17.503K (17503) - MemoryUsage: - BuildBlocks: 717.90 KB - BuildKeyArena: 552.00 KB - HashTable: 196.38 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 15.724us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.150us - RuntimeFilterComputeTime: 973.56us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 14.464us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 105.940us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 30.856us - ProjectionTime: 0ns - RowsProduced: 17.503K (17503) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 436.352ms PipelineXTask (index=25):(Active: 2.250ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.170ms - CloseTime: 13.406us - GetBlockTime: 67.715us - OpenTime: 2.967us - PrepareTime: 58.629us - SinkTime: 2.52ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.223ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.793ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.641us - BuildRows: 17.517K (17517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 819.254us - BuildTableInsertTime: 523.404us - BuildTableTime: 545.411us - CloseTime: 0ns - ExecTime: 2.76ms - InputRows: 17.516K (17516) - MemoryUsage: - BuildBlocks: 718.43 KB - BuildKeyArena: 552.00 KB - HashTable: 196.43 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 26.772us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 64.728us - RuntimeFilterComputeTime: 521.958us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.630us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1008.00 KB - MemoryUsage: - Blocks: 288.00 KB - PeakMemoryUsage: 288.00 KB - OpenTime: 11.584us - ProjectionTime: 0ns - RowsProduced: 17.516K (17516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 421.597ms PipelineXTask (index=28):(Active: 6.961ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.688ms - CloseTime: 4.203ms - GetBlockTime: 58.777us - OpenTime: 2.114us - PrepareTime: 62.768us - SinkTime: 2.586ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.745ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 156.175ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.378us - BuildRows: 17.612K (17612) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.145ms - BuildTableInsertTime: 784.402us - BuildTableTime: 801.857us - CloseTime: 0ns - ExecTime: 2.603ms - InputRows: 17.611K (17611) - MemoryUsage: - BuildBlocks: 722.33 KB - BuildKeyArena: 556.00 KB - HashTable: 196.80 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 19.39us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 49.958us - RuntimeFilterComputeTime: 498.499us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.200ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.267ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 13.963us - ProjectionTime: 0ns - RowsProduced: 17.611K (17611) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 419.743ms PipelineXTask (index=31):(Active: 4.251ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.141ms - CloseTime: 14.584us - GetBlockTime: 58.876us - OpenTime: 2.493us - PrepareTime: 88.135us - SinkTime: 4.36ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.221ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.639ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.465us - BuildRows: 17.441K (17441) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.264ms - BuildTableInsertTime: 1.357ms - BuildTableTime: 1.377ms - CloseTime: 0ns - ExecTime: 4.52ms - InputRows: 17.44K (17440) - MemoryUsage: - BuildBlocks: 715.31 KB - BuildKeyArena: 552.00 KB - HashTable: 196.13 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 18.562us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 535.390us - RuntimeFilterComputeTime: 520.865us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.316us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 41.542us - ProjectionTime: 0ns - RowsProduced: 17.44K (17440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 419.446ms PipelineXTask (index=34):(Active: 3.962ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.868ms - CloseTime: 16.866us - GetBlockTime: 88.642us - OpenTime: 4.625us - PrepareTime: 65.348us - SinkTime: 3.730ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.893ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.293ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.915us - BuildRows: 17.374K (17374) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.745ms - BuildTableInsertTime: 832.403us - BuildTableTime: 860.628us - CloseTime: 0ns - ExecTime: 3.754ms - InputRows: 17.373K (17373) - MemoryUsage: - BuildBlocks: 712.56 KB - BuildKeyArena: 548.00 KB - HashTable: 195.87 KB - PeakMemoryUsage: 1.42 MB - OpenTime: 27.427us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 66.271us - RuntimeFilterComputeTime: 941.625us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.601us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 110.780us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 720.00 KB - PeakMemoryUsage: 720.00 KB - OpenTime: 14.430us - ProjectionTime: 0ns - RowsProduced: 17.373K (17373) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 403.519ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.138ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.31ms - CloseTime: 14.714us - GetBlockTime: 81.965us - OpenTime: 2.787us - PrepareTime: 83.906us - SinkTime: 900.976us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.112ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.908ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.587us - BuildRows: 6.61K (6610) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 379.816us - BuildTableInsertTime: 282.665us - BuildTableTime: 285.902us - CloseTime: 0ns - ExecTime: 928.595us - InputRows: 6.609K (6609) - MemoryUsage: - BuildBlocks: 542.02 KB - BuildKeyArena: 220.00 KB - HashTable: 64.28 KB - PeakMemoryUsage: 822.30 KB - OpenTime: 29.638us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.352us - RuntimeFilterComputeTime: 177.75us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 12.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 111.181us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 23.327us - ProjectionTime: 0ns - RowsProduced: 6.609K (6609) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s156ms PipelineXTask (index=5):(Active: 1.203ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.138ms - CloseTime: 13.493us - GetBlockTime: 76.843us - OpenTime: 2.443us - PrepareTime: 43.5us - SinkTime: 1.14ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.173ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.971ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.957us - BuildRows: 6.509K (6509) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 511.326us - BuildTableInsertTime: 270.963us - BuildTableTime: 275.327us - CloseTime: 0ns - ExecTime: 1.27ms - InputRows: 6.508K (6508) - MemoryUsage: - BuildBlocks: 533.71 KB - BuildKeyArena: 216.00 KB - HashTable: 63.79 KB - PeakMemoryUsage: 809.48 KB - OpenTime: 14.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.368us - RuntimeFilterComputeTime: 166.221us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 11.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.342us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 12.773us - ProjectionTime: 0ns - RowsProduced: 6.508K (6508) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s87ms PipelineXTask (index=8):(Active: 1.39ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 957.2us - CloseTime: 12.828us - GetBlockTime: 77.445us - OpenTime: 2.384us - PrepareTime: 62.857us - SinkTime: 835.374us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.8ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.625ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.936us - BuildRows: 6.356K (6356) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 401.124us - BuildTableInsertTime: 207.97us - BuildTableTime: 209.764us - CloseTime: 0ns - ExecTime: 853.786us - InputRows: 6.355K (6355) - MemoryUsage: - BuildBlocks: 521.18 KB - BuildKeyArena: 212.00 KB - HashTable: 63.04 KB - PeakMemoryUsage: 792.21 KB - OpenTime: 20.82us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.135us - RuntimeFilterComputeTime: 168.283us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 10.681us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.50us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 8.970us - ProjectionTime: 0ns - RowsProduced: 6.355K (6355) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s156ms PipelineXTask (index=11):(Active: 1.199ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.131ms - CloseTime: 7.179us - GetBlockTime: 77.23us - OpenTime: 2.794us - PrepareTime: 52.937us - SinkTime: 1.9ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.180ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 166.115ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.891us - BuildRows: 6.63K (6630) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 533.863us - BuildTableInsertTime: 240.626us - BuildTableTime: 243.15us - CloseTime: 0ns - ExecTime: 1.27ms - InputRows: 6.629K (6629) - MemoryUsage: - BuildBlocks: 543.68 KB - BuildKeyArena: 220.00 KB - HashTable: 64.38 KB - PeakMemoryUsage: 824.04 KB - OpenTime: 20.416us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.111us - RuntimeFilterComputeTime: 166.262us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 6.363us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.831us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 372.00 KB - PeakMemoryUsage: 372.00 KB - OpenTime: 15.377us - ProjectionTime: 0ns - RowsProduced: 6.629K (6629) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s86ms PipelineXTask (index=14):(Active: 1.111ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.43ms - CloseTime: 7.911us - GetBlockTime: 61.560us - OpenTime: 3.430us - PrepareTime: 52.339us - SinkTime: 935.851us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.91ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.471ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.245us - BuildRows: 6.335K (6335) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 365.895us - BuildTableInsertTime: 346.679us - BuildTableTime: 358.556us - CloseTime: 0ns - ExecTime: 943.509us - InputRows: 6.334K (6334) - MemoryUsage: - BuildBlocks: 519.44 KB - BuildKeyArena: 212.00 KB - HashTable: 62.94 KB - PeakMemoryUsage: 790.37 KB - OpenTime: 8.899us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.652us - RuntimeFilterComputeTime: 157.122us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 6.469us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 78.823us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 17.96us - ProjectionTime: 0ns - RowsProduced: 6.334K (6334) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s149ms PipelineXTask (index=17):(Active: 1.275ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.199ms - CloseTime: 20.177us - GetBlockTime: 105.231us - OpenTime: 2.2us - PrepareTime: 49.674us - SinkTime: 1.62ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.246ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 357.116ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.311us - BuildRows: 6.566K (6566) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 399.145us - BuildTableInsertTime: 272.130us - BuildTableTime: 280.221us - CloseTime: 0ns - ExecTime: 1.74ms - InputRows: 6.565K (6565) - MemoryUsage: - BuildBlocks: 538.40 KB - BuildKeyArena: 216.00 KB - HashTable: 64.06 KB - PeakMemoryUsage: 814.45 KB - OpenTime: 13.999us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 176.484us - RuntimeFilterComputeTime: 155.17us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 17.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 137.122us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 558.00 KB - PeakMemoryUsage: 558.00 KB - OpenTime: 18.260us - ProjectionTime: 0ns - RowsProduced: 6.565K (6565) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s901ms PipelineXTask (index=20):(Active: 994.264us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 941.231us - CloseTime: 11.529us - GetBlockTime: 65.273us - OpenTime: 1.997us - PrepareTime: 35.165us - SinkTime: 842.32us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 972.780us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.300ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.592us - BuildRows: 6.448K (6448) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 365.701us - BuildTableInsertTime: 234.344us - BuildTableTime: 237.344us - CloseTime: 0ns - ExecTime: 851.83us - InputRows: 6.447K (6447) - MemoryUsage: - BuildBlocks: 528.74 KB - BuildKeyArena: 212.00 KB - HashTable: 63.49 KB - PeakMemoryUsage: 800.22 KB - OpenTime: 10.691us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.885us - RuntimeFilterComputeTime: 166.331us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 9.417us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 77.920us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 7.924us - ProjectionTime: 0ns - RowsProduced: 6.447K (6447) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s155ms PipelineXTask (index=23):(Active: 1.780ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.651ms - CloseTime: 12.866us - GetBlockTime: 86.708us - OpenTime: 2.384us - PrepareTime: 106.771us - SinkTime: 1.498ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.748ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 502.38ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.993us - BuildRows: 6.595K (6595) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 496.393us - BuildTableInsertTime: 651.617us - BuildTableTime: 658.194us - CloseTime: 0ns - ExecTime: 1.553ms - InputRows: 6.594K (6594) - MemoryUsage: - BuildBlocks: 540.79 KB - BuildKeyArena: 220.00 KB - HashTable: 64.21 KB - PeakMemoryUsage: 820.98 KB - OpenTime: 58.198us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.891us - RuntimeFilterComputeTime: 255.673us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 10.821us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.897us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 16.232us - ProjectionTime: 0ns - RowsProduced: 6.594K (6594) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s694ms PipelineXTask (index=26):(Active: 1.25ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 945.201us - CloseTime: 9.449us - GetBlockTime: 63.515us - OpenTime: 7.220us - PrepareTime: 56.561us - SinkTime: 830.821us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.2ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.221ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.225us - BuildRows: 6.521K (6521) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 363.314us - BuildTableInsertTime: 275.208us - BuildTableTime: 276.991us - CloseTime: 0ns - ExecTime: 843.704us - InputRows: 6.52K (6520) - MemoryUsage: - BuildBlocks: 534.71 KB - BuildKeyArena: 216.00 KB - HashTable: 63.84 KB - PeakMemoryUsage: 810.55 KB - OpenTime: 13.699us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.299us - RuntimeFilterComputeTime: 152.347us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 8.352us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.250us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 14.320us - ProjectionTime: 0ns - RowsProduced: 6.52K (6520) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s155ms PipelineXTask (index=29):(Active: 1.756ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.662ms - CloseTime: 13.702us - GetBlockTime: 101.768us - OpenTime: 3.932us - PrepareTime: 72.105us - SinkTime: 1.494ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.724ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 220.356ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.567us - BuildRows: 6.583K (6583) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 456.219us - BuildTableInsertTime: 675.542us - BuildTableTime: 679.275us - CloseTime: 0ns - ExecTime: 1.536ms - InputRows: 6.582K (6582) - MemoryUsage: - BuildBlocks: 539.77 KB - BuildKeyArena: 220.00 KB - HashTable: 64.15 KB - PeakMemoryUsage: 819.91 KB - OpenTime: 45.651us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.12us - RuntimeFilterComputeTime: 270.47us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 11.247us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 118.84us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 11.443us - ProjectionTime: 0ns - RowsProduced: 6.582K (6582) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s977ms PipelineXTask (index=32):(Active: 1.113ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.55ms - CloseTime: 6.761us - GetBlockTime: 82.226us - OpenTime: 2.431us - PrepareTime: 44.247us - SinkTime: 928.461us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.93ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.944ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.190us - BuildRows: 6.696K (6696) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 486.272us - BuildTableInsertTime: 239.480us - BuildTableTime: 241.42us - CloseTime: 0ns - ExecTime: 939.886us - InputRows: 6.695K (6695) - MemoryUsage: - BuildBlocks: 549.05 KB - BuildKeyArena: 220.00 KB - HashTable: 64.70 KB - PeakMemoryUsage: 829.74 KB - OpenTime: 13.213us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.42us - RuntimeFilterComputeTime: 161.944us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 6.183us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 94.383us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 11.386us - ProjectionTime: 0ns - RowsProduced: 6.695K (6695) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s148ms PipelineXTask (index=35):(Active: 984.99us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 900.180us - CloseTime: 7.917us - GetBlockTime: 70.458us - OpenTime: 2.212us - PrepareTime: 69.301us - SinkTime: 794.443us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 945.66us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 89.109ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.741us - BuildRows: 6.446K (6446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 339.222us - BuildTableInsertTime: 259.244us - BuildTableTime: 261.189us - CloseTime: 0ns - ExecTime: 805.738us - InputRows: 6.445K (6445) - MemoryUsage: - BuildBlocks: 528.52 KB - BuildKeyArena: 212.00 KB - HashTable: 63.48 KB - PeakMemoryUsage: 799.99 KB - OpenTime: 12.805us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.103us - RuntimeFilterComputeTime: 159.97us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 4 - BytesReceived: 0.00 - CloseTime: 6.791us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.426us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 744.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 28.366us - ProjectionTime: 0ns - RowsProduced: 6.445K (6445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s154ms Fragment 138: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 291.545ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 291.126ms - CloseTime: 100.928us - GetBlockTime: 16.669ms - OpenTime: 72.467us - PrepareTime: 231.179us - SinkTime: 259.831ms - GetBlockCounter: 660 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 167.903ms - WaitBfTime: 1s428ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s375ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 487 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.381us - CompressTime: 0ns - ExecTime: 259.751ms - InputRows: 2.548473M (2548473) - LocalBytesSent: 63.58 MB - LocalSendTime: 3.280ms - LocalSentRows: 2.548473M (2548473) - MemoryUsage: - PeakMemoryUsage: 82.99 MB - MergeBlockTime: 0ns - OpenTime: 80.541us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.548473M (2548473) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 154.35ms - SplitBlockHashComputeTime: 83.67ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.995us - BlocksProduced: 660 - CloseTime: 85.492us - ExecTime: 220.377ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 157.123us - ProcessConjunctTime: 10.442us - ProjectionTime: 0ns - RowsProduced: 2.548473M (2548473) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 98.346ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 203.655ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [187.694ms, 238.806ms, 55.560ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [35.108ms, 38.014ms, 25.223ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 316.830ms - MemoryUsage: - FreeBlocks: 33.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.735ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.465us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 360.536ms - ScannerCtxSchedTime: 98.325ms - ScannerFilterTime: 147.906ms - ScannerGetBlockTime: 333.540ms - ScannerInitTime: 26.437us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 4.508us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.293us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 111.909us - BlockLoadTime: 317.963ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 865 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 1.393ms - FirstReadTime: 313.192ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.730us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 336.673us - OutputIndexResultColumnTimer: 132.947us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 865 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 382.58ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 381.617ms - CloseTime: 105.975us - GetBlockTime: 3.699ms - OpenTime: 126.100us - PrepareTime: 198.794us - SinkTime: 376.501ms - GetBlockCounter: 555 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 132.526ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s484ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 414 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.174us - CompressTime: 0ns - ExecTime: 376.461ms - InputRows: 2.044047M (2044047) - LocalBytesSent: 55.56 MB - LocalSendTime: 20.597ms - LocalSentRows: 2.044047M (2044047) - MemoryUsage: - PeakMemoryUsage: 74.42 MB - MergeBlockTime: 0ns - OpenTime: 79.38us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.044047M (2044047) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 165.259ms - SplitBlockHashComputeTime: 176.91ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.973us - BlocksProduced: 555 - CloseTime: 89.644us - ExecTime: 294.737ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 185.465us - ProcessConjunctTime: 10.900us - ProjectionTime: 0ns - RowsProduced: 2.044047M (2044047) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 139.71ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 290.907ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [209.956ms, 301.133ms, 70.520ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [43.935ms, 52.677ms, 42.458ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 401.674ms - MemoryUsage: - FreeBlocks: 32.51 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.739ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.326us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 377.211ms - ScannerCtxSchedTime: 139.39ms - ScannerFilterTime: 176.391ms - ScannerGetBlockTime: 404.644ms - ScannerInitTime: 83.820us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 3.252us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.338us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 96.118us - BlockLoadTime: 403.698ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 850 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 1.971ms - FirstReadTime: 364.180ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.600us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 307.564us - OutputIndexResultColumnTimer: 128.566us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 850 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 72.565ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 72.179ms - CloseTime: 68.316us - GetBlockTime: 2.948ms - OpenTime: 113.571us - PrepareTime: 191.695us - SinkTime: 68.180ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.635ms - WaitBfTime: 1s528ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s75ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 210 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.195us - CompressTime: 0ns - ExecTime: 68.169ms - InputRows: 1.35776M (1357760) - LocalBytesSent: 23.89 MB - LocalSendTime: 1.239ms - LocalSentRows: 1.35776M (1357760) - MemoryUsage: - PeakMemoryUsage: 28.01 MB - MergeBlockTime: 0ns - OpenTime: 62.102us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.35776M (1357760) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 30.107ms - SplitBlockHashComputeTime: 28.76ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.379us - BlocksProduced: 337 - CloseTime: 51.842us - ExecTime: 198.960ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 196.544us - ProcessConjunctTime: 10.504us - ProjectionTime: 0ns - RowsProduced: 1.35776M (1357760) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 37.841ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 195.865ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [235.016ms, 139.505ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [15.488ms, 22.353ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 241.689ms - MemoryUsage: - FreeBlocks: 22.99 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.377ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.628us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 211.327ms - ScannerCtxSchedTime: 37.832ms - ScannerFilterTime: 130.82ms - ScannerGetBlockTime: 244.13ms - ScannerInitTime: 78.865us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.667us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.400us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 90.551us - BlockLoadTime: 243.125ms - BlocksLoad: 865 - CachedPagesNum: 193 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 1.393ms - FirstReadTime: 240.25ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.395us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 193.112us - OutputIndexResultColumnTimer: 93.228us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 193 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 61.629ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 61.209ms - CloseTime: 71.169us - GetBlockTime: 2.707ms - OpenTime: 159.210us - PrepareTime: 180.662us - SinkTime: 57.538ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.463ms - WaitBfTime: 1s429ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s236ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 210 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.275us - CompressTime: 0ns - ExecTime: 57.554ms - InputRows: 1.357263M (1357263) - LocalBytesSent: 23.88 MB - LocalSendTime: 1.144ms - LocalSentRows: 1.357263M (1357263) - MemoryUsage: - PeakMemoryUsage: 27.89 MB - MergeBlockTime: 0ns - OpenTime: 75.661us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.357263M (1357263) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.577ms - SplitBlockHashComputeTime: 19.523ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.149us - BlocksProduced: 337 - CloseTime: 55.127us - ExecTime: 199.209ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 220.277us - ProcessConjunctTime: 10.266us - ProjectionTime: 0ns - RowsProduced: 1.357263M (1357263) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 102.544ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 196.308ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [160.571ms, 150.619ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [54.849ms, 47.695ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 209.490ms - MemoryUsage: - FreeBlocks: 23.88 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.81ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.821us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 212.953ms - ScannerCtxSchedTime: 102.534ms - ScannerFilterTime: 99.9ms - ScannerGetBlockTime: 211.773ms - ScannerInitTime: 124.345us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.249us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.54us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 95.674us - BlockLoadTime: 210.683ms - BlocksLoad: 863 - CachedPagesNum: 191 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 1.78ms - FirstReadTime: 207.632ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.912us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 189.809us - OutputIndexResultColumnTimer: 84.879us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 191 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 124.102ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 123.787ms - CloseTime: 55.403us - GetBlockTime: 8.369ms - OpenTime: 53.156us - PrepareTime: 197.975us - SinkTime: 114.547ms - GetBlockCounter: 361 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.790ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s398ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 266 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.231us - CompressTime: 0ns - ExecTime: 114.509ms - InputRows: 1.147647M (1147647) - LocalBytesSent: 40.84 MB - LocalSendTime: 1.809ms - LocalSentRows: 1.147647M (1147647) - MemoryUsage: - PeakMemoryUsage: 55.18 MB - MergeBlockTime: 0ns - OpenTime: 58.418us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.147647M (1147647) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 50.80ms - SplitBlockHashComputeTime: 53.985ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.982us - BlocksProduced: 361 - CloseTime: 42.588us - ExecTime: 450.614ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 125.305us - ProcessConjunctTime: 10.931us - ProjectionTime: 0ns - RowsProduced: 1.147647M (1147647) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 61.868ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 442.159ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [374.771ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [61.868ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 227.434ms - MemoryUsage: - FreeBlocks: 12.50 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.327ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.44us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 202.692ms - ScannerCtxSchedTime: 61.849ms - ScannerFilterTime: 145.788ms - ScannerGetBlockTime: 228.671ms - ScannerInitTime: 25.975us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.77us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.9us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 42.502us - BlockLoadTime: 220.202ms - BlocksLoad: 558 - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 918.710us - FirstReadTime: 216.649ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.156us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 116.835us - OutputIndexResultColumnTimer: 57.641us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 615 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 159.759ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 159.394ms - CloseTime: 53.624us - GetBlockTime: 1.872ms - OpenTime: 65.945us - PrepareTime: 235.368us - SinkTime: 156.499ms - GetBlockCounter: 361 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.339ms - WaitBfTime: 1s429ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s327ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 268 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.194us - CompressTime: 0ns - ExecTime: 156.481ms - InputRows: 1.148014M (1148014) - LocalBytesSent: 40.84 MB - LocalSendTime: 2.32ms - LocalSentRows: 1.148014M (1148014) - MemoryUsage: - PeakMemoryUsage: 55.46 MB - MergeBlockTime: 0ns - OpenTime: 57.193us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.148014M (1148014) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 68.980ms - SplitBlockHashComputeTime: 30.965ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.997us - BlocksProduced: 361 - CloseTime: 27.393us - ExecTime: 365.2ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 197.536us - ProcessConjunctTime: 9.224us - ProjectionTime: 0ns - RowsProduced: 1.148014M (1148014) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.335ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 362.993ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [301.275ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [56.335ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 111.410ms - MemoryUsage: - FreeBlocks: 14.61 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 989.844us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.620us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 189.713ms - ScannerCtxSchedTime: 56.324ms - ScannerFilterTime: 188.358ms - ScannerGetBlockTime: 112.617ms - ScannerInitTime: 30.67us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 749ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.2us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 33.762us - BlockLoadTime: 112.86ms - BlocksLoad: 558 - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 830.13us - FirstReadTime: 105.929ms - IOTimer: 0ns - InvertedIndexFilterTime: 961ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.102ms - OutputIndexResultColumnTimer: 55.22us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 615 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 72.460ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 72.132ms - CloseTime: 45.81us - GetBlockTime: 825.371us - OpenTime: 65.882us - PrepareTime: 207.438us - SinkTime: 70.868ms - GetBlockCounter: 137 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 46.846ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s252ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 126 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.249us - CompressTime: 0ns - ExecTime: 70.935ms - InputRows: 504.675K (504675) - LocalBytesSent: 18.80 MB - LocalSendTime: 819.915us - LocalSentRows: 504.675K (504675) - MemoryUsage: - PeakMemoryUsage: 25.80 MB - MergeBlockTime: 0ns - OpenTime: 87.303us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 504.675K (504675) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 38.909ms - SplitBlockHashComputeTime: 26.980ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.105us - BlocksProduced: 137 - CloseTime: 27.318us - ExecTime: 168.856ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 143.260us - ProcessConjunctTime: 8.600us - ProjectionTime: 0ns - RowsProduced: 504.675K (504675) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 54.409ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 167.891ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [109.817ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [54.409ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 52.860ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.9ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.211us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 79.349ms - ScannerCtxSchedTime: 54.403ms - ScannerFilterTime: 56.450ms - ScannerGetBlockTime: 53.261ms - ScannerInitTime: 22.757us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 352ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.720us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 20.288us - BlockLoadTime: 53.707ms - BlocksLoad: 217 - CachedPagesNum: 261 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 696.640us - FirstReadTime: 52.932ms - IOTimer: 0ns - InvertedIndexFilterTime: 522ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 64.686us - OutputIndexResultColumnTimer: 20.904us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 261 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 48.571ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 48.262ms - CloseTime: 65.478us - GetBlockTime: 922.419us - OpenTime: 58.121us - PrepareTime: 168.619us - SinkTime: 46.856ms - GetBlockCounter: 139 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 48.332ms - WaitBfTime: 1s429ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s279ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 121 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.237us - CompressTime: 0ns - ExecTime: 46.893ms - InputRows: 503.815K (503815) - LocalBytesSent: 18.75 MB - LocalSendTime: 951.71us - LocalSentRows: 503.815K (503815) - MemoryUsage: - PeakMemoryUsage: 25.83 MB - MergeBlockTime: 0ns - OpenTime: 63.581us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 503.815K (503815) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 26.295ms - SplitBlockHashComputeTime: 15.58ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.686us - BlocksProduced: 139 - CloseTime: 34.337us - ExecTime: 190.630ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 112.41us - ProcessConjunctTime: 12.163us - ProjectionTime: 0ns - RowsProduced: 503.815K (503815) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 48.923ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 189.605ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [137.054ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [48.923ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 90.191ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.479ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.47us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 81.347ms - ScannerCtxSchedTime: 48.917ms - ScannerFilterTime: 46.274ms - ScannerGetBlockTime: 90.651ms - ScannerInitTime: 28.428us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 455ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.516us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 26.595us - BlockLoadTime: 91.526ms - BlocksLoad: 217 - CachedPagesNum: 260 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 777.77us - FirstReadTime: 90.639ms - IOTimer: 0ns - InvertedIndexFilterTime: 951ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 70.393us - OutputIndexResultColumnTimer: 26.765us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 260 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 119.999ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 119.658ms - CloseTime: 69.500us - GetBlockTime: 58.978ms - OpenTime: 66.678us - PrepareTime: 195.126us - SinkTime: 59.858ms - GetBlockCounter: 334 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.586ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s222ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 214 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.40us - CompressTime: 0ns - ExecTime: 59.852ms - InputRows: 1.335945M (1335945) - LocalBytesSent: 25.71 MB - LocalSendTime: 1.176ms - LocalSentRows: 1.335945M (1335945) - MemoryUsage: - PeakMemoryUsage: 30.89 MB - MergeBlockTime: 0ns - OpenTime: 59.904us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.335945M (1335945) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.755ms - SplitBlockHashComputeTime: 22.15ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.919us - BlocksProduced: 334 - CloseTime: 52.982us - ExecTime: 245.724ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 143.262us - ProcessConjunctTime: 7.937us - ProjectionTime: 0ns - RowsProduced: 1.335945M (1335945) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 106.435ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 186.611ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [231.225ms, 126.077ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [52.155ms, 54.280ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 240.219ms - MemoryUsage: - FreeBlocks: 23.47 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 822.127us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 17.860us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 223.124ms - ScannerCtxSchedTime: 106.422ms - ScannerFilterTime: 115.182ms - ScannerGetBlockTime: 241.723ms - ScannerInitTime: 35.970us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 2.162us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.183us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 67.221us - BlockLoadTime: 240.637ms - BlocksLoad: 838 - CachedPagesNum: 395 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 705.649us - FirstReadTime: 237.614ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.391us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 236.942us - OutputIndexResultColumnTimer: 90.721us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 395 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 82.554ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 82.245ms - CloseTime: 77.86us - GetBlockTime: 2.728ms - OpenTime: 60.246us - PrepareTime: 162.401us - SinkTime: 78.657ms - GetBlockCounter: 334 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 70.795ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s286ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.794us - CompressTime: 0ns - ExecTime: 78.623ms - InputRows: 1.339905M (1339905) - LocalBytesSent: 25.78 MB - LocalSendTime: 1.383ms - LocalSentRows: 1.339905M (1339905) - MemoryUsage: - PeakMemoryUsage: 30.80 MB - MergeBlockTime: 0ns - OpenTime: 64.280us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 1.339905M (1339905) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 32.406ms - SplitBlockHashComputeTime: 35.602ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.222us - BlocksProduced: 334 - CloseTime: 57.952us - ExecTime: 281.841ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 115.58us - ProcessConjunctTime: 8.979us - ProjectionTime: 0ns - RowsProduced: 1.339905M (1339905) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 107.608ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 279.22ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [270.703ms, 180.814ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [52.989ms, 54.618ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 346.70ms - MemoryUsage: - FreeBlocks: 22.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.347ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 16.126us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 232.11ms - ScannerCtxSchedTime: 107.594ms - ScannerFilterTime: 103.437ms - ScannerGetBlockTime: 347.692ms - ScannerInitTime: 27.627us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 2.139us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.792us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 69.836us - BlockLoadTime: 346.898ms - BlocksLoad: 838 - CachedPagesNum: 396 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 970.766us - FirstReadTime: 343.666ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.383us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 234.684us - OutputIndexResultColumnTimer: 86.133us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 396 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 121.527ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 121.148ms - CloseTime: 106.377us - GetBlockTime: 4.605ms - OpenTime: 91.571us - PrepareTime: 173.3us - SinkTime: 115.261ms - GetBlockCounter: 504 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.240ms - WaitBfTime: 1s435ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s229ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 332 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.71us - CompressTime: 0ns - ExecTime: 115.195ms - InputRows: 2.021011M (2021011) - LocalBytesSent: 39.37 MB - LocalSendTime: 2.62ms - LocalSentRows: 2.021011M (2021011) - MemoryUsage: - PeakMemoryUsage: 48.14 MB - MergeBlockTime: 0ns - OpenTime: 57.445us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.021011M (2021011) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 48.391ms - SplitBlockHashComputeTime: 50.468ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.592us - BlocksProduced: 504 - CloseTime: 93.496us - ExecTime: 175.575ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 153.749us - ProcessConjunctTime: 7.943us - ProjectionTime: 0ns - RowsProduced: 2.021011M (2021011) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 185.875ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 170.841ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [217.839ms, 177.871ms, 73.549ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [67.023ms, 60.121ms, 58.730ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 295.55ms - MemoryUsage: - FreeBlocks: 33.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.124ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.641us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 322.513ms - ScannerCtxSchedTime: 185.860ms - ScannerFilterTime: 169.869ms - ScannerGetBlockTime: 298.781ms - ScannerInitTime: 54.967us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 12 SegmentIterator: - BitmapIndexFilterTimer: 3.576us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.228us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 115.708us - BlockLoadTime: 296.803ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 638 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 1.714ms - FirstReadTime: 292.210ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.76us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 309.107us - OutputIndexResultColumnTimer: 126.349us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 638 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 107.167ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 106.673ms - CloseTime: 82.327us - GetBlockTime: 3.379ms - OpenTime: 129.363us - PrepareTime: 273.264us - SinkTime: 102.129ms - GetBlockCounter: 505 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.979ms - WaitBfTime: 1s429ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s324ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 332 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.544us - CompressTime: 0ns - ExecTime: 102.91ms - InputRows: 2.019008M (2019008) - LocalBytesSent: 39.35 MB - LocalSendTime: 1.867ms - LocalSentRows: 2.019008M (2019008) - MemoryUsage: - PeakMemoryUsage: 47.90 MB - MergeBlockTime: 0ns - OpenTime: 61.521us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.019008M (2019008) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 56.35ms - SplitBlockHashComputeTime: 31.935ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 1s412ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=35. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 14, type = minmax), RuntimeFilter: (id = 15, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.808us - BlocksProduced: 505 - CloseTime: 67.300us - ExecTime: 226.863ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 289.687us - ProcessConjunctTime: 9.205us - ProjectionTime: 0ns - RowsProduced: 2.019008M (2019008) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 225.255ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 223.240ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 20.251119M (20251119) - expr_input_rows: 28.469932M (28469932) RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 22.220301M (22220301) - expr_input_rows: 26.854461M (26854461) VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [242.754ms, 178.442ms, 56.784ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [75.289ms, 81.998ms, 67.967ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 346.47ms - MemoryUsage: - FreeBlocks: 31.26 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.866ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.321us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 335.290ms - ScannerCtxSchedTime: 225.235ms - ScannerFilterTime: 126.998ms - ScannerGetBlockTime: 350.365ms - ScannerInitTime: 83.428us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 16 SegmentIterator: - BitmapIndexFilterTimer: 4.264us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 43.292us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 164.691us - BlockLoadTime: 348.610ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 645 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 2.32ms - FirstReadTime: 343.731ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.415us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 304.892us - OutputIndexResultColumnTimer: 128.445us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 645 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 139: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 28.299ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 27.487ms - CloseTime: 96.906us - GetBlockTime: 21.375ms - OpenTime: 411.786us - PrepareTime: 292.221us - SinkTime: 5.465ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.654ms - WaitBfTime: 1s107ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s500ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.940us - CompressTime: 0ns - ExecTime: 5.537ms - InputRows: 19.518K (19518) - LocalBytesSent: 1.56 MB - LocalSendTime: 100.689us - LocalSentRows: 19.518K (19518) - MemoryUsage: - PeakMemoryUsage: 2.18 MB - MergeBlockTime: 0ns - OpenTime: 69.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 19.518K (19518) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.54ms - SplitBlockHashComputeTime: 577.922us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 27.691us - ExecTime: 20.958ms - InitProbeSideTime: 2.498ms - JoinFilterTimer: 2.760us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 20.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.844us - ProbeFindNextTime: 0ns - ProbeRows: 53.829K (53829) - ProbeTime: 20.270ms - ProbeWhenBuildSideOutputTime: 3.27ms - ProbeWhenProbeSideOutputTime: 1.71ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.128ms - ProjectionTime: 556.993us - RowsProduced: 19.518K (19518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 418.626ms OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 12, type = minmax), RuntimeFilter: (id = 13, type = bloomfilter), RuntimeFilter: (id = 16, type = minmax), RuntimeFilter: (id = 17, type = bloomfilter), - PushDownPredicates: [{UNION_ID >= [ogjXwv---UPhTsvwy3EqDkHIPu0g]}, {UNION_ID <= [ogjXwvzzz-7sVBXidvWxA4dnf4-s]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 182.81us - BlocksProduced: 15 - CloseTime: 51.186us - ExecTime: 300.257ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 530.915us - ProcessConjunctTime: 61.861us - ProjectionTime: 0ns - RowsProduced: 53.829K (53829) - RowsRead: 53.836K (53836) - RuntimeFilterInfo: - filter id = 17 filtered: 2.028253M (2028253) - filter id = 17 input: 2.082089M (2082089) - ScannerWorkerWaitTime: 129.728ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 299.287ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 62.974K (62974) RuntimeFilter: (id = 13, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 7 - expr_input_rows: 31.487K (31487) RuntimeFilter: (id = 16, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PerScannerRunningTime: [166.008ms, ] - PerScannerRowsRead: [53.84K, ] - PerScannerWaitTime: [129.728ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 132.176ms - MemoryUsage: - FreeBlocks: 1.72 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.85ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.236us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 133.472ms - ScannerCtxSchedTime: 129.716ms - ScannerFilterTime: 7.289ms - ScannerGetBlockTime: 158.488ms - ScannerInitTime: 130.676us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 17: [type = BF, input = 2082089, filtered = 2028253] - BitmapIndexFilterTimer: 1.608us - BlockConditionsFilteredBloomFilterTime: 2.757us - BlockConditionsFilteredDictTime: 987ns - BlockConditionsFilteredTime: 251.86us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 227.73us - BlockInitSeekCount: 18 - BlockInitSeekTime: 18.308us - BlockInitTime: 343.43us - BlockLoadTime: 168.9ms - BlocksLoad: 516 - CachedPagesNum: 2.107K (2107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 1.68ms - FirstReadTime: 25.524ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.281us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 34.694ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 2.298ms - OutputIndexResultColumnTimer: 81.750us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.02832M (2028320) - RowsShortCircuitPredInput: 2.082156M (2082156) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 71.71ms - TotalPagesNum: 2.107K (2107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 201.554us PipelineXTask (index=2):(Active: 26.685ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 25.905ms - CloseTime: 91.511us - GetBlockTime: 18.691ms - OpenTime: 414.232us - PrepareTime: 261.926us - SinkTime: 6.533ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.550ms - WaitBfTime: 1s80ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s516ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.420us - CompressTime: 0ns - ExecTime: 6.600ms - InputRows: 19.242K (19242) - LocalBytesSent: 1.54 MB - LocalSendTime: 87.104us - LocalSentRows: 19.242K (19242) - MemoryUsage: - PeakMemoryUsage: 2.18 MB - MergeBlockTime: 0ns - OpenTime: 78.118us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 19.242K (19242) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.164ms - SplitBlockHashComputeTime: 585.58us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 33.471us - ExecTime: 18.293ms - InitProbeSideTime: 2.543ms - JoinFilterTimer: 2.853us - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 12.674us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.850us - ProbeFindNextTime: 0ns - ProbeRows: 53.623K (53623) - ProbeTime: 17.645ms - ProbeWhenBuildSideOutputTime: 4.885ms - ProbeWhenProbeSideOutputTime: 912.694us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 8.731ms - ProjectionTime: 483.493us - RowsProduced: 19.242K (19242) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 413.372ms OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 12, type = minmax), RuntimeFilter: (id = 13, type = bloomfilter), RuntimeFilter: (id = 16, type = minmax), RuntimeFilter: (id = 17, type = bloomfilter), - PushDownPredicates: [{UNION_ID >= [ogjXwv---UPhTsvwy3EqDkHIPu0g]}, {UNION_ID <= [ogjXwvzzz-7sVBXidvWxA4dnf4-s]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 186.857us - BlocksProduced: 15 - CloseTime: 43.630us - ExecTime: 275.586ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 484.748us - ProcessConjunctTime: 68.233us - ProjectionTime: 0ns - RowsProduced: 53.623K (53623) - RowsRead: 53.632K (53632) - RuntimeFilterInfo: - filter id = 17 filtered: 2.032537M (2032537) - filter id = 17 input: 2.086169M (2086169) - ScannerWorkerWaitTime: 136.518ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 274.684ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 63.398K (63398) RuntimeFilter: (id = 13, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 9 - expr_input_rows: 31.699K (31699) RuntimeFilter: (id = 16, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PerScannerRunningTime: [138.272ms, ] - PerScannerRowsRead: [53.63K, ] - PerScannerWaitTime: [136.518ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 119.132ms - MemoryUsage: - FreeBlocks: 1.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.310ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.68us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.638ms - ScannerCtxSchedTime: 136.498ms - ScannerFilterTime: 6.933ms - ScannerGetBlockTime: 131.82ms - ScannerInitTime: 122.137us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 17: [type = BF, input = 2086169, filtered = 2032537] - BitmapIndexFilterTimer: 1.641us - BlockConditionsFilteredBloomFilterTime: 2.558us - BlockConditionsFilteredDictTime: 1.555us - BlockConditionsFilteredTime: 264.342us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 239.168us - BlockInitSeekCount: 17 - BlockInitSeekTime: 27.128us - BlockInitTime: 357.152us - BlockLoadTime: 140.977ms - BlocksLoad: 516 - CachedPagesNum: 2.112K (2112) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 992.288us - FirstReadTime: 25.375ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.577us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 23.457ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 2.45ms - OutputIndexResultColumnTimer: 68.135us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.032602M (2032602) - RowsShortCircuitPredInput: 2.086234M (2086234) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 69.421ms - TotalPagesNum: 2.112K (2112) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 200.897us PipelineXTask (index=4):(Active: 35.149ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 34.533ms - CloseTime: 113.260us - GetBlockTime: 19.164ms - OpenTime: 225.549us - PrepareTime: 264.472us - SinkTime: 14.888ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.19ms - WaitBfTime: 1s107ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s338ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.821us - CompressTime: 0ns - ExecTime: 14.966ms - InputRows: 19.818K (19818) - LocalBytesSent: 1.59 MB - LocalSendTime: 138.973us - LocalSentRows: 19.818K (19818) - MemoryUsage: - PeakMemoryUsage: 2.18 MB - MergeBlockTime: 0ns - OpenTime: 77.725us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 19.818K (19818) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 13.311ms - SplitBlockHashComputeTime: 609.351us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 15.101us - ExecTime: 18.659ms - InitProbeSideTime: 2.797ms - JoinFilterTimer: 2.936us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 17.492us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.913us - ProbeFindNextTime: 0ns - ProbeRows: 53.955K (53955) - ProbeTime: 17.952ms - ProbeWhenBuildSideOutputTime: 3.650ms - ProbeWhenProbeSideOutputTime: 1.197ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.687ms - ProjectionTime: 545.854us - RowsProduced: 19.818K (19818) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 392.445ms OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 12, type = minmax), RuntimeFilter: (id = 13, type = bloomfilter), RuntimeFilter: (id = 16, type = minmax), RuntimeFilter: (id = 17, type = bloomfilter), - PushDownPredicates: [{UNION_ID >= [ogjXwv---UPhTsvwy3EqDkHIPu0g]}, {UNION_ID <= [ogjXwvzzz-7sVBXidvWxA4dnf4-s]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 117.27us - BlocksProduced: 16 - CloseTime: 80.813us - ExecTime: 265.516ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 308.560us - ProcessConjunctTime: 28.881us - ProjectionTime: 0ns - RowsProduced: 53.955K (53955) - RowsRead: 53.963K (53963) - RuntimeFilterInfo: - filter id = 17 filtered: 2.033014M (2033014) - filter id = 17 input: 2.086977M (2086977) - ScannerWorkerWaitTime: 122.247ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 264.677ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 63.886K (63886) RuntimeFilter: (id = 13, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 8 - expr_input_rows: 31.943K (31943) RuntimeFilter: (id = 16, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PerScannerRunningTime: [146.897ms, ] - PerScannerRowsRead: [53.96K, ] - PerScannerWaitTime: [122.247ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 126.500ms - MemoryUsage: - FreeBlocks: 1.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.412ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.536us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 127.899ms - ScannerCtxSchedTime: 122.237ms - ScannerFilterTime: 7.946ms - ScannerGetBlockTime: 138.730ms - ScannerInitTime: 56.395us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id 17: [type = BF, input = 2086977, filtered = 2033014] - BitmapIndexFilterTimer: 1.764us - BlockConditionsFilteredBloomFilterTime: 2.942us - BlockConditionsFilteredDictTime: 1.123us - BlockConditionsFilteredTime: 298.731us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 264.920us - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.370us - BlockInitTime: 407.549us - BlockLoadTime: 147.576ms - BlocksLoad: 517 - CachedPagesNum: 2.113K (2113) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 515 - FirstReadSeekTime: 574.672us - FirstReadTime: 24.789ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.854us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 13.973ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 12.455ms - OutputIndexResultColumnTimer: 67.217us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.033082M (2033082) - RowsShortCircuitPredInput: 2.087045M (2087045) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 75.836ms - TotalPagesNum: 2.113K (2113) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 203.473us PipelineXTask (index=6):(Active: 42.468ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 41.877ms - CloseTime: 90.802us - GetBlockTime: 35.331ms - OpenTime: 186.704us - PrepareTime: 304.25us - SinkTime: 6.118ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.587ms - WaitBfTime: 1s80ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 711.412ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.817us - CompressTime: 0ns - ExecTime: 6.169ms - InputRows: 19.705K (19705) - LocalBytesSent: 1.58 MB - LocalSendTime: 95.248us - LocalSentRows: 19.705K (19705) - MemoryUsage: - PeakMemoryUsage: 2.18 MB - MergeBlockTime: 0ns - OpenTime: 59.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 19.705K (19705) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.397ms - SplitBlockHashComputeTime: 644.419us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 16.273us - ExecTime: 34.893ms - InitProbeSideTime: 2.754ms - JoinFilterTimer: 2.800us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 19.75us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.65us - ProbeFindNextTime: 0ns - ProbeRows: 54.0K (54000) - ProbeTime: 34.114ms - ProbeWhenBuildSideOutputTime: 19.440ms - ProbeWhenProbeSideOutputTime: 1.73ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.256ms - ProjectionTime: 539.815us - RowsProduced: 19.705K (19705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 310.96ms OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 12, type = minmax), RuntimeFilter: (id = 13, type = bloomfilter), RuntimeFilter: (id = 16, type = minmax), RuntimeFilter: (id = 17, type = bloomfilter), - PushDownPredicates: [{UNION_ID >= [ogjXwv---UPhTsvwy3EqDkHIPu0g]}, {UNION_ID <= [ogjXwvzzz-7sVBXidvWxA4dnf4-s]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 75.894us - BlocksProduced: 15 - CloseTime: 61.160us - ExecTime: 441.775ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 336.425us - ProcessConjunctTime: 23.597us - ProjectionTime: 0ns - RowsProduced: 54.0K (54000) - RowsRead: 54.005K (54005) - RuntimeFilterInfo: - filter id = 17 filtered: 2.032797M (2032797) - filter id = 17 input: 2.086802M (2086802) - ScannerWorkerWaitTime: 136.180ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 440.980ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 63.834K (63834) RuntimeFilter: (id = 13, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 5 - expr_input_rows: 31.917K (31917) RuntimeFilter: (id = 16, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: ComparisonPredicateBase(STRING, GE), column_id=1, opposite=false ComparisonPredicateBase(STRING, LE), column_id=1, opposite=false BloomFilterColumnPredicate(VARCHAR), column_id=1, opposite=false - PerScannerRunningTime: [209.219ms, ] - PerScannerRowsRead: [54.01K, ] - PerScannerWaitTime: [136.180ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 170.958ms - MemoryUsage: - FreeBlocks: 1.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 88.491ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.841us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 157.547ms - ScannerCtxSchedTime: 136.163ms - ScannerFilterTime: 8.289ms - ScannerGetBlockTime: 200.663ms - ScannerInitTime: 57.79us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id 17: [type = BF, input = 2086802, filtered = 2032797] - BitmapIndexFilterTimer: 1.950us - BlockConditionsFilteredBloomFilterTime: 4.324us - BlockConditionsFilteredDictTime: 1.527us - BlockConditionsFilteredTime: 340.844us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 306.726us - BlockInitSeekCount: 14 - BlockInitSeekTime: 23.430us - BlockInitTime: 451.27us - BlockLoadTime: 287.431ms - BlocksLoad: 517 - CachedPagesNum: 2.113K (2113) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 515 - FirstReadSeekTime: 1.217ms - FirstReadTime: 41.378ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.132us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 15.863ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 2.893ms - OutputIndexResultColumnTimer: 83.70us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 2.032887M (2032887) - RowsShortCircuitPredInput: 2.086892M (2086892) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 112.700ms - TotalPagesNum: 2.113K (2113) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 213.177us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 105.184ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 105.79ms - CloseTime: 19.303us - GetBlockTime: 919.52us - OpenTime: 2.680us - PrepareTime: 74.254us - SinkTime: 103.905ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 50.400ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 615.924ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.569us - BuildRows: 177.503K (177503) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.137ms - BuildTableInsertTime: 38.550ms - BuildTableTime: 38.556ms - CloseTime: 0ns - ExecTime: 103.905ms - InputRows: 177.502K (177502) - MemoryUsage: - BuildBlocks: 11.34 MB - BuildKeyArena: 6.10 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.11 MB - OpenTime: 35.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.947us - RuntimeFilterComputeTime: 4.993ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 45 - BytesReceived: 0.00 - CloseTime: 14.656us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 907.995us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.56 MB - MemoryUsage: - Blocks: 5.24 MB - PeakMemoryUsage: 5.24 MB - OpenTime: 14.734us - ProjectionTime: 0ns - RowsProduced: 177.502K (177502) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s332ms PipelineXTask (index=3):(Active: 100.61ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 99.986ms - CloseTime: 17.863us - GetBlockTime: 874.83us - OpenTime: 2.211us - PrepareTime: 50.248us - SinkTime: 98.945ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.617ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 651.789ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.767us - BuildRows: 178.047K (178047) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 66.41ms - BuildTableInsertTime: 28.633ms - BuildTableTime: 28.642ms - CloseTime: 0ns - ExecTime: 98.937ms - InputRows: 178.046K (178046) - MemoryUsage: - BuildBlocks: 11.37 MB - BuildKeyArena: 6.12 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.17 MB - OpenTime: 12.677us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.266us - RuntimeFilterComputeTime: 4.88ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 13.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 875.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.48 MB - MemoryUsage: - Blocks: 9.05 MB - PeakMemoryUsage: 9.05 MB - OpenTime: 19.478us - ProjectionTime: 0ns - RowsProduced: 178.046K (178046) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s285ms PipelineXTask (index=5):(Active: 71.560ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 71.477ms - CloseTime: 18.413us - GetBlockTime: 794.224us - OpenTime: 2.652us - PrepareTime: 57.403us - SinkTime: 70.541ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.491ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 691.98ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 24.289us - BuildRows: 178.794K (178794) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 50.574ms - BuildTableInsertTime: 15.602ms - BuildTableTime: 15.608ms - CloseTime: 0ns - ExecTime: 70.548ms - InputRows: 178.793K (178793) - MemoryUsage: - BuildBlocks: 11.42 MB - BuildKeyArena: 6.14 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.25 MB - OpenTime: 25.162us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.954us - RuntimeFilterComputeTime: 4.172ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 14.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 793.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.68 MB - MemoryUsage: - Blocks: 10.48 MB - PeakMemoryUsage: 10.48 MB - OpenTime: 13.923us - ProjectionTime: 0ns - RowsProduced: 178.793K (178793) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s264ms PipelineXTask (index=7):(Active: 151.373ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 151.280ms - CloseTime: 22.415us - GetBlockTime: 945.906us - OpenTime: 1.998us - PrepareTime: 63.447us - SinkTime: 150.168ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 48.233ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 629.757ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 25.736us - BuildRows: 178.363K (178363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 101.936ms - BuildTableInsertTime: 42.470ms - BuildTableTime: 42.477ms - CloseTime: 0ns - ExecTime: 150.166ms - InputRows: 178.362K (178362) - MemoryUsage: - BuildBlocks: 11.39 MB - BuildKeyArena: 6.13 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 21.665us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 19.729us - RuntimeFilterComputeTime: 5.576ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 18.26us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 950.105us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.65 MB - MemoryUsage: - Blocks: 12.87 MB - PeakMemoryUsage: 12.87 MB - OpenTime: 19.274us - ProjectionTime: 0ns - RowsProduced: 178.362K (178362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s279ms Fragment 140: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 52.477ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 52.283ms - CloseTime: 29.970us - GetBlockTime: 9.418ms - OpenTime: 7.880us - PrepareTime: 147.500us - SinkTime: 42.622ms - GetBlockCounter: 30 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.846ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s88ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.379us - CompressTime: 0ns - ExecTime: 42.702ms - InputRows: 80.173K (80173) - LocalBytesSent: 5.12 MB - LocalSendTime: 279.262us - LocalSentRows: 80.173K (80173) - MemoryUsage: - PeakMemoryUsage: 7.86 MB - MergeBlockTime: 0ns - OpenTime: 96.93us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80.173K (80173) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 38.42ms - SplitBlockHashComputeTime: 3.236ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 12.921us - ExecTime: 9.172ms - InitProbeSideTime: 1.787ms - JoinFilterTimer: 4.652us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.960us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.666us - ProbeFindNextTime: 0ns - ProbeRows: 80.173K (80173) - ProbeTime: 8.43ms - ProbeWhenBuildSideOutputTime: 1.567ms - ProbeWhenProbeSideOutputTime: 1.877ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.177ms - ProjectionTime: 995.770us - RowsProduced: 80.173K (80173) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 23 - CloseTime: 0ns - ExecTime: 186.256us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 2.41 MB - OpenTime: 807ns - ProjectionTime: 0ns - RowsProduced: 80.173K (80173) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 863.219ms PipelineXTask (index=3):(Active: 63.431ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 63.273ms - CloseTime: 21.829us - GetBlockTime: 37.21ms - OpenTime: 4.937us - PrepareTime: 124.615us - SinkTime: 26.70ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.369ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 659.191ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 20 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.886us - CompressTime: 0ns - ExecTime: 26.116ms - InputRows: 75.306K (75306) - LocalBytesSent: 4.81 MB - LocalSendTime: 194.550us - LocalSentRows: 75.306K (75306) - MemoryUsage: - PeakMemoryUsage: 7.53 MB - MergeBlockTime: 0ns - OpenTime: 57.604us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 75.306K (75306) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.624ms - SplitBlockHashComputeTime: 2.376ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 21 - BuildOutputBlock: 0ns - CloseTime: 10.166us - ExecTime: 36.848ms - InitProbeSideTime: 1.441ms - JoinFilterTimer: 3.866us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 27.231us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.444us - ProbeFindNextTime: 0ns - ProbeRows: 75.306K (75306) - ProbeTime: 35.641ms - ProbeWhenBuildSideOutputTime: 1.101ms - ProbeWhenProbeSideOutputTime: 31.73ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.553ms - ProjectionTime: 1.93ms - RowsProduced: 75.306K (75306) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 21 - CloseTime: 0ns - ExecTime: 150.600us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.39 MB - OpenTime: 593ns - ProjectionTime: 0ns - RowsProduced: 75.306K (75306) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s64ms PipelineXTask (index=6):(Active: 36.404ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.259ms - CloseTime: 32.193us - GetBlockTime: 25.156ms - OpenTime: 3.645us - PrepareTime: 100.570us - SinkTime: 10.943ms - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s198ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.271us - CompressTime: 0ns - ExecTime: 10.994ms - InputRows: 67.281K (67281) - LocalBytesSent: 4.30 MB - LocalSendTime: 181.425us - LocalSentRows: 67.281K (67281) - MemoryUsage: - PeakMemoryUsage: 6.67 MB - MergeBlockTime: 0ns - OpenTime: 47.893us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 67.281K (67281) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.751ms - SplitBlockHashComputeTime: 2.305ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 8.781us - ExecTime: 25.5ms - InitProbeSideTime: 1.258ms - JoinFilterTimer: 3.705us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.264us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.502us - ProbeFindNextTime: 0ns - ProbeRows: 67.281K (67281) - ProbeTime: 24.131ms - ProbeWhenBuildSideOutputTime: 889.117us - ProbeWhenProbeSideOutputTime: 19.990ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.495ms - ProjectionTime: 779.927us - RowsProduced: 67.281K (67281) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 117.868us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 1.97 MB - OpenTime: 1.752us - ProjectionTime: 0ns - RowsProduced: 67.281K (67281) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 635.604ms PipelineXTask (index=9):(Active: 29.741ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.609ms - CloseTime: 33.771us - GetBlockTime: 6.740ms - OpenTime: 6.275us - PrepareTime: 87.231us - SinkTime: 22.686ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.690ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.91ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.965us - CompressTime: 0ns - ExecTime: 22.720ms - InputRows: 66.552K (66552) - LocalBytesSent: 4.25 MB - LocalSendTime: 167.311us - LocalSentRows: 66.552K (66552) - MemoryUsage: - PeakMemoryUsage: 6.67 MB - MergeBlockTime: 0ns - OpenTime: 33.612us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 66.552K (66552) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 19.596ms - SplitBlockHashComputeTime: 2.150ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 15.508us - ExecTime: 6.574ms - InitProbeSideTime: 1.226ms - JoinFilterTimer: 3.349us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 16.896us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.665us - ProbeFindNextTime: 0ns - ProbeRows: 66.552K (66552) - ProbeTime: 5.581ms - ProbeWhenBuildSideOutputTime: 839.244us - ProbeWhenProbeSideOutputTime: 1.598ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.475ms - ProjectionTime: 888.853us - RowsProduced: 66.552K (66552) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 131.691us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 1.36 MB - OpenTime: 662ns - ProjectionTime: 0ns - RowsProduced: 66.552K (66552) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s484ms PipelineXTask (index=12):(Active: 37.128ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.994ms - CloseTime: 41.266us - GetBlockTime: 17.724ms - OpenTime: 3.535us - PrepareTime: 85.870us - SinkTime: 19.111ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 475.917ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.474us - CompressTime: 0ns - ExecTime: 19.147ms - InputRows: 61.621K (61621) - LocalBytesSent: 3.94 MB - LocalSendTime: 154.846us - LocalSentRows: 61.621K (61621) - MemoryUsage: - PeakMemoryUsage: 6.20 MB - MergeBlockTime: 0ns - OpenTime: 32.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 61.621K (61621) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.439ms - SplitBlockHashComputeTime: 10.852ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 17.407us - ExecTime: 17.601ms - InitProbeSideTime: 1.106ms - JoinFilterTimer: 3.266us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.192us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.360us - ProbeFindNextTime: 0ns - ProbeRows: 61.621K (61621) - ProbeTime: 16.548ms - ProbeWhenBuildSideOutputTime: 1.7ms - ProbeWhenProbeSideOutputTime: 1.781ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.288ms - ProjectionTime: 961.177us - RowsProduced: 61.621K (61621) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 90.709us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.53 MB - OpenTime: 649ns - ProjectionTime: 0ns - RowsProduced: 61.621K (61621) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s447ms PipelineXTask (index=15):(Active: 38.295ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 38.167ms - CloseTime: 30.864us - GetBlockTime: 7.150ms - OpenTime: 6.410us - PrepareTime: 85.64us - SinkTime: 30.886ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.468ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 448.919ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.263us - CompressTime: 0ns - ExecTime: 30.924ms - InputRows: 63.592K (63592) - LocalBytesSent: 4.06 MB - LocalSendTime: 151.770us - LocalSentRows: 63.592K (63592) - MemoryUsage: - PeakMemoryUsage: 6.29 MB - MergeBlockTime: 0ns - OpenTime: 38.220us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 63.592K (63592) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 28.227ms - SplitBlockHashComputeTime: 1.938ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 17 - BuildOutputBlock: 0ns - CloseTime: 18.423us - ExecTime: 7.61ms - InitProbeSideTime: 1.173ms - JoinFilterTimer: 2.827us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.616us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.980us - ProbeFindNextTime: 0ns - ProbeRows: 63.592K (63592) - ProbeTime: 6.310ms - ProbeWhenBuildSideOutputTime: 879.637us - ProbeWhenProbeSideOutputTime: 2.582ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.285ms - ProjectionTime: 668.525us - RowsProduced: 63.592K (63592) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 17 - CloseTime: 0ns - ExecTime: 86.998us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 3.06 MB - OpenTime: 963ns - ProjectionTime: 0ns - RowsProduced: 63.592K (63592) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s307ms PipelineXTask (index=18):(Active: 46.977ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.850ms - CloseTime: 31.255us - GetBlockTime: 6.632ms - OpenTime: 3.900us - PrepareTime: 86.247us - SinkTime: 40.74ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.760ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 477.153ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.685us - CompressTime: 0ns - ExecTime: 40.118ms - InputRows: 54.972K (54972) - LocalBytesSent: 3.51 MB - LocalSendTime: 194.1us - LocalSentRows: 54.972K (54972) - MemoryUsage: - PeakMemoryUsage: 5.67 MB - MergeBlockTime: 0ns - OpenTime: 37.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 54.972K (54972) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 17.96ms - SplitBlockHashComputeTime: 22.140ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 17 - BuildOutputBlock: 0ns - CloseTime: 9.238us - ExecTime: 6.498ms - InitProbeSideTime: 1.94ms - JoinFilterTimer: 3.254us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 11.322us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.47us - ProbeFindNextTime: 0ns - ProbeRows: 54.972K (54972) - ProbeTime: 5.821ms - ProbeWhenBuildSideOutputTime: 1.838ms - ProbeWhenProbeSideOutputTime: 1.142ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.303ms - ProjectionTime: 592.905us - RowsProduced: 54.972K (54972) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 17 - CloseTime: 0ns - ExecTime: 97.164us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 2.78 MB - OpenTime: 895ns - ProjectionTime: 0ns - RowsProduced: 54.972K (54972) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s436ms PipelineXTask (index=21):(Active: 74.128ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 73.992ms - CloseTime: 41.587us - GetBlockTime: 35.959ms - OpenTime: 4.885us - PrepareTime: 84.125us - SinkTime: 37.921ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.56ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 442.191ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.387us - CompressTime: 0ns - ExecTime: 37.964ms - InputRows: 51.373K (51373) - LocalBytesSent: 3.28 MB - LocalSendTime: 133.304us - LocalSentRows: 51.373K (51373) - MemoryUsage: - PeakMemoryUsage: 5.02 MB - MergeBlockTime: 0ns - OpenTime: 39.0us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 51.373K (51373) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 35.420ms - SplitBlockHashComputeTime: 1.557ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 21.817us - ExecTime: 35.866ms - InitProbeSideTime: 30.980ms - JoinFilterTimer: 2.672us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.250us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.223us - ProbeFindNextTime: 0ns - ProbeRows: 51.373K (51373) - ProbeTime: 35.136ms - ProbeWhenBuildSideOutputTime: 804.262us - ProbeWhenProbeSideOutputTime: 1.988ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.32ms - ProjectionTime: 645.699us - RowsProduced: 51.373K (51373) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 88.905us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.31 MB - OpenTime: 688ns - ProjectionTime: 0ns - RowsProduced: 51.373K (51373) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s383ms PipelineXTask (index=24):(Active: 30.783ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.626ms - CloseTime: 38.843us - GetBlockTime: 6.987ms - OpenTime: 5.325us - PrepareTime: 106.775us - SinkTime: 23.472ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.466ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 601.277ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.388us - CompressTime: 0ns - ExecTime: 23.509ms - InputRows: 49.705K (49705) - LocalBytesSent: 3.18 MB - LocalSendTime: 114.469us - LocalSentRows: 49.705K (49705) - MemoryUsage: - PeakMemoryUsage: 4.77 MB - MergeBlockTime: 0ns - OpenTime: 42.558us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 49.705K (49705) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 7.906ms - SplitBlockHashComputeTime: 14.834ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 29.347us - ExecTime: 6.881ms - InitProbeSideTime: 1.149ms - JoinFilterTimer: 2.775us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.32us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.727us - ProbeFindNextTime: 0ns - ProbeRows: 49.705K (49705) - ProbeTime: 5.974ms - ProbeWhenBuildSideOutputTime: 865.155us - ProbeWhenProbeSideOutputTime: 2.412ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.211ms - ProjectionTime: 808.261us - RowsProduced: 49.705K (49705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 86.251us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 1.75 MB - OpenTime: 783ns - ProjectionTime: 0ns - RowsProduced: 49.705K (49705) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s154ms PipelineXTask (index=27):(Active: 141.406ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 141.242ms - CloseTime: 46.66us - GetBlockTime: 132.956ms - OpenTime: 3.835us - PrepareTime: 106.533us - SinkTime: 8.159ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 14.336ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s21ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.245us - CompressTime: 0ns - ExecTime: 8.210ms - InputRows: 50.6K (50600) - LocalBytesSent: 3.23 MB - LocalSendTime: 126.856us - LocalSentRows: 50.6K (50600) - MemoryUsage: - PeakMemoryUsage: 4.83 MB - MergeBlockTime: 0ns - OpenTime: 52.31us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 50.6K (50600) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 5.761ms - SplitBlockHashComputeTime: 1.736ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 28.467us - ExecTime: 132.865ms - InitProbeSideTime: 1.258ms - JoinFilterTimer: 2.552us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 9.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.347us - ProbeFindNextTime: 0ns - ProbeRows: 50.6K (50600) - ProbeTime: 132.141ms - ProbeWhenBuildSideOutputTime: 682.505us - ProbeWhenProbeSideOutputTime: 128.688ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.139ms - ProjectionTime: 630.861us - RowsProduced: 50.6K (50600) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 75.780us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 1.97 MB - OpenTime: 1.349us - ProjectionTime: 0ns - RowsProduced: 50.6K (50600) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 841.687ms PipelineXTask (index=30):(Active: 26.586ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.445ms - CloseTime: 37.624us - GetBlockTime: 18.944ms - OpenTime: 15.344us - PrepareTime: 82.339us - SinkTime: 7.296ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.674ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 473.456ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.696us - CompressTime: 0ns - ExecTime: 7.337ms - InputRows: 49.825K (49825) - LocalBytesSent: 3.18 MB - LocalSendTime: 132.589us - LocalSentRows: 49.825K (49825) - MemoryUsage: - PeakMemoryUsage: 4.77 MB - MergeBlockTime: 0ns - OpenTime: 34.943us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 49.825K (49825) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.864ms - SplitBlockHashComputeTime: 1.630ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 16.411us - ExecTime: 18.795ms - InitProbeSideTime: 14.764ms - JoinFilterTimer: 2.189us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 11.836us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.463us - ProbeFindNextTime: 0ns - ProbeRows: 49.825K (49825) - ProbeTime: 17.889ms - ProbeWhenBuildSideOutputTime: 680.616us - ProbeWhenProbeSideOutputTime: 1.29ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.66ms - ProjectionTime: 829.66us - RowsProduced: 49.825K (49825) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 114.342us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 768ns - ProjectionTime: 0ns - RowsProduced: 49.825K (49825) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s293ms PipelineXTask (index=33):(Active: 57.686ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 57.570ms - CloseTime: 37.994us - GetBlockTime: 52.516ms - OpenTime: 6.585us - PrepareTime: 66.176us - SinkTime: 4.953ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.700ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 789.434ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.578us - CompressTime: 0ns - ExecTime: 4.992ms - InputRows: 41.703K (41703) - LocalBytesSent: 2.66 MB - LocalSendTime: 98.811us - LocalSentRows: 41.703K (41703) - MemoryUsage: - PeakMemoryUsage: 4.11 MB - MergeBlockTime: 0ns - OpenTime: 29.395us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 41.703K (41703) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 3.256ms - SplitBlockHashComputeTime: 1.256ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.782us - ExecTime: 52.462ms - InitProbeSideTime: 48.796ms - JoinFilterTimer: 2.44us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 9.458us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.900us - ProbeFindNextTime: 0ns - ProbeRows: 41.703K (41703) - ProbeTime: 51.810ms - ProbeWhenBuildSideOutputTime: 576.409us - ProbeWhenProbeSideOutputTime: 1.412ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 801.888us - ProjectionTime: 584.954us - RowsProduced: 41.703K (41703) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 53.208us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 2.27 MB - OpenTime: 604ns - ProjectionTime: 0ns - RowsProduced: 41.703K (41703) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s113ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.239ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 584.258us - CloseTime: 44.599us - GetBlockTime: 67.350us - OpenTime: 451.933us - PrepareTime: 147.798us - SinkTime: 30.587us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 337.282ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 39.250ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 30.802us - InputRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.185us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 50.266us - BlocksProduced: 1 - CloseTime: 41.771us - ExecTime: 74.398ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 527.831us - ProcessConjunctTime: 194.161us - ProjectionTime: 7.670us - RowsProduced: 4 - RowsRead: 4 - RuntimeFilterInfo: - filter id = -1 filtered: 197.73K (197730) - filter id = -1 input: 197.738K (197738) - ScannerWorkerWaitTime: 70.371ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 73.736ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [1.189ms, ] - PerScannerRowsRead: [4, ] - PerScannerWaitTime: [70.371ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.141ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.76ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 3.349ms - ScannerCtxSchedTime: 70.369ms - ScannerFilterTime: 3.121us - ScannerGetBlockTime: 1.179ms - ScannerInitTime: 160.639us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 197738, filtered = 197730] - BitmapIndexFilterTimer: 897ns - BlockConditionsFilteredBloomFilterTime: 2.535us - BlockConditionsFilteredDictTime: 51.282us - BlockConditionsFilteredTime: 91.308us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 26.188us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.222us - BlockInitTime: 134.942us - BlockLoadTime: 3.21ms - BlocksLoad: 139 - CachedPagesNum: 108 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 414 - FirstReadSeekTime: 39.630us - FirstReadTime: 1.799ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.735us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 19.55us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 21.701us - OutputIndexResultColumnTimer: 5.393us - RawRowsRead: 556.885K (556885) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 98.865K (98865) - RowsShortCircuitPredInput: 98.869K (98869) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 458.016K (458016) - RowsVectorPredInput: 556.885K (556885) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 206.145us - TotalPagesNum: 108 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 670.72us PipelineXTask (index=4):(Active: 931.396us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 405.137us - CloseTime: 50.440us - GetBlockTime: 46.18us - OpenTime: 324.500us - PrepareTime: 128.620us - SinkTime: 7.902us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 870.745us - WaitBfTime: 337.651ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.253ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.357us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.100us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 33.35us - BlocksProduced: 1 - CloseTime: 47.599us - ExecTime: 76.641ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 405.122us - ProcessConjunctTime: 158.171us - ProjectionTime: 10.786us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 71.512ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 76.132ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [3.023ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [71.512ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.189ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.496ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 181ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.604ms - ScannerCtxSchedTime: 71.510ms - ScannerFilterTime: 3.743us - ScannerGetBlockTime: 3.6ms - ScannerInitTime: 117.251us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 2.479us - BlockConditionsFilteredBloomFilterTime: 6.281us - BlockConditionsFilteredDictTime: 172.691us - BlockConditionsFilteredTime: 273.253us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.593us - BlockInitSeekCount: 37 - BlockInitSeekTime: 262.524us - BlockInitTime: 633.429us - BlockLoadTime: 4.75ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 97.298us - FirstReadTime: 2.90ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.186us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 30.434us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 30.601us - OutputIndexResultColumnTimer: 7.419us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 95.745K (95745) - RowsShortCircuitPredInput: 95.75K (95750) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 485.426K (485426) - RowsVectorPredInput: 581.176K (581176) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 429.270us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 698.187us PipelineXTask (index=7):(Active: 1.198ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 567.826us - CloseTime: 42.533us - GetBlockTime: 79.409us - OpenTime: 414.477us - PrepareTime: 155.844us - SinkTime: 38.265us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 970.390us - WaitBfTime: 337.617ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.804ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 37.212us - InputRows: 11.788K (11788) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.92us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 31.976us - BlocksProduced: 4 - CloseTime: 39.733us - ExecTime: 136.175ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 507.734us - ProcessConjunctTime: 178.947us - ProjectionTime: 567.542us - RowsProduced: 11.788K (11788) - RowsRead: 11.788K (11788) - RuntimeFilterInfo: - filter id = -1 filtered: 656.598K (656598) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 72.238ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.949ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [59.169ms, ] - PerScannerRowsRead: [11.79K, ] - PerScannerWaitTime: [72.238ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 57.702ms - MemoryUsage: - FreeBlocks: 532.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.50ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 283ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.251ms - ScannerCtxSchedTime: 72.236ms - ScannerFilterTime: 190.489us - ScannerGetBlockTime: 58.861ms - ScannerInitTime: 185.671us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656598] - BitmapIndexFilterTimer: 1.383us - BlockConditionsFilteredBloomFilterTime: 3.14us - BlockConditionsFilteredDictTime: 69.34us - BlockConditionsFilteredTime: 179.842us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.569us - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.420us - BlockInitTime: 241.212us - BlockLoadTime: 59.132ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 177.170us - FirstReadTime: 48.482ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.759us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.387ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 542.265us - OutputIndexResultColumnTimer: 26.82us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 328.299K (328299) - RowsShortCircuitPredInput: 340.087K (340087) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.140838M (1140838) - RowsVectorPredInput: 1.480925M (1480925) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 778.794us - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.29ms PipelineXTask (index=10):(Active: 1.460ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 718.312us - CloseTime: 64.578us - GetBlockTime: 120.459us - OpenTime: 493.171us - PrepareTime: 175.829us - SinkTime: 67.363us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.384ms - WaitBfTime: 395.862ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.905ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 76.59us - InputRows: 19.87K (19870) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 10.754us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 66.281us - BlocksProduced: 7 - CloseTime: 61.205us - ExecTime: 115.468ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 569.287us - ProcessConjunctTime: 245.890us - ProjectionTime: 739.524us - RowsProduced: 19.87K (19870) - RowsRead: 19.87K (19870) - RuntimeFilterInfo: - filter id = -1 filtered: 647.96K (647960) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 27.640ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 113.929ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [82.432ms, ] - PerScannerRowsRead: [19.87K, ] - PerScannerWaitTime: [27.640ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 80.452ms - MemoryUsage: - FreeBlocks: 756.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.159ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 556ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.905ms - ScannerCtxSchedTime: 27.634ms - ScannerFilterTime: 254.291us - ScannerGetBlockTime: 82.51ms - ScannerInitTime: 148.413us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 647960] - BitmapIndexFilterTimer: 2.352us - BlockConditionsFilteredBloomFilterTime: 5.737us - BlockConditionsFilteredDictTime: 104.624us - BlockConditionsFilteredTime: 216.482us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 83.873us - BlockInitSeekCount: 26 - BlockInitSeekTime: 31.781us - BlockInitTime: 333.435us - BlockLoadTime: 82.136ms - BlocksLoad: 405 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 193.643us - FirstReadTime: 6.502ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.349us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 70.370ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 766.839us - OutputIndexResultColumnTimer: 33.624us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 323.98K (323980) - RowsShortCircuitPredInput: 343.85K (343850) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.279939M (1279939) - RowsVectorPredInput: 1.623789M (1623789) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.33ms - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.248ms PipelineXTask (index=13):(Active: 1.347ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 627.311us - CloseTime: 47.36us - GetBlockTime: 93.375us - OpenTime: 414.554us - PrepareTime: 248.446us - SinkTime: 78.442us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.234ms - WaitBfTime: 312.764ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 147.119ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 77.8us - InputRows: 43.479K (43479) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.31us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 45.163us - BlocksProduced: 12 - CloseTime: 44.363us - ExecTime: 112.912ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 599.142us - ProcessConjunctTime: 207.369us - ProjectionTime: 806.589us - RowsProduced: 43.479K (43479) - RowsRead: 43.479K (43479) - RuntimeFilterInfo: - filter id = -1 filtered: 914.51K (914510) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 82.107ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.342ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [22.409ms, ] - PerScannerRowsRead: [43.48K, ] - PerScannerWaitTime: [82.107ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.129ms - MemoryUsage: - FreeBlocks: 1.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.269ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 452ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.208ms - ScannerCtxSchedTime: 82.104ms - ScannerFilterTime: 214.866us - ScannerGetBlockTime: 22.70ms - ScannerInitTime: 132.354us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 914510] - BitmapIndexFilterTimer: 2.836us - BlockConditionsFilteredBloomFilterTime: 12.544us - BlockConditionsFilteredDictTime: 157.199us - BlockConditionsFilteredTime: 306.482us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 96.166us - BlockInitSeekCount: 25 - BlockInitSeekTime: 33.923us - BlockInitTime: 471.867us - BlockLoadTime: 22.288ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 222.696us - FirstReadTime: 6.117ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.475us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 9.943ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.116ms - OutputIndexResultColumnTimer: 30.918us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 457.255K (457255) - RowsShortCircuitPredInput: 500.734K (500734) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.043746M (1043746) - RowsVectorPredInput: 1.54448M (1544480) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.497ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.355ms PipelineXTask (index=16):(Active: 1.432ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 789.890us - CloseTime: 64.269us - GetBlockTime: 209.722us - OpenTime: 422.428us - PrepareTime: 143.526us - SinkTime: 82.214us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.348ms - WaitBfTime: 353.503ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s165ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 79.806us - InputRows: 19.524K (19524) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.302us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 56.964us - BlocksProduced: 8 - CloseTime: 61.312us - ExecTime: 273.835ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 509.295us - ProcessConjunctTime: 200.651us - ProjectionTime: 990.645us - RowsProduced: 19.524K (19524) - RowsRead: 19.524K (19524) - RuntimeFilterInfo: - filter id = -1 filtered: 921.114K (921114) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 152.223ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 272.12ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [115.316ms, ] - PerScannerRowsRead: [19.52K, ] - PerScannerWaitTime: [152.223ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 111.565ms - MemoryUsage: - FreeBlocks: 824.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 670.567us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.920us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.809ms - ScannerCtxSchedTime: 152.213ms - ScannerFilterTime: 316.51us - ScannerGetBlockTime: 114.825ms - ScannerInitTime: 141.346us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921114] - BitmapIndexFilterTimer: 2.733us - BlockConditionsFilteredBloomFilterTime: 7.810us - BlockConditionsFilteredDictTime: 148.685us - BlockConditionsFilteredTime: 294.533us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 101.814us - BlockInitSeekCount: 31 - BlockInitSeekTime: 32.885us - BlockInitTime: 432.329us - BlockLoadTime: 114.249ms - BlocksLoad: 410 - CachedPagesNum: 1.157K (1157) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 275.698us - FirstReadTime: 52.521ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.950us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 54.781ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.139ms - OutputIndexResultColumnTimer: 42.796us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 460.557K (460557) - RowsShortCircuitPredInput: 480.081K (480081) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.163895M (1163895) - RowsVectorPredInput: 1.643976M (1643976) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.433ms - TotalPagesNum: 1.157K (1157) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.802ms PipelineXTask (index=19):(Active: 1.723ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 987.722us - CloseTime: 51.426us - GetBlockTime: 153.817us - OpenTime: 508.291us - PrepareTime: 165.329us - SinkTime: 269.285us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.654ms - WaitBfTime: 382.835ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.326ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 264.315us - InputRows: 141.175K (141175) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.147us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 55.268us - BlocksProduced: 38 - CloseTime: 48.474us - ExecTime: 150.432ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 617.952us - ProcessConjunctTime: 263.521us - ProjectionTime: 1.957ms - RowsProduced: 141.175K (141175) - RowsRead: 141.175K (141175) - RuntimeFilterInfo: - filter id = -1 filtered: 1.037608M (1037608) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 36.892ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.614ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [75.871ms, ] - PerScannerRowsRead: [141.18K, ] - PerScannerWaitTime: [36.892ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 73.140ms - MemoryUsage: - FreeBlocks: 4.45 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.594ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.344us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.798ms - ScannerCtxSchedTime: 36.889ms - ScannerFilterTime: 289.31us - ScannerGetBlockTime: 75.455ms - ScannerInitTime: 157.676us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1037608] - BitmapIndexFilterTimer: 2.42us - BlockConditionsFilteredBloomFilterTime: 5.12us - BlockConditionsFilteredDictTime: 171.828us - BlockConditionsFilteredTime: 297.245us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 95.90us - BlockInitSeekCount: 35 - BlockInitSeekTime: 26.311us - BlockInitTime: 416.410us - BlockLoadTime: 75.175ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 226.369us - FirstReadTime: 6.44ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.546us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.144ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.502ms - OutputIndexResultColumnTimer: 35.140us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 518.804K (518804) - RowsShortCircuitPredInput: 659.979K (659979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 718.381K (718381) - RowsVectorPredInput: 1.37836M (1378360) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.856ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.270ms PipelineXTask (index=22):(Active: 1.775ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.13ms - CloseTime: 68.78us - GetBlockTime: 304.575us - OpenTime: 434.548us - PrepareTime: 248.153us - SinkTime: 193.965us - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.688ms - WaitBfTime: 363.798ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 724.269ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 189.9us - InputRows: 106.535K (106535) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.328us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 57.448us - BlocksProduced: 29 - CloseTime: 65.8us - ExecTime: 475.144ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 617.897us - ProcessConjunctTime: 207.697us - ProjectionTime: 2.99ms - RowsProduced: 106.535K (106535) - RowsRead: 106.535K (106535) - RuntimeFilterInfo: - filter id = -1 filtered: 1.136506M (1136506) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 248.44ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 472.0ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [170.862ms, ] - PerScannerRowsRead: [106.53K, ] - PerScannerWaitTime: [248.044ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 167.350ms - MemoryUsage: - FreeBlocks: 3.55 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.189ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.664us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.970ms - ScannerCtxSchedTime: 248.38ms - ScannerFilterTime: 371.416us - ScannerGetBlockTime: 170.314ms - ScannerInitTime: 140.189us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1136506] - BitmapIndexFilterTimer: 2.664us - BlockConditionsFilteredBloomFilterTime: 11.340us - BlockConditionsFilteredDictTime: 139.616us - BlockConditionsFilteredTime: 289.531us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 99.659us - BlockInitSeekCount: 33 - BlockInitSeekTime: 34.378us - BlockInitTime: 455.609us - BlockLoadTime: 170.79ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 284.549us - FirstReadTime: 11.198ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.115us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 135.730ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.906ms - OutputIndexResultColumnTimer: 48.42us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 568.253K (568253) - RowsShortCircuitPredInput: 674.788K (674788) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 854.191K (854191) - RowsVectorPredInput: 1.528979M (1528979) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.768ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 15.825ms PipelineXTask (index=25):(Active: 1.279ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 865.393us - CloseTime: 58.527us - GetBlockTime: 415.406us - OpenTime: 190.123us - PrepareTime: 156.378us - SinkTime: 170.442us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.205ms - WaitBfTime: 337.895ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 131.314ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 161.188us - InputRows: 138.361K (138361) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.87us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 21.930us - BlocksProduced: 38 - CloseTime: 55.550us - ExecTime: 291.128ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 282.244us - ProcessConjunctTime: 112.341us - ProjectionTime: 1.526ms - RowsProduced: 138.361K (138361) - RowsRead: 138.361K (138361) - RuntimeFilterInfo: - filter id = -1 filtered: 918.412K (918412) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 76.357ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 288.832ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [204.087ms, ] - PerScannerRowsRead: [138.36K, ] - PerScannerWaitTime: [76.357ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 97.53ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 764.887us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.762us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 34.523ms - ScannerCtxSchedTime: 76.354ms - ScannerFilterTime: 208.530us - ScannerGetBlockTime: 203.775ms - ScannerInitTime: 42.679us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 918412] - BitmapIndexFilterTimer: 2.303us - BlockConditionsFilteredBloomFilterTime: 6.82us - BlockConditionsFilteredDictTime: 63.619us - BlockConditionsFilteredTime: 153.708us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 63.673us - BlockInitSeekCount: 25 - BlockInitSeekTime: 201.130us - BlockInitTime: 429.33us - BlockLoadTime: 98.171ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 206.565us - FirstReadTime: 4.589ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.810us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 64.851ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 15.283ms - OutputIndexResultColumnTimer: 29.918us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 459.206K (459206) - RowsShortCircuitPredInput: 597.567K (597567) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 439.1K (439100) - RowsVectorPredInput: 1.036667M (1036667) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.669ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.580ms PipelineXTask (index=28):(Active: 1.312ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 755.582us - CloseTime: 47.311us - GetBlockTime: 147.270us - OpenTime: 340.227us - PrepareTime: 160.533us - SinkTime: 222.734us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.237ms - WaitBfTime: 415.783ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.959ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 217.975us - InputRows: 178.881K (178881) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.100us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 42.944us - BlocksProduced: 47 - CloseTime: 45.47us - ExecTime: 137.169ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 437.614us - ProcessConjunctTime: 159.158us - ProjectionTime: 1.880ms - RowsProduced: 178.881K (178881) - RowsRead: 178.881K (178881) - RuntimeFilterInfo: - filter id = -1 filtered: 990.538K (990538) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 25.348ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.627ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [96.329ms, ] - PerScannerRowsRead: [178.88K, ] - PerScannerWaitTime: [25.348ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 94.669ms - MemoryUsage: - FreeBlocks: 5.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 729.925us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.529us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.173ms - ScannerCtxSchedTime: 25.345ms - ScannerFilterTime: 221.792us - ScannerGetBlockTime: 96.3ms - ScannerInitTime: 114.728us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 990538] - BitmapIndexFilterTimer: 2.376us - BlockConditionsFilteredBloomFilterTime: 6.579us - BlockConditionsFilteredDictTime: 59.120us - BlockConditionsFilteredTime: 159.257us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 67.116us - BlockInitSeekCount: 26 - BlockInitSeekTime: 229.822us - BlockInitTime: 485.641us - BlockLoadTime: 95.760ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 202.594us - FirstReadTime: 18.204ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.21us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.224ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.748ms - OutputIndexResultColumnTimer: 32.122us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 495.269K (495269) - RowsShortCircuitPredInput: 674.15K (674150) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 488.861K (488861) - RowsVectorPredInput: 1.163011M (1163011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.268ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.46ms PipelineXTask (index=31):(Active: 1.172ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 529.722us - CloseTime: 69.858us - GetBlockTime: 67.465us - OpenTime: 391.447us - PrepareTime: 174.237us - SinkTime: 38.803us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.91ms - WaitBfTime: 451.978ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.338ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 38.626us - InputRows: 24.594K (24594) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.144us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 53.970us - BlocksProduced: 7 - CloseTime: 66.364us - ExecTime: 15.597ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 510.656us - ProcessConjunctTime: 196.605us - ProjectionTime: 427.926us - RowsProduced: 24.594K (24594) - RowsRead: 24.594K (24594) - RuntimeFilterInfo: - filter id = -1 filtered: 333.578K (333578) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 5.636ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 14.524ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.804ms, ] - PerScannerRowsRead: [24.59K, ] - PerScannerWaitTime: [5.636ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.561ms - MemoryUsage: - FreeBlocks: 1.44 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 618.241us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 220ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.233ms - ScannerCtxSchedTime: 5.634ms - ScannerFilterTime: 47.472us - ScannerGetBlockTime: 5.719ms - ScannerInitTime: 118.382us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 333578] - BitmapIndexFilterTimer: 474ns - BlockConditionsFilteredBloomFilterTime: 1.128us - BlockConditionsFilteredDictTime: 37.393us - BlockConditionsFilteredTime: 61.464us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.457us - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.950us - BlockInitTime: 104.31us - BlockLoadTime: 6.33ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 45.367us - FirstReadTime: 1.559ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.567us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.759ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 422.834us - OutputIndexResultColumnTimer: 6.12us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 166.789K (166789) - RowsShortCircuitPredInput: 191.383K (191383) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.628K (35628) - RowsVectorPredInput: 227.011K (227011) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 556.962us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 454.459us PipelineXTask (index=34):(Active: 1.264ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 595.681us - CloseTime: 47.100us - GetBlockTime: 115.871us - OpenTime: 412.693us - PrepareTime: 201.141us - SinkTime: 44.597us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.208ms - WaitBfTime: 356.12ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.598ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 46.550us - InputRows: 28.487K (28487) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.320us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 10, type = minmax), RuntimeFilter: (id = 11, type = in_or_bloomfilter), - PushDownPredicates: [{USER_DELETE_FLAG IN [0]}, {EXTERNAL_USER_DELETE_FLAG IN [0]}, {USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 15974139631, 17050711146, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727820675, 17727825360, 17727827352, 17727841069, 17727844378, 17727845583, 17727848497, 17727928350, 18002564254, 18002564854, 18128821002, 18128821015, 18128821062, 18128821072, 18128821075, 18128821080, 18129979224, 18129979350, 18129979351, 18129979356, 18129979387, 18129979389, 18194066816, 18594274411, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938023522, 18938056034, 18948188020, 18948188021, 18948188026, 18948188225, 18948188227, 18948711373, 18948782782, 19128300796, 19128324256, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146474068, 19146482283, 19146483362, 19147807413, 19924463907, 19924515439, 19924924859, 19925189747, 19925317549, 19925339867, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926534117, 19926554572, 19926808142, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, longsp, lvlx, penghw, qiuhl, xuyang, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 53.846us - BlocksProduced: 8 - CloseTime: 44.30us - ExecTime: 59.492ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 490.543us - ProcessConjunctTime: 215.156us - ProjectionTime: 512.992us - RowsProduced: 28.487K (28487) - RowsRead: 28.487K (28487) - RuntimeFilterInfo: - filter id = -1 filtered: 344.766K (344766) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 48.441ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 58.324ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 10, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 11, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 109 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(INT, EQ), column_id=8, opposite=false ComparisonPredicateBase(INT, EQ), column_id=7, opposite=false - PerScannerRunningTime: [5.620ms, ] - PerScannerRowsRead: [28.49K, ] - PerScannerWaitTime: [48.441ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.400ms - MemoryUsage: - FreeBlocks: 1.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.22ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 355ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.854ms - ScannerCtxSchedTime: 48.439ms - ScannerFilterTime: 43.209us - ScannerGetBlockTime: 5.548ms - ScannerInitTime: 106.591us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 344766] - BitmapIndexFilterTimer: 429ns - BlockConditionsFilteredBloomFilterTime: 7.217us - BlockConditionsFilteredDictTime: 19.254us - BlockConditionsFilteredTime: 53.68us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 21.214us - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.248us - BlockInitTime: 88.374us - BlockLoadTime: 6.270ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 53.219us - FirstReadTime: 1.50ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.370us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.303ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 559.415us - OutputIndexResultColumnTimer: 6.983us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 172.383K (172383) - RowsShortCircuitPredInput: 200.87K (200870) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 42.08K (42080) - RowsVectorPredInput: 242.95K (242950) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 625.402us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 463.863us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 222.758us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 145.685us - CloseTime: 11.946us - GetBlockTime: 8.58us - OpenTime: 2.862us - PrepareTime: 57.44us - SinkTime: 112.129us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.610us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.285ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.565us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.519us - BuildTableInsertTime: 25.762us - BuildTableTime: 30.399us - CloseTime: 0ns - ExecTime: 125.213us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 13.530us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.311us - RuntimeFilterComputeTime: 19.207us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=28): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.478us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 18.568us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 267.526ms PipelineXTask (index=5):(Active: 142.279us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.11us - CloseTime: 16.833us - GetBlockTime: 0ns - OpenTime: 2.450us - PrepareTime: 68.71us - SinkTime: 33.282us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 119.272us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.9ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.997us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.3us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 322.184ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.62us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.421us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.570us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 103.154us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.976us - CloseTime: 4.919us - GetBlockTime: 0ns - OpenTime: 2.538us - PrepareTime: 57.530us - SinkTime: 15.857us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.965us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.104ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.721us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.159us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 322.144ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.112us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.349us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 138.420us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.309us - CloseTime: 16.242us - GetBlockTime: 0ns - OpenTime: 1.888us - PrepareTime: 61.797us - SinkTime: 42.417us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.286us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.340ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 66.424us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.695us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 314.792ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.241us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.446us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.665us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 170.895us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.507us - CloseTime: 9.333us - GetBlockTime: 0ns - OpenTime: 2.543us - PrepareTime: 105.940us - SinkTime: 29.317us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 155.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.345ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 58.856us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.592us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 311.619ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.476us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.94us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.983us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 182.543us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.854us - CloseTime: 4.522us - GetBlockTime: 0ns - OpenTime: 1.840us - PrepareTime: 149.16us - SinkTime: 11.992us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 173.803us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.414ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 112.493us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 100.406us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 314.778ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.420us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.748us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.647us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 130.553us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 58.282us - CloseTime: 16.270us - GetBlockTime: 0ns - OpenTime: 2.807us - PrepareTime: 48.435us - SinkTime: 40.782us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.216us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.807ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.676us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.94us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 307.86ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.62us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.867us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.95us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 125.992us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.358us - CloseTime: 6.355us - GetBlockTime: 0ns - OpenTime: 3.115us - PrepareTime: 67.40us - SinkTime: 19.437us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.234ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.265us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.769us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 324.16ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.306us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.440us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 117.338us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.958us - CloseTime: 4.964us - GetBlockTime: 0ns - OpenTime: 2.795us - PrepareTime: 68.612us - SinkTime: 11.267us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.470us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.755ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.560us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.714us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 318.484ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.154us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.561us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.605us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 178.764us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.581us - CloseTime: 3.643us - GetBlockTime: 0ns - OpenTime: 2.636us - PrepareTime: 139.588us - SinkTime: 10.31us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.871us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.151ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 100.721us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 90.413us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 322.113ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.779us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.612us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 131.731us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 63.13us - CloseTime: 15.544us - GetBlockTime: 0ns - OpenTime: 2.345us - PrepareTime: 47.244us - SinkTime: 43.725us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.403us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.917ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.109us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.579us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 306.5ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.627us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.845us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.370us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 116.919us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.548us - CloseTime: 4.980us - GetBlockTime: 0ns - OpenTime: 2.353us - PrepareTime: 75.902us - SinkTime: 12.935us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.105us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.568ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962fb5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.108us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.340us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 310.393ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.692us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.824us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.373us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 141: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 523.582us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 204.587us - CloseTime: 35.380us - GetBlockTime: 35.179us - OpenTime: 137.5us - PrepareTime: 138.30us - SinkTime: 14.291us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 479.576us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.434ms DATA_STREAM_SINK_OPERATOR (id=28,dst_id=28): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.542us - CompressTime: 0ns - ExecTime: 53.140us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 8.786us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 28.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 109 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=27. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{USER_NAME is [not null]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 689ns - BlocksProduced: 1 - CloseTime: 22.640us - ExecTime: 215.802ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 207.566us - ProcessConjunctTime: 47.829us - ProjectionTime: 3.265us - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 215.339ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 215.534ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, USER_NAME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=2, opposite=false - PerScannerRunningTime: [15.266us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [215.339ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.511us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 141.552us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 164ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 195.344us - ScannerCtxSchedTime: 215.337ms - ScannerFilterTime: 926ns - ScannerGetBlockTime: 11.702us - ScannerInitTime: 65.815us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 315ns - BlockConditionsFilteredBloomFilterTime: 1.194us - BlockConditionsFilteredDictTime: 5.167us - BlockConditionsFilteredTime: 17.282us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.760us - BlockInitSeekCount: 6 - BlockInitSeekTime: 12.413us - BlockInitTime: 44.724us - BlockLoadTime: 64.232us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 2.947us - FirstReadTime: 4.486us - IOTimer: 0ns - InvertedIndexFilterTime: 2.434us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.745us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 5.506us - OutputIndexResultColumnTimer: 57ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 109 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 662ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 154ns Fragment 142: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 72.524ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 72.124ms - CloseTime: 48.739us - GetBlockTime: 807.120us - OpenTime: 141.908us - PrepareTime: 199.386us - SinkTime: 70.887ms - GetBlockCounter: 99 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.68ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.826ms DATA_STREAM_SINK_OPERATOR (id=26,dst_id=26): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.667us - CompressTime: 0ns - ExecTime: 70.947ms - InputRows: 209.907K (209907) - LocalBytesSent: 8.41 MB - LocalSendTime: 474.841us - LocalSentRows: 209.907K (209907) - MemoryUsage: - PeakMemoryUsage: 11.65 MB - MergeBlockTime: 0ns - OpenTime: 78.680us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 209.907K (209907) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.56ms - SplitBlockHashComputeTime: 5.749ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=25. table name = DIM_OPENID_B): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 610ns - BlocksProduced: 99 - CloseTime: 35.881us - ExecTime: 501.715ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 212.299us - ProcessConjunctTime: 40.405us - ProjectionTime: 114.450ms - RowsProduced: 209.907K (209907) - RowsRead: 209.907K (209907) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 137.652ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 386.208ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [UNIONID, SUBSCRIBE_TIME, SUBSCRIBE] - PerScannerRunningTime: [46.032ms, ] - PerScannerRowsRead: [209.91K, ] - PerScannerWaitTime: [137.652ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 45.575ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 87.169ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.119us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.24ms - ScannerCtxSchedTime: 137.648ms - ScannerFilterTime: 78.667us - ScannerGetBlockTime: 45.900ms - ScannerInitTime: 75.683us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 695ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.849us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 22.274us - BlockLoadTime: 132.586ms - BlocksLoad: 101 - CachedPagesNum: 262 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 15.442ms - FirstReadSeekCount: 100 - FirstReadSeekTime: 68.314us - FirstReadTime: 2.847ms - IOTimer: 0ns - InvertedIndexFilterTime: 800ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 113.324ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 105.473us - OutputIndexResultColumnTimer: 10.771us - RawRowsRead: 405.258K (405258) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 262 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 143: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 194.433ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 193.491ms - CloseTime: 378.158us - GetBlockTime: 192.25ms - OpenTime: 9.636us - PrepareTime: 544.491us - SinkTime: 1.289ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 194.9ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.221ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.522us - CompressTime: 0ns - ExecTime: 1.368ms - InputRows: 72 - LocalBytesSent: 3.44 MB - LocalSendTime: 77.921us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 4.79 MB - MergeBlockTime: 0ns - OpenTime: 54.355us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 72 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.86ms - SplitBlockHashComputeTime: 23.954us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 76.636ms - CloseTime: 298.121us - DeserializeAndMergeTime: 0ns - ExecTime: 80.754ms - ExprTime: 320.287us - GetResultsTime: 3.533ms - HashTableComputeTime: 4.963ms - HashTableEmplaceTime: 2.637ms - HashTableInputCount: 106.733K (106733) - HashTableIterateTime: 1.770us - HashTableSize: 72 - InsertKeysToColumnTime: 9.93us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 111.200us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.493ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.537ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 38.120us - ExecTime: 107.315ms - InitProbeSideTime: 2.182ms - JoinFilterTimer: 6.590us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 25.896us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.39us - ProbeFindNextTime: 0ns - ProbeRows: 33.788K (33788) - ProbeTime: 32.289ms - ProbeWhenBuildSideOutputTime: 7.82ms - ProbeWhenProbeSideOutputTime: 986.238us - ProbeWhenProcessHashTableTime: 12.757ms - ProbeWhenSearchHashTableTime: 7.744ms - ProjectionTime: 74.849ms - RowsProduced: 106.733K (106733) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s395ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 8.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 173.625us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.91 MB - MemoryUsage: - Blocks: 2.91 MB - PeakMemoryUsage: 2.91 MB - OpenTime: 20.317us - ProjectionTime: 0ns - RowsProduced: 33.788K (33788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s864ms PipelineXTask (index=2):(Active: 562.414ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 561.495ms - CloseTime: 332.912us - GetBlockTime: 556.163ms - OpenTime: 12.250us - PrepareTime: 565.358us - SinkTime: 4.605ms - GetBlockCounter: 200 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 9 - NumYieldTimes: 5 - PendingFinishTimes: 0 - TaskCpuTime: 561.907ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.850ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.938us - CompressTime: 0ns - ExecTime: 4.666ms - InputRows: 74 - LocalBytesSent: 16.60 MB - LocalSendTime: 137.619us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 29.16 MB - MergeBlockTime: 0ns - OpenTime: 47.264us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.375ms - SplitBlockHashComputeTime: 16.139us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 238.101ms - CloseTime: 280.891us - DeserializeAndMergeTime: 0ns - ExecTime: 256.13ms - ExprTime: 849.464us - GetResultsTime: 16.968ms - HashTableComputeTime: 24.20ms - HashTableEmplaceTime: 13.368ms - HashTableInputCount: 785.077K (785077) - HashTableIterateTime: 1.121us - HashTableSize: 74 - InsertKeysToColumnTime: 8.471us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 150.556us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 16.935ms - SerializeKeyTime: 0ns - SerializeResultTime: 16.972ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 200 - BuildOutputBlock: 0ns - CloseTime: 21.625us - ExecTime: 285.824ms - InitProbeSideTime: 1.519ms - JoinFilterTimer: 35.24us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 41.757us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.680us - ProbeFindNextTime: 0ns - ProbeRows: 33.798K (33798) - ProbeTime: 54.769ms - ProbeWhenBuildSideOutputTime: 3.980ms - ProbeWhenProbeSideOutputTime: 554.289us - ProbeWhenProcessHashTableTime: 42.251ms - ProbeWhenSearchHashTableTime: 2.469ms - ProjectionTime: 230.748ms - RowsProduced: 785.077K (785077) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s385ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 7.475us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 165.883us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.93 MB - MemoryUsage: - Blocks: 2.93 MB - PeakMemoryUsage: 2.93 MB - OpenTime: 27.668us - ProjectionTime: 0ns - RowsProduced: 33.798K (33798) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s881ms PipelineXTask (index=4):(Active: 130.922ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 130.82ms - CloseTime: 292.896us - GetBlockTime: 128.564ms - OpenTime: 7.329us - PrepareTime: 531.44us - SinkTime: 1.358ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 130.559ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.784ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.855us - CompressTime: 0ns - ExecTime: 1.412ms - InputRows: 74 - LocalBytesSent: 3.44 MB - LocalSendTime: 120.261us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 42.37us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.114ms - SplitBlockHashComputeTime: 26.179us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 54.217ms - CloseTime: 242.19us - DeserializeAndMergeTime: 0ns - ExecTime: 58.159ms - ExprTime: 231.943us - GetResultsTime: 3.496ms - HashTableComputeTime: 3.579ms - HashTableEmplaceTime: 1.914ms - HashTableInputCount: 107.594K (107594) - HashTableIterateTime: 1.67us - HashTableSize: 74 - InsertKeysToColumnTime: 10.582us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 85.732us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 3.467ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.500ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 20.99us - ExecTime: 67.826ms - InitProbeSideTime: 1.355ms - JoinFilterTimer: 5.550us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 18.998us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.573us - ProbeFindNextTime: 0ns - ProbeRows: 33.75K (33750) - ProbeTime: 20.411ms - ProbeWhenBuildSideOutputTime: 4.510ms - ProbeWhenProbeSideOutputTime: 665.346us - ProbeWhenProcessHashTableTime: 8.776ms - ProbeWhenSearchHashTableTime: 4.61ms - ProjectionTime: 47.291ms - RowsProduced: 107.594K (107594) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s362ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 10.557us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 175.289us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.97 MB - MemoryUsage: - Blocks: 2.97 MB - PeakMemoryUsage: 2.97 MB - OpenTime: 42.999us - ProjectionTime: 0ns - RowsProduced: 33.75K (33750) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s879ms PipelineXTask (index=6):(Active: 234.711ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 233.781ms - CloseTime: 398.455us - GetBlockTime: 232.46ms - OpenTime: 8.58us - PrepareTime: 517.145us - SinkTime: 1.512ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 228.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.651ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.295us - CompressTime: 0ns - ExecTime: 1.569ms - InputRows: 72 - LocalBytesSent: 3.43 MB - LocalSendTime: 77.964us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 4.78 MB - MergeBlockTime: 0ns - OpenTime: 39.753us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 72 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.297ms - SplitBlockHashComputeTime: 15.198us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 96.41ms - CloseTime: 336.864us - DeserializeAndMergeTime: 0ns - ExecTime: 101.799ms - ExprTime: 422.782us - GetResultsTime: 5.84ms - HashTableComputeTime: 6.792ms - HashTableEmplaceTime: 3.598ms - HashTableInputCount: 106.656K (106656) - HashTableIterateTime: 1.638us - HashTableSize: 72 - InsertKeysToColumnTime: 13.233us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 112.883us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 5.49ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.89ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 25.380us - ExecTime: 124.830ms - InitProbeSideTime: 1.941ms - JoinFilterTimer: 8.927us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 30.479us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.59us - ProbeFindNextTime: 0ns - ProbeRows: 33.825K (33825) - ProbeTime: 31.3ms - ProbeWhenBuildSideOutputTime: 5.524ms - ProbeWhenProbeSideOutputTime: 781.125us - ProbeWhenProcessHashTableTime: 15.531ms - ProbeWhenSearchHashTableTime: 5.482ms - ProjectionTime: 93.641ms - RowsProduced: 106.656K (106656) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s372ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 10.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 206.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 32.805us - ProjectionTime: 0ns - RowsProduced: 33.825K (33825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s881ms PipelineXTask (index=8):(Active: 204.492ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 203.664ms - CloseTime: 319.141us - GetBlockTime: 202.214ms - OpenTime: 8.58us - PrepareTime: 493.868us - SinkTime: 1.270ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 204.102ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.488ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.319us - CompressTime: 0ns - ExecTime: 1.336ms - InputRows: 73 - LocalBytesSent: 3.42 MB - LocalSendTime: 98.405us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 4.78 MB - MergeBlockTime: 0ns - OpenTime: 41.673us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 73 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.63ms - SplitBlockHashComputeTime: 21.791us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 80.605ms - CloseTime: 247.774us - DeserializeAndMergeTime: 0ns - ExecTime: 84.730ms - ExprTime: 364.278us - GetResultsTime: 3.611ms - HashTableComputeTime: 5.103ms - HashTableEmplaceTime: 2.716ms - HashTableInputCount: 106.608K (106608) - HashTableIterateTime: 2.398us - HashTableSize: 73 - InsertKeysToColumnTime: 10.659us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 104.370us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 3.583ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.615ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 29.810us - ExecTime: 112.921ms - InitProbeSideTime: 2.760ms - JoinFilterTimer: 6.493us - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 18.742us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.167us - ProbeFindNextTime: 0ns - ProbeRows: 33.716K (33716) - ProbeTime: 35.859ms - ProbeWhenBuildSideOutputTime: 7.888ms - ProbeWhenProbeSideOutputTime: 1.295ms - ProbeWhenProcessHashTableTime: 13.769ms - ProbeWhenSearchHashTableTime: 8.501ms - ProjectionTime: 76.878ms - RowsProduced: 106.608K (106608) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s378ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 10.586us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 207.950us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.89 MB - MemoryUsage: - Blocks: 2.89 MB - PeakMemoryUsage: 2.89 MB - OpenTime: 15.910us - ProjectionTime: 0ns - RowsProduced: 33.716K (33716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s881ms PipelineXTask (index=10):(Active: 164.140ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 163.295ms - CloseTime: 337.148us - GetBlockTime: 161.861ms - OpenTime: 7.583us - PrepareTime: 491.869us - SinkTime: 1.267ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 163.713ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.640ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.309us - CompressTime: 0ns - ExecTime: 1.326ms - InputRows: 73 - LocalBytesSent: 3.44 MB - LocalSendTime: 110.777us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 4.83 MB - MergeBlockTime: 0ns - OpenTime: 47.516us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 73 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.50ms - SplitBlockHashComputeTime: 29.125us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 67.747ms - CloseTime: 288.239us - DeserializeAndMergeTime: 0ns - ExecTime: 71.617ms - ExprTime: 287.740us - GetResultsTime: 3.308ms - HashTableComputeTime: 4.505ms - HashTableEmplaceTime: 2.452ms - HashTableInputCount: 107.273K (107273) - HashTableIterateTime: 2.990us - HashTableSize: 73 - InsertKeysToColumnTime: 11.154us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 111.10us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 3.278ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.312ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 18.829us - ExecTime: 86.801ms - InitProbeSideTime: 1.875ms - JoinFilterTimer: 6.461us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 25.239us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.719us - ProbeFindNextTime: 0ns - ProbeRows: 33.664K (33664) - ProbeTime: 26.596ms - ProbeWhenBuildSideOutputTime: 4.966ms - ProbeWhenProbeSideOutputTime: 817.607us - ProbeWhenProcessHashTableTime: 12.622ms - ProbeWhenSearchHashTableTime: 4.966ms - ProjectionTime: 60.54ms - RowsProduced: 107.273K (107273) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s391ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 11.264us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.290us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 17.340us - ProjectionTime: 0ns - RowsProduced: 33.664K (33664) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s862ms PipelineXTask (index=12):(Active: 181.411ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 180.605ms - CloseTime: 325.300us - GetBlockTime: 179.89ms - OpenTime: 6.475us - PrepareTime: 466.74us - SinkTime: 1.323ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 180.571ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.410ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.400us - CompressTime: 0ns - ExecTime: 1.399ms - InputRows: 73 - LocalBytesSent: 3.44 MB - LocalSendTime: 87.873us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 4.75 MB - MergeBlockTime: 0ns - OpenTime: 61.536us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 73 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.122ms - SplitBlockHashComputeTime: 23.847us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 73.55ms - CloseTime: 274.261us - DeserializeAndMergeTime: 0ns - ExecTime: 77.287ms - ExprTime: 355.99us - GetResultsTime: 3.687ms - HashTableComputeTime: 4.984ms - HashTableEmplaceTime: 2.645ms - HashTableInputCount: 107.609K (107609) - HashTableIterateTime: 1.383us - HashTableSize: 73 - InsertKeysToColumnTime: 10.345us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 92.531us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 3.654ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.694ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 18.802us - ExecTime: 97.772ms - InitProbeSideTime: 1.954ms - JoinFilterTimer: 7.352us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 18.523us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.910us - ProbeFindNextTime: 0ns - ProbeRows: 33.899K (33899) - ProbeTime: 27.577ms - ProbeWhenBuildSideOutputTime: 5.807ms - ProbeWhenProbeSideOutputTime: 822.129us - ProbeWhenProcessHashTableTime: 11.642ms - ProbeWhenSearchHashTableTime: 5.742ms - ProjectionTime: 70.25ms - RowsProduced: 107.609K (107609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s391ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 10.927us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 244.203us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.93 MB - MemoryUsage: - Blocks: 2.93 MB - PeakMemoryUsage: 2.93 MB - OpenTime: 18.292us - ProjectionTime: 0ns - RowsProduced: 33.899K (33899) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s862ms PipelineXTask (index=14):(Active: 136.703ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 135.780ms - CloseTime: 375.794us - GetBlockTime: 134.233ms - OpenTime: 7.293us - PrepareTime: 531.365us - SinkTime: 1.418ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 136.301ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.260ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.747us - CompressTime: 0ns - ExecTime: 1.512ms - InputRows: 72 - LocalBytesSent: 3.45 MB - LocalSendTime: 110.500us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 4.81 MB - MergeBlockTime: 0ns - OpenTime: 77.903us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 72 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.183ms - SplitBlockHashComputeTime: 26.844us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 57.93ms - CloseTime: 315.727us - DeserializeAndMergeTime: 0ns - ExecTime: 61.401ms - ExprTime: 239.330us - GetResultsTime: 3.773ms - HashTableComputeTime: 3.497ms - HashTableEmplaceTime: 1.864ms - HashTableInputCount: 107.284K (107284) - HashTableIterateTime: 2.200us - HashTableSize: 72 - InsertKeysToColumnTime: 9.963us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 88.133us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.741ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.777ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 26.979us - ExecTime: 70.303ms - InitProbeSideTime: 1.502ms - JoinFilterTimer: 5.782us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 19.42us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.664us - ProbeFindNextTime: 0ns - ProbeRows: 33.587K (33587) - ProbeTime: 22.111ms - ProbeWhenBuildSideOutputTime: 4.482ms - ProbeWhenProbeSideOutputTime: 658.295us - ProbeWhenProcessHashTableTime: 10.609ms - ProbeWhenSearchHashTableTime: 3.877ms - ProjectionTime: 48.72ms - RowsProduced: 107.284K (107284) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s385ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.935us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 134.537us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.91 MB - MemoryUsage: - Blocks: 2.91 MB - PeakMemoryUsage: 2.91 MB - OpenTime: 31.117us - ProjectionTime: 0ns - RowsProduced: 33.587K (33587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s862ms PipelineXTask (index=16):(Active: 236.133ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 233.269ms - CloseTime: 2.335ms - GetBlockTime: 228.997ms - OpenTime: 6.648us - PrepareTime: 514.682us - SinkTime: 1.78ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 230.693ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.184ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.154us - CompressTime: 0ns - ExecTime: 1.136ms - InputRows: 72 - LocalBytesSent: 3.41 MB - LocalSendTime: 132.637us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 39.614us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 72 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 866.333us - SplitBlockHashComputeTime: 14.972us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 90.854ms - CloseTime: 216.895us - DeserializeAndMergeTime: 0ns - ExecTime: 94.727ms - ExprTime: 448.940us - GetResultsTime: 3.292ms - HashTableComputeTime: 6.308ms - HashTableEmplaceTime: 3.503ms - HashTableInputCount: 106.628K (106628) - HashTableIterateTime: 1.1us - HashTableSize: 72 - InsertKeysToColumnTime: 10.600us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 164.29us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.266ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.296ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 2.79ms - ExecTime: 130.770ms - InitProbeSideTime: 2.286ms - JoinFilterTimer: 7.502us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 19.753us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.547us - ProbeFindNextTime: 0ns - ProbeRows: 33.999K (33999) - ProbeTime: 34.299ms - ProbeWhenBuildSideOutputTime: 6.914ms - ProbeWhenProbeSideOutputTime: 1.255ms - ProbeWhenProcessHashTableTime: 14.437ms - ProbeWhenSearchHashTableTime: 7.711ms - ProjectionTime: 94.244ms - RowsProduced: 106.628K (106628) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s395ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.323us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 156.163us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 21.602us - ProjectionTime: 0ns - RowsProduced: 33.999K (33999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s863ms PipelineXTask (index=18):(Active: 168.880ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 168.73ms - CloseTime: 329.833us - GetBlockTime: 166.592ms - OpenTime: 10.380us - PrepareTime: 460.299us - SinkTime: 1.319ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 168.487ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.823ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.588us - CompressTime: 0ns - ExecTime: 1.374ms - InputRows: 75 - LocalBytesSent: 3.48 MB - LocalSendTime: 96.315us - LocalSentRows: 75 - MemoryUsage: - PeakMemoryUsage: 4.79 MB - MergeBlockTime: 0ns - OpenTime: 39.270us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 75 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.92ms - SplitBlockHashComputeTime: 11.748us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 70.258ms - CloseTime: 276.514us - DeserializeAndMergeTime: 0ns - ExecTime: 74.450ms - ExprTime: 331.498us - GetResultsTime: 3.655ms - HashTableComputeTime: 4.616ms - HashTableEmplaceTime: 2.519ms - HashTableInputCount: 107.56K (107560) - HashTableIterateTime: 1.969us - HashTableSize: 75 - InsertKeysToColumnTime: 9.895us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 79.280us - ProjectionTime: 0ns - RowsProduced: 75 - SerializeDataTime: 3.626ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.659ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 21.656us - ExecTime: 88.702ms - InitProbeSideTime: 1.974ms - JoinFilterTimer: 6.627us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 40.694us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.326us - ProbeFindNextTime: 0ns - ProbeRows: 33.71K (33710) - ProbeTime: 26.472ms - ProbeWhenBuildSideOutputTime: 5.50ms - ProbeWhenProbeSideOutputTime: 788.794us - ProbeWhenProcessHashTableTime: 12.271ms - ProbeWhenSearchHashTableTime: 5.174ms - ProjectionTime: 62.44ms - RowsProduced: 107.56K (107560) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s313ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.153us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 152.851us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 13.847us - ProjectionTime: 0ns - RowsProduced: 33.71K (33710) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s867ms PipelineXTask (index=20):(Active: 192.957ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 192.119ms - CloseTime: 328.826us - GetBlockTime: 190.541ms - OpenTime: 6.337us - PrepareTime: 497.324us - SinkTime: 1.402ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 192.583ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.590ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.464us - CompressTime: 0ns - ExecTime: 1.461ms - InputRows: 72 - LocalBytesSent: 3.44 MB - LocalSendTime: 124.396us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 42.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 72 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.173ms - SplitBlockHashComputeTime: 24.258us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 80.454ms - CloseTime: 276.500us - DeserializeAndMergeTime: 0ns - ExecTime: 84.616ms - ExprTime: 355.567us - GetResultsTime: 3.602ms - HashTableComputeTime: 5.260ms - HashTableEmplaceTime: 2.722ms - HashTableInputCount: 106.878K (106878) - HashTableIterateTime: 1.972us - HashTableSize: 72 - InsertKeysToColumnTime: 10.761us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 81.941us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.558ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.608ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 18.834us - ExecTime: 101.751ms - InitProbeSideTime: 2.191ms - JoinFilterTimer: 7.177us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 44.642us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.862us - ProbeFindNextTime: 0ns - ProbeRows: 33.924K (33924) - ProbeTime: 29.500ms - ProbeWhenBuildSideOutputTime: 5.480ms - ProbeWhenProbeSideOutputTime: 852.624us - ProbeWhenProcessHashTableTime: 13.865ms - ProbeWhenSearchHashTableTime: 5.552ms - ProjectionTime: 72.55ms - RowsProduced: 106.878K (106878) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s365ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 8.832us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 187.407us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.03 MB - MemoryUsage: - Blocks: 3.03 MB - PeakMemoryUsage: 3.03 MB - OpenTime: 19.475us - ProjectionTime: 0ns - RowsProduced: 33.924K (33924) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s868ms PipelineXTask (index=22):(Active: 195.849ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 195.0ms - CloseTime: 356.554us - GetBlockTime: 193.405ms - OpenTime: 4.906us - PrepareTime: 482.562us - SinkTime: 1.422ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 195.382ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.457ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.131us - CompressTime: 0ns - ExecTime: 1.475ms - InputRows: 74 - LocalBytesSent: 3.42 MB - LocalSendTime: 113.285us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 4.70 MB - MergeBlockTime: 0ns - OpenTime: 39.639us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 74 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 1.203ms - SplitBlockHashComputeTime: 24.507us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 76.172ms - CloseTime: 301.855us - DeserializeAndMergeTime: 0ns - ExecTime: 80.169ms - ExprTime: 368.833us - GetResultsTime: 3.446ms - HashTableComputeTime: 5.4ms - HashTableEmplaceTime: 2.682ms - HashTableInputCount: 107.194K (107194) - HashTableIterateTime: 1.152us - HashTableSize: 74 - InsertKeysToColumnTime: 13.405us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 71.117us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 3.407ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.449ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 26.764us - ExecTime: 108.886ms - InitProbeSideTime: 2.782ms - JoinFilterTimer: 6.955us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 19.440us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.897us - ProbeFindNextTime: 0ns - ProbeRows: 33.598K (33598) - ProbeTime: 34.27ms - ProbeWhenBuildSideOutputTime: 7.920ms - ProbeWhenProbeSideOutputTime: 1.252ms - ProbeWhenProcessHashTableTime: 12.144ms - ProbeWhenSearchHashTableTime: 8.427ms - ProjectionTime: 74.672ms - RowsProduced: 107.194K (107194) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s371ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 8.230us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 205.411us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 30.149us - ProjectionTime: 0ns - RowsProduced: 33.598K (33598) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s868ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 32.174ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 32.75ms - CloseTime: 15.918us - GetBlockTime: 1.515ms - OpenTime: 5.830us - PrepareTime: 68.695us - SinkTime: 30.260ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.53ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.724ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.632us - BuildRows: 106.717K (106717) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.333ms - BuildTableInsertTime: 10.349ms - BuildTableTime: 10.357ms - CloseTime: 0ns - ExecTime: 30.270ms - InputRows: 106.716K (106716) - MemoryUsage: - BuildBlocks: 14.39 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.76 MB - OpenTime: 27.627us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.275us - RuntimeFilterComputeTime: 8.356ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 12.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.508ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.70 MB - MemoryUsage: - Blocks: 3.23 MB - PeakMemoryUsage: 3.23 MB - OpenTime: 20.968us - ProjectionTime: 0ns - RowsProduced: 106.716K (106716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s193ms PipelineXTask (index=3):(Active: 107.272ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 107.165ms - CloseTime: 13.13us - GetBlockTime: 4.552ms - OpenTime: 7.883us - PrepareTime: 73.712us - SinkTime: 101.765ms - GetBlockCounter: 203 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 92 - NumBlockedTimes: 94 - NumScheduleTimes: 94 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.97ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.510ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 61.503us - BuildRows: 785.078K (785078) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 71.646ms - BuildTableInsertTime: 25.992ms - BuildTableTime: 25.997ms - CloseTime: 0ns - ExecTime: 101.717ms - InputRows: 785.077K (785077) - MemoryUsage: - BuildBlocks: 87.50 MB - BuildKeyArena: 8.00 MB - HashTable: 7.74 MB - PeakMemoryUsage: 103.24 MB - OpenTime: 20.496us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.292us - RuntimeFilterComputeTime: 3.641ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 202 - BytesReceived: 0.00 - CloseTime: 9.646us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.496ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.88 MB - MemoryUsage: - Blocks: 8.76 MB - PeakMemoryUsage: 8.76 MB - OpenTime: 25.113us - ProjectionTime: 0ns - RowsProduced: 785.077K (785077) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s141ms PipelineXTask (index=5):(Active: 20.740ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 20.619ms - CloseTime: 15.947us - GetBlockTime: 1.338ms - OpenTime: 19.420us - PrepareTime: 77.351us - SinkTime: 19.77ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.677ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.19us - BuildRows: 107.587K (107587) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.704ms - BuildTableInsertTime: 4.512ms - BuildTableTime: 4.517ms - CloseTime: 0ns - ExecTime: 19.93ms - InputRows: 107.586K (107586) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 14.943us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 19.899us - RuntimeFilterComputeTime: 2.643ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 11.391us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.346ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.10 MB - MemoryUsage: - Blocks: 3.59 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 24.163us - ProjectionTime: 0ns - RowsProduced: 107.586K (107586) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s201ms PipelineXTask (index=7):(Active: 31.413ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 31.333ms - CloseTime: 14.30us - GetBlockTime: 1.488ms - OpenTime: 3.625us - PrepareTime: 55.264us - SinkTime: 29.603ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.352ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.657ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.101us - BuildRows: 106.655K (106655) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.769ms - BuildTableInsertTime: 9.797ms - BuildTableTime: 9.804ms - CloseTime: 0ns - ExecTime: 29.604ms - InputRows: 106.654K (106654) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 17.369us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.224us - RuntimeFilterComputeTime: 7.817ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 10.6us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.479ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.15 MB - MemoryUsage: - Blocks: 2.60 MB - PeakMemoryUsage: 2.60 MB - OpenTime: 18.573us - ProjectionTime: 0ns - RowsProduced: 106.654K (106654) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s201ms PipelineXTask (index=9):(Active: 40.690ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 40.601ms - CloseTime: 11.388us - GetBlockTime: 1.738ms - OpenTime: 2.598us - PrepareTime: 67.226us - SinkTime: 38.593ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.636ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 36.90us - BuildRows: 106.607K (106607) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.609ms - BuildTableInsertTime: 12.639ms - BuildTableTime: 12.647ms - CloseTime: 0ns - ExecTime: 38.595ms - InputRows: 106.606K (106606) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.74 MB - OpenTime: 23.666us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.620us - RuntimeFilterComputeTime: 10.23ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 8.270us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.712ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.91 MB - MemoryUsage: - Blocks: 4.45 MB - PeakMemoryUsage: 4.45 MB - OpenTime: 12.877us - ProjectionTime: 0ns - RowsProduced: 106.606K (106606) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s214ms PipelineXTask (index=11):(Active: 26.795ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 26.678ms - CloseTime: 15.362us - GetBlockTime: 1.434ms - OpenTime: 2.278us - PrepareTime: 90.392us - SinkTime: 25.20ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.512ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.700us - BuildRows: 107.269K (107269) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.63ms - BuildTableInsertTime: 7.252ms - BuildTableTime: 7.260ms - CloseTime: 0ns - ExecTime: 25.23ms - InputRows: 107.268K (107268) - MemoryUsage: - BuildBlocks: 14.47 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.86 MB - OpenTime: 18.71us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.307us - RuntimeFilterComputeTime: 5.489ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 11.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.462ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.32 MB - MemoryUsage: - Blocks: 2.56 MB - PeakMemoryUsage: 2.56 MB - OpenTime: 48.54us - ProjectionTime: 0ns - RowsProduced: 107.268K (107268) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s197ms PipelineXTask (index=13):(Active: 33.36ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 32.933ms - CloseTime: 20.180us - GetBlockTime: 1.389ms - OpenTime: 2.480us - PrepareTime: 71.603us - SinkTime: 31.288ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.968ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.271ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.711us - BuildRows: 107.608K (107608) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.954ms - BuildTableInsertTime: 7.810ms - BuildTableTime: 7.824ms - CloseTime: 0ns - ExecTime: 31.305ms - InputRows: 107.607K (107607) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 34.805us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.929us - RuntimeFilterComputeTime: 6.187ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 13.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.384ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.55 MB - MemoryUsage: - Blocks: 6.80 MB - PeakMemoryUsage: 6.80 MB - OpenTime: 15.840us - ProjectionTime: 0ns - RowsProduced: 107.607K (107607) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s189ms PipelineXTask (index=15):(Active: 22.668ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 22.591ms - CloseTime: 9.325us - GetBlockTime: 1.448ms - OpenTime: 2.165us - PrepareTime: 56.864us - SinkTime: 20.889ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.608ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.251ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.463us - BuildRows: 107.278K (107278) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.607ms - BuildTableInsertTime: 4.897ms - BuildTableTime: 4.901ms - CloseTime: 0ns - ExecTime: 20.893ms - InputRows: 107.277K (107277) - MemoryUsage: - BuildBlocks: 14.47 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.86 MB - OpenTime: 21.922us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.726us - RuntimeFilterComputeTime: 3.188ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 6.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.431ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.55 MB - MemoryUsage: - Blocks: 3.21 MB - PeakMemoryUsage: 3.21 MB - OpenTime: 8.684us - ProjectionTime: 0ns - RowsProduced: 107.277K (107277) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s194ms PipelineXTask (index=17):(Active: 31.163ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 31.19ms - CloseTime: 11.452us - GetBlockTime: 1.415ms - OpenTime: 2.280us - PrepareTime: 122.992us - SinkTime: 29.354ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.108ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.711ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.438us - BuildRows: 106.627K (106627) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.507ms - BuildTableInsertTime: 9.336ms - BuildTableTime: 9.344ms - CloseTime: 0ns - ExecTime: 29.392ms - InputRows: 106.626K (106626) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 51.860us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.515us - RuntimeFilterComputeTime: 8.335ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 7.626us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.415ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.14 MB - MemoryUsage: - Blocks: 3.34 MB - PeakMemoryUsage: 3.34 MB - OpenTime: 21.155us - ProjectionTime: 0ns - RowsProduced: 106.626K (106626) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s195ms PipelineXTask (index=19):(Active: 30.542ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 30.459ms - CloseTime: 17.944us - GetBlockTime: 1.425ms - OpenTime: 2.184us - PrepareTime: 56.440us - SinkTime: 28.810ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.482ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.824ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.39us - BuildRows: 107.561K (107561) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.775ms - BuildTableInsertTime: 9.835ms - BuildTableTime: 9.842ms - CloseTime: 0ns - ExecTime: 28.801ms - InputRows: 107.56K (107560) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 19.829us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.619us - RuntimeFilterComputeTime: 5.953ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 9.966us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.422ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.57 MB - MemoryUsage: - Blocks: 3.10 MB - PeakMemoryUsage: 3.10 MB - OpenTime: 12.837us - ProjectionTime: 0ns - RowsProduced: 107.56K (107560) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s202ms PipelineXTask (index=21):(Active: 30.157ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 30.50ms - CloseTime: 20.15us - GetBlockTime: 1.320ms - OpenTime: 2.870us - PrepareTime: 58.629us - SinkTime: 28.492ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.96ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.76ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.102us - BuildRows: 106.873K (106873) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.169ms - BuildTableInsertTime: 9.232ms - BuildTableTime: 9.254ms - CloseTime: 0ns - ExecTime: 28.490ms - InputRows: 106.872K (106872) - MemoryUsage: - BuildBlocks: 14.41 MB - BuildKeyArena: 3.37 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.79 MB - OpenTime: 15.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.707us - RuntimeFilterComputeTime: 6.865ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 13.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.319ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.69 MB - MemoryUsage: - Blocks: 4.81 MB - PeakMemoryUsage: 4.81 MB - OpenTime: 15.652us - ProjectionTime: 0ns - RowsProduced: 106.872K (106872) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s208ms PipelineXTask (index=23):(Active: 37.719ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 37.636ms - CloseTime: 15.99us - GetBlockTime: 1.665ms - OpenTime: 4.12us - PrepareTime: 57.462us - SinkTime: 35.753ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.635ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.542ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 22.8us - BuildRows: 107.192K (107192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.341ms - BuildTableInsertTime: 11.845ms - BuildTableTime: 11.854ms - CloseTime: 0ns - ExecTime: 35.759ms - InputRows: 107.191K (107191) - MemoryUsage: - BuildBlocks: 14.46 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 24.272us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 337.640us - RuntimeFilterComputeTime: 9.988ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 36 - BytesReceived: 0.00 - CloseTime: 10.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.658ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.69 MB - MemoryUsage: - Blocks: 4.23 MB - PeakMemoryUsage: 4.23 MB - OpenTime: 14.536us - ProjectionTime: 0ns - RowsProduced: 107.191K (107191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s210ms Fragment 144: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 125.314ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 124.869ms - CloseTime: 43.488us - GetBlockTime: 1.28ms - OpenTime: 100.994us - PrepareTime: 288.527us - SinkTime: 122.989ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.687ms - WaitBfTime: 1s431ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 834.206ms DATA_STREAM_SINK_OPERATOR (id=20,dst_id=20): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 103 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.40us - CompressTime: 0ns - ExecTime: 123.96ms - InputRows: 405.258K (405258) - LocalBytesSent: 27.83 MB - LocalSendTime: 1.162ms - LocalSentRows: 405.258K (405258) - MemoryUsage: - PeakMemoryUsage: 35.25 MB - MergeBlockTime: 0ns - OpenTime: 148.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 405.258K (405258) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.892ms - SplitBlockHashComputeTime: 14.755ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=19. table name = DIM_OPENID_B): - RuntimeFilters: : RuntimeFilter: (id = 8, type = minmax), RuntimeFilter: (id = 9, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [22339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.299us - BlocksProduced: 100 - CloseTime: 28.227us - ExecTime: 99.353ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 185.600us - ProcessConjunctTime: 16.932us - ProjectionTime: 0ns - RowsProduced: 405.258K (405258) - RowsRead: 405.258K (405258) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 75.995ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 98.198ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 8, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 9, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [OPENID, UNIONID, SUBSCRIBE] - PerScannerRunningTime: [24.104ms, ] - PerScannerRowsRead: [405.26K, ] - PerScannerWaitTime: [75.995ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.713ms - MemoryUsage: - FreeBlocks: 10.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.681ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.80us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.712ms - ScannerCtxSchedTime: 75.989ms - ScannerFilterTime: 76.892us - ScannerGetBlockTime: 23.972ms - ScannerInitTime: 51.273us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 217ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.654us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 603.673us - BlockInitTime: 649.869us - BlockLoadTime: 25.224ms - BlocksLoad: 101 - CachedPagesNum: 399 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 300 - FirstReadSeekTime: 625.463us - FirstReadTime: 24.70ms - IOTimer: 0ns - InvertedIndexFilterTime: 525ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 26.916us - OutputIndexResultColumnTimer: 14.798us - RawRowsRead: 405.258K (405258) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 399 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 145: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 143.355ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 143.165ms - CloseTime: 32.84us - GetBlockTime: 97.600ms - OpenTime: 9.378us - PrepareTime: 135.588us - SinkTime: 44.309ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 41 - NumBlockedTimes: 43 - NumScheduleTimes: 43 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 143.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.125ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.69us - CompressTime: 0ns - ExecTime: 44.295ms - InputRows: 107.403K (107403) - LocalBytesSent: 14.48 MB - LocalSendTime: 771.523us - LocalSentRows: 107.403K (107403) - MemoryUsage: - PeakMemoryUsage: 21.26 MB - MergeBlockTime: 0ns - OpenTime: 67.500us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 107.403K (107403) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 36.594ms - SplitBlockHashComputeTime: 3.567ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 13.762us - ExecTime: 95.162ms - InitProbeSideTime: 9.500ms - JoinFilterTimer: 25.576us - MemoryUsage: - PeakMemoryUsage: 68.48 KB - ProbeKeyArena: 68.48 KB - OpenTime: 23.720us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 47.221us - ProbeFindNextTime: 0ns - ProbeRows: 624.326K (624326) - ProbeTime: 91.1ms - ProbeWhenBuildSideOutputTime: 50.102ms - ProbeWhenProbeSideOutputTime: 2.711ms - ProbeWhenProcessHashTableTime: 277.845us - ProbeWhenSearchHashTableTime: 23.950ms - ProjectionTime: 3.412ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s21ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 4.277us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.22ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.05 MB - MemoryUsage: - Blocks: 8.04 MB - PeakMemoryUsage: 8.04 MB - OpenTime: 14.308us - ProjectionTime: 0ns - RowsProduced: 624.326K (624326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s687ms PipelineXTask (index=4):(Active: 287.933ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 287.698ms - CloseTime: 57.782us - GetBlockTime: 197.870ms - OpenTime: 7.628us - PrepareTime: 163.412us - SinkTime: 87.739ms - GetBlockCounter: 494 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 286.190ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 218.30ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 202 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 31.557us - CompressTime: 0ns - ExecTime: 87.630ms - InputRows: 785.358K (785358) - LocalBytesSent: 87.54 MB - LocalSendTime: 3.212ms - LocalSentRows: 785.358K (785358) - MemoryUsage: - PeakMemoryUsage: 95.30 MB - MergeBlockTime: 0ns - OpenTime: 81.214us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 785.358K (785358) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 66.990ms - SplitBlockHashComputeTime: 9.836ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 491 - BuildOutputBlock: 0ns - CloseTime: 13.903us - ExecTime: 192.163ms - InitProbeSideTime: 36.911ms - JoinFilterTimer: 73.886us - MemoryUsage: - PeakMemoryUsage: 94.67 KB - ProbeKeyArena: 94.67 KB - OpenTime: 19.767us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 94.992us - ProbeFindNextTime: 0ns - ProbeRows: 1.396578M (1396578) - ProbeTime: 178.9ms - ProbeWhenBuildSideOutputTime: 64.109ms - ProbeWhenProbeSideOutputTime: 5.19ms - ProbeWhenProcessHashTableTime: 42.995ms - ProbeWhenSearchHashTableTime: 18.502ms - ProjectionTime: 12.626ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s183ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 327 - BytesReceived: 0.00 - CloseTime: 8.809us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.964ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 68.30 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 19.83 MB - OpenTime: 23.905us - ProjectionTime: 0ns - RowsProduced: 1.396578M (1396578) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s578ms PipelineXTask (index=8):(Active: 179.292ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 179.44ms - CloseTime: 85.404us - GetBlockTime: 124.45ms - OpenTime: 7.136us - PrepareTime: 141.297us - SinkTime: 53.519ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 178.922ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 668.330ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.768us - CompressTime: 0ns - ExecTime: 53.498ms - InputRows: 106.34K (106340) - LocalBytesSent: 14.34 MB - LocalSendTime: 787.43us - LocalSentRows: 106.34K (106340) - MemoryUsage: - PeakMemoryUsage: 21.43 MB - MergeBlockTime: 0ns - OpenTime: 61.302us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.34K (106340) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 44.535ms - SplitBlockHashComputeTime: 4.36ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 21.249us - ExecTime: 121.245ms - InitProbeSideTime: 11.953ms - JoinFilterTimer: 28.754us - MemoryUsage: - PeakMemoryUsage: 68.27 KB - ProbeKeyArena: 68.27 KB - OpenTime: 20.451us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 61.200us - ProbeFindNextTime: 0ns - ProbeRows: 623.298K (623298) - ProbeTime: 116.586ms - ProbeWhenBuildSideOutputTime: 64.253ms - ProbeWhenProbeSideOutputTime: 3.308ms - ProbeWhenProcessHashTableTime: 249.109us - ProbeWhenSearchHashTableTime: 31.622ms - ProjectionTime: 3.806ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s657ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 42.775us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.381ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.42 MB - MemoryUsage: - Blocks: 8.13 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 12.940us - ProjectionTime: 0ns - RowsProduced: 623.298K (623298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s676ms PipelineXTask (index=12):(Active: 162.868ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 162.571ms - CloseTime: 40.975us - GetBlockTime: 110.403ms - OpenTime: 8.905us - PrepareTime: 233.430us - SinkTime: 50.660ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 40 - NumBlockedTimes: 42 - NumScheduleTimes: 42 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 162.596ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 580.904ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.897us - CompressTime: 0ns - ExecTime: 50.636ms - InputRows: 107.445K (107445) - LocalBytesSent: 14.49 MB - LocalSendTime: 796.71us - LocalSentRows: 107.445K (107445) - MemoryUsage: - PeakMemoryUsage: 21.65 MB - MergeBlockTime: 0ns - OpenTime: 93.674us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 107.445K (107445) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.84ms - SplitBlockHashComputeTime: 4.536ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 20.77us - ExecTime: 107.645ms - InitProbeSideTime: 10.826ms - JoinFilterTimer: 41.893us - MemoryUsage: - PeakMemoryUsage: 68.42 KB - ProbeKeyArena: 68.42 KB - OpenTime: 21.629us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 44.153us - ProbeFindNextTime: 0ns - ProbeRows: 623.398K (623398) - ProbeTime: 102.819ms - ProbeWhenBuildSideOutputTime: 55.220ms - ProbeWhenProbeSideOutputTime: 3.117ms - ProbeWhenProcessHashTableTime: 279.80us - ProbeWhenSearchHashTableTime: 28.272ms - ProjectionTime: 4.23ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s744ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 5.128us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.373ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 29.94 MB - MemoryUsage: - Blocks: 8.03 MB - PeakMemoryUsage: 8.03 MB - OpenTime: 58.378us - ProjectionTime: 0ns - RowsProduced: 623.398K (623398) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s693ms PipelineXTask (index=16):(Active: 157.373ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 157.100ms - CloseTime: 46.500us - GetBlockTime: 106.30ms - OpenTime: 11.105us - PrepareTime: 205.134us - SinkTime: 49.656ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 42 - NumBlockedTimes: 44 - NumScheduleTimes: 44 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 157.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.441ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.155us - CompressTime: 0ns - ExecTime: 49.622ms - InputRows: 106.81K (106810) - LocalBytesSent: 14.40 MB - LocalSendTime: 803.303us - LocalSentRows: 106.81K (106810) - MemoryUsage: - PeakMemoryUsage: 22.78 MB - MergeBlockTime: 0ns - OpenTime: 71.730us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.81K (106810) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.711ms - SplitBlockHashComputeTime: 4.170ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 22.857us - ExecTime: 103.443ms - InitProbeSideTime: 10.30ms - JoinFilterTimer: 28.780us - MemoryUsage: - PeakMemoryUsage: 68.45 KB - ProbeKeyArena: 68.45 KB - OpenTime: 50.38us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.888us - ProbeFindNextTime: 0ns - ProbeRows: 622.435K (622435) - ProbeTime: 98.736ms - ProbeWhenBuildSideOutputTime: 54.151ms - ProbeWhenProbeSideOutputTime: 2.833ms - ProbeWhenProcessHashTableTime: 343.140us - ProbeWhenSearchHashTableTime: 26.327ms - ProjectionTime: 3.856ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s46ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 8.590us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.230ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.32 MB - MemoryUsage: - Blocks: 8.13 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 26.577us - ProjectionTime: 0ns - RowsProduced: 622.435K (622435) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s691ms PipelineXTask (index=20):(Active: 154.903ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 154.677ms - CloseTime: 63.658us - GetBlockTime: 106.923ms - OpenTime: 9.605us - PrepareTime: 142.551us - SinkTime: 46.315ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 139.165ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.880us - CompressTime: 0ns - ExecTime: 46.311ms - InputRows: 107.77K (107770) - LocalBytesSent: 14.53 MB - LocalSendTime: 971.189us - LocalSentRows: 107.77K (107770) - MemoryUsage: - PeakMemoryUsage: 20.09 MB - MergeBlockTime: 0ns - OpenTime: 74.261us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 107.77K (107770) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.947ms - SplitBlockHashComputeTime: 3.786ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 31.306us - ExecTime: 104.395ms - InitProbeSideTime: 9.558ms - JoinFilterTimer: 26.482us - MemoryUsage: - PeakMemoryUsage: 68.19 KB - ProbeKeyArena: 68.19 KB - OpenTime: 19.287us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 49.399us - ProbeFindNextTime: 0ns - ProbeRows: 623.178K (623178) - ProbeTime: 100.28ms - ProbeWhenBuildSideOutputTime: 57.134ms - ProbeWhenProbeSideOutputTime: 2.784ms - ProbeWhenProcessHashTableTime: 684.206us - ProbeWhenSearchHashTableTime: 24.997ms - ProjectionTime: 3.589ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s200ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 6.988us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.140ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.21 MB - MemoryUsage: - Blocks: 7.73 MB - PeakMemoryUsage: 7.73 MB - OpenTime: 13.505us - ProjectionTime: 0ns - RowsProduced: 623.178K (623178) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s688ms PipelineXTask (index=24):(Active: 154.588ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 154.320ms - CloseTime: 100.698us - GetBlockTime: 106.804ms - OpenTime: 9.185us - PrepareTime: 147.733us - SinkTime: 46.213ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 38 - NumBlockedTimes: 40 - NumScheduleTimes: 40 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.206ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 324.118ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.487us - CompressTime: 0ns - ExecTime: 46.197ms - InputRows: 106.53K (106530) - LocalBytesSent: 14.37 MB - LocalSendTime: 640.205us - LocalSentRows: 106.53K (106530) - MemoryUsage: - PeakMemoryUsage: 20.70 MB - MergeBlockTime: 0ns - OpenTime: 70.773us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.53K (106530) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 37.941ms - SplitBlockHashComputeTime: 4.38ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 14.936us - ExecTime: 104.347ms - InitProbeSideTime: 10.137ms - JoinFilterTimer: 27.815us - MemoryUsage: - PeakMemoryUsage: 68.56 KB - ProbeKeyArena: 68.56 KB - OpenTime: 23.926us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.748us - ProbeFindNextTime: 0ns - ProbeRows: 624.271K (624271) - ProbeTime: 100.34ms - ProbeWhenBuildSideOutputTime: 55.572ms - ProbeWhenProbeSideOutputTime: 2.865ms - ProbeWhenProcessHashTableTime: 285.268us - ProbeWhenSearchHashTableTime: 26.581ms - ProjectionTime: 3.566ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s21ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 64.951us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.135ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.30 MB - MemoryUsage: - Blocks: 8.13 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 11.153us - ProjectionTime: 0ns - RowsProduced: 624.271K (624271) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s682ms PipelineXTask (index=28):(Active: 159.883ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 159.684ms - CloseTime: 48.423us - GetBlockTime: 109.602ms - OpenTime: 4.914us - PrepareTime: 135.550us - SinkTime: 48.660ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 41 - NumBlockedTimes: 43 - NumScheduleTimes: 43 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 159.670ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 236.383ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.229us - CompressTime: 0ns - ExecTime: 48.635ms - InputRows: 107.657K (107657) - LocalBytesSent: 14.52 MB - LocalSendTime: 951.649us - LocalSentRows: 107.657K (107657) - MemoryUsage: - PeakMemoryUsage: 20.63 MB - MergeBlockTime: 0ns - OpenTime: 74.979us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 107.657K (107657) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.911ms - SplitBlockHashComputeTime: 3.994ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 20.457us - ExecTime: 106.937ms - InitProbeSideTime: 11.28ms - JoinFilterTimer: 28.195us - MemoryUsage: - PeakMemoryUsage: 68.17 KB - ProbeKeyArena: 68.17 KB - OpenTime: 16.933us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 54.366us - ProbeFindNextTime: 0ns - ProbeRows: 623.952K (623952) - ProbeTime: 102.458ms - ProbeWhenBuildSideOutputTime: 55.144ms - ProbeWhenProbeSideOutputTime: 2.843ms - ProbeWhenProcessHashTableTime: 591.146us - ProbeWhenSearchHashTableTime: 27.832ms - ProjectionTime: 3.704ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s100ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 5.492us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.218ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.32 MB - MemoryUsage: - Blocks: 8.13 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 11.598us - ProjectionTime: 0ns - RowsProduced: 623.952K (623952) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s686ms PipelineXTask (index=32):(Active: 170.840ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 170.647ms - CloseTime: 30.523us - GetBlockTime: 116.613ms - OpenTime: 11.237us - PrepareTime: 141.114us - SinkTime: 52.586ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 170.626ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 423.776ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.328us - CompressTime: 0ns - ExecTime: 52.544ms - InputRows: 106.993K (106993) - LocalBytesSent: 14.43 MB - LocalSendTime: 765.964us - LocalSentRows: 106.993K (106993) - MemoryUsage: - PeakMemoryUsage: 21.14 MB - MergeBlockTime: 0ns - OpenTime: 69.555us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.993K (106993) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 42.845ms - SplitBlockHashComputeTime: 4.577ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 10.596us - ExecTime: 113.873ms - InitProbeSideTime: 10.988ms - JoinFilterTimer: 31.834us - MemoryUsage: - PeakMemoryUsage: 68.41 KB - ProbeKeyArena: 68.41 KB - OpenTime: 22.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 58.573us - ProbeFindNextTime: 0ns - ProbeRows: 624.486K (624486) - ProbeTime: 108.736ms - ProbeWhenBuildSideOutputTime: 59.218ms - ProbeWhenProbeSideOutputTime: 3.145ms - ProbeWhenProcessHashTableTime: 363.926us - ProbeWhenSearchHashTableTime: 29.518ms - ProjectionTime: 4.330ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s890ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 4.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.268ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.29 MB - MemoryUsage: - Blocks: 8.12 MB - PeakMemoryUsage: 8.12 MB - OpenTime: 15.293us - ProjectionTime: 0ns - RowsProduced: 624.486K (624486) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s697ms PipelineXTask (index=36):(Active: 171.975ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 171.790ms - CloseTime: 29.472us - GetBlockTime: 117.861ms - OpenTime: 5.575us - PrepareTime: 138.610us - SinkTime: 52.521ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 42 - NumBlockedTimes: 44 - NumScheduleTimes: 44 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 171.676ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 581.669ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.47us - CompressTime: 0ns - ExecTime: 52.495ms - InputRows: 106.76K (106760) - LocalBytesSent: 14.40 MB - LocalSendTime: 786.128us - LocalSentRows: 106.76K (106760) - MemoryUsage: - PeakMemoryUsage: 21.14 MB - MergeBlockTime: 0ns - OpenTime: 67.986us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.76K (106760) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 43.872ms - SplitBlockHashComputeTime: 3.973ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 13.223us - ExecTime: 115.231ms - InitProbeSideTime: 11.170ms - JoinFilterTimer: 28.319us - MemoryUsage: - PeakMemoryUsage: 68.73 KB - ProbeKeyArena: 68.73 KB - OpenTime: 33.134us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.899us - ProbeFindNextTime: 0ns - ProbeRows: 623.647K (623647) - ProbeTime: 110.251ms - ProbeWhenBuildSideOutputTime: 61.329ms - ProbeWhenProbeSideOutputTime: 3.5ms - ProbeWhenProcessHashTableTime: 282.330us - ProbeWhenSearchHashTableTime: 29.322ms - ProjectionTime: 4.156ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s744ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 4.357us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.162ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.14 MB - MemoryUsage: - Blocks: 8.13 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 11.300us - ProjectionTime: 0ns - RowsProduced: 623.647K (623647) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s683ms PipelineXTask (index=40):(Active: 162.652ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 162.455ms - CloseTime: 37.77us - GetBlockTime: 112.659ms - OpenTime: 6.280us - PrepareTime: 139.323us - SinkTime: 48.402ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 162.421ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 271.500ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.833us - CompressTime: 0ns - ExecTime: 48.373ms - InputRows: 107.2K (107200) - LocalBytesSent: 14.46 MB - LocalSendTime: 767.675us - LocalSentRows: 107.2K (107200) - MemoryUsage: - PeakMemoryUsage: 19.39 MB - MergeBlockTime: 0ns - OpenTime: 69.192us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 107.2K (107200) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.925ms - SplitBlockHashComputeTime: 3.945ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 15.330us - ExecTime: 110.140ms - InitProbeSideTime: 10.403ms - JoinFilterTimer: 28.624us - MemoryUsage: - PeakMemoryUsage: 68.53 KB - ProbeKeyArena: 68.53 KB - OpenTime: 22.236us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 57.662us - ProbeFindNextTime: 0ns - ProbeRows: 624.939K (624939) - ProbeTime: 105.401ms - ProbeWhenBuildSideOutputTime: 58.132ms - ProbeWhenProbeSideOutputTime: 3.8ms - ProbeWhenProcessHashTableTime: 426.666us - ProbeWhenSearchHashTableTime: 28.471ms - ProjectionTime: 3.932ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s49ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 6.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.88ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.21 MB - MemoryUsage: - Blocks: 7.92 MB - PeakMemoryUsage: 7.92 MB - OpenTime: 16.389us - ProjectionTime: 0ns - RowsProduced: 624.939K (624939) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s698ms PipelineXTask (index=44):(Active: 155.562ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 155.312ms - CloseTime: 75.982us - GetBlockTime: 105.693ms - OpenTime: 5.662us - PrepareTime: 156.119us - SinkTime: 48.361ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 155.365ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 147.197ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.506us - CompressTime: 0ns - ExecTime: 48.359ms - InputRows: 106.774K (106774) - LocalBytesSent: 14.40 MB - LocalSendTime: 650.892us - LocalSentRows: 106.774K (106774) - MemoryUsage: - PeakMemoryUsage: 20.74 MB - MergeBlockTime: 0ns - OpenTime: 79.824us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 106.774K (106774) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.325ms - SplitBlockHashComputeTime: 3.680ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 38.903us - ExecTime: 103.291ms - InitProbeSideTime: 10.232ms - JoinFilterTimer: 26.479us - MemoryUsage: - PeakMemoryUsage: 68.52 KB - ProbeKeyArena: 68.52 KB - OpenTime: 19.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 54.508us - ProbeFindNextTime: 0ns - ProbeRows: 623.493K (623493) - ProbeTime: 98.852ms - ProbeWhenBuildSideOutputTime: 54.722ms - ProbeWhenProbeSideOutputTime: 2.729ms - ProbeWhenProcessHashTableTime: 273.270us - ProbeWhenSearchHashTableTime: 26.199ms - ProjectionTime: 3.620ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s200ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 148 - BytesReceived: 0.00 - CloseTime: 23.451us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.21ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.14 MB - MemoryUsage: - Blocks: 7.95 MB - PeakMemoryUsage: 7.95 MB - OpenTime: 9.994us - ProjectionTime: 0ns - RowsProduced: 623.493K (623493) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s679ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 339.682ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 339.499ms - CloseTime: 39.175us - GetBlockTime: 303.70ms - OpenTime: 8.748us - PrepareTime: 116.357us - SinkTime: 33.722ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 67 - NumBlockedTimes: 69 - NumScheduleTimes: 69 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 270.352ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s238ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 202.86us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.68ms - BuildTableInsertTime: 1.389ms - BuildTableTime: 1.391ms - CloseTime: 0ns - ExecTime: 33.361ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 13.56 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.21 MB - OpenTime: 23.351us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.240us - RuntimeFilterComputeTime: 823.868us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 30.592us - ExecTime: 271.129ms - InitProbeSideTime: 44.833ms - JoinFilterTimer: 94.529us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 25.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 209.779us - ProbeFindNextTime: 0ns - ProbeRows: 3.296837M (3296837) - ProbeTime: 235.628ms - ProbeWhenBuildSideOutputTime: 37.715ms - ProbeWhenProbeSideOutputTime: 21.539ms - ProbeWhenProcessHashTableTime: 309.718us - ProbeWhenSearchHashTableTime: 109.739ms - ProjectionTime: 32.75ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s244ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 6.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.195ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.96 MB - MemoryUsage: - Blocks: 19.78 MB - PeakMemoryUsage: 19.78 MB - OpenTime: 24.810us - ProjectionTime: 0ns - RowsProduced: 3.296837M (3296837) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s67ms PipelineXTask (index=5):(Active: 557.190ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 556.992ms - CloseTime: 43.851us - GetBlockTime: 480.512ms - OpenTime: 4.978us - PrepareTime: 127.155us - SinkTime: 73.751ms - GetBlockCounter: 952 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 72 - NumBlockedTimes: 74 - NumScheduleTimes: 74 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 376.235ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s79ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 249.297us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 61.759ms - BuildTableInsertTime: 8.872ms - BuildTableTime: 8.877ms - CloseTime: 0ns - ExecTime: 73.342ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 80.80 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 100.53 MB - OpenTime: 34.372us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 200.393us - RuntimeFilterComputeTime: 1.349ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 951 - BuildOutputBlock: 0ns - CloseTime: 29.222us - ExecTime: 406.653ms - InitProbeSideTime: 114.492ms - JoinFilterTimer: 105.125us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 18.828us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 183.75us - ProbeFindNextTime: 0ns - ProbeRows: 3.295461M (3295461) - ProbeTime: 387.138ms - ProbeWhenBuildSideOutputTime: 83.348ms - ProbeWhenProbeSideOutputTime: 23.495ms - ProbeWhenProcessHashTableTime: 24.146ms - ProbeWhenSearchHashTableTime: 88.527ms - ProjectionTime: 16.173ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s639ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 785 - BytesReceived: 0.00 - CloseTime: 9.643us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 71.925ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 207.06 MB - MemoryUsage: - Blocks: 20.19 MB - PeakMemoryUsage: 20.19 MB - OpenTime: 33.690us - ProjectionTime: 0ns - RowsProduced: 3.295461M (3295461) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s700ms PipelineXTask (index=9):(Active: 352.982ms, % non-child: 0.00%) - CoreChangeTimes: 30 - ExecuteTime: 352.745ms - CloseTime: 98.497us - GetBlockTime: 325.229ms - OpenTime: 8.676us - PrepareTime: 109.20us - SinkTime: 25.148ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 71 - NumBlockedTimes: 73 - NumScheduleTimes: 73 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 258.866ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s637ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 178.994us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.81ms - BuildTableInsertTime: 1.868ms - BuildTableTime: 1.873ms - CloseTime: 0ns - ExecTime: 24.820ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 13.43 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.06 MB - OpenTime: 24.89us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.496us - RuntimeFilterComputeTime: 877.607us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 82.732us - ExecTime: 240.582ms - InitProbeSideTime: 38.452ms - JoinFilterTimer: 88.222us - MemoryUsage: - PeakMemoryUsage: 68.94 KB - ProbeKeyArena: 68.94 KB - OpenTime: 15.406us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 183.651us - ProbeFindNextTime: 0ns - ProbeRows: 3.295492M (3295492) - ProbeTime: 223.891ms - ProbeWhenBuildSideOutputTime: 34.816ms - ProbeWhenProbeSideOutputTime: 20.948ms - ProbeWhenProcessHashTableTime: 353.754us - ProbeWhenSearchHashTableTime: 110.743ms - ProjectionTime: 13.581ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 843.959ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 10.669us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.953ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 201.16 MB - MemoryUsage: - Blocks: 19.33 MB - PeakMemoryUsage: 19.33 MB - OpenTime: 25.358us - ProjectionTime: 0ns - RowsProduced: 3.295492M (3295492) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s64ms PipelineXTask (index=13):(Active: 548.196ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 548.39ms - CloseTime: 36.12us - GetBlockTime: 454.396ms - OpenTime: 13.885us - PrepareTime: 91.862us - SinkTime: 91.494ms - GetBlockCounter: 791 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 58 - NumBlockedTimes: 60 - NumScheduleTimes: 62 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 248.764ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s422ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 177.616us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 88.4ms - BuildTableInsertTime: 1.436ms - BuildTableTime: 1.440ms - CloseTime: 0ns - ExecTime: 91.151ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 13.57 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.22 MB - OpenTime: 19.615us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.128us - RuntimeFilterComputeTime: 755.194us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 22.856us - ExecTime: 272.166ms - InitProbeSideTime: 36.946ms - JoinFilterTimer: 95.366us - MemoryUsage: - PeakMemoryUsage: 69.19 KB - ProbeKeyArena: 69.19 KB - OpenTime: 21.967us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 162.928us - ProbeFindNextTime: 0ns - ProbeRows: 3.296171M (3296171) - ProbeTime: 250.598ms - ProbeWhenBuildSideOutputTime: 43.395ms - ProbeWhenProbeSideOutputTime: 20.744ms - ProbeWhenProcessHashTableTime: 258.2us - ProbeWhenSearchHashTableTime: 115.904ms - ProjectionTime: 8.301ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 840.942ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 790 - BytesReceived: 0.00 - CloseTime: 9.298us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 180.790ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.20 MB - MemoryUsage: - Blocks: 19.94 MB - PeakMemoryUsage: 19.94 MB - OpenTime: 11.898us - ProjectionTime: 0ns - RowsProduced: 3.296171M (3296171) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s78ms PipelineXTask (index=17):(Active: 439.425ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 439.304ms - CloseTime: 32.26us - GetBlockTime: 415.150ms - OpenTime: 7.873us - PrepareTime: 69.671us - SinkTime: 18.568ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 62 - NumBlockedTimes: 64 - NumScheduleTimes: 64 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.53ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s509ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 185.795us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.153ms - BuildTableInsertTime: 1.365ms - BuildTableTime: 1.368ms - CloseTime: 0ns - ExecTime: 18.229ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 13.49 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.13 MB - OpenTime: 12.732us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.382us - RuntimeFilterComputeTime: 788.761us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 21.156us - ExecTime: 306.16ms - InitProbeSideTime: 57.174ms - JoinFilterTimer: 76.791us - MemoryUsage: - PeakMemoryUsage: 69.11 KB - ProbeKeyArena: 69.11 KB - OpenTime: 19.276us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 178.505us - ProbeFindNextTime: 0ns - ProbeRows: 3.29521M (3295210) - ProbeTime: 295.276ms - ProbeWhenBuildSideOutputTime: 40.778ms - ProbeWhenProbeSideOutputTime: 20.344ms - ProbeWhenProcessHashTableTime: 306.778us - ProbeWhenSearchHashTableTime: 108.821ms - ProjectionTime: 7.774ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 941.195ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 7.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 107.662ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.20 MB - MemoryUsage: - Blocks: 19.61 MB - PeakMemoryUsage: 19.61 MB - OpenTime: 8.979us - ProjectionTime: 0ns - RowsProduced: 3.29521M (3295210) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s3ms PipelineXTask (index=21):(Active: 290.204ms, % non-child: 0.00%) - CoreChangeTimes: 31 - ExecuteTime: 290.61ms - CloseTime: 24.481us - GetBlockTime: 257.233ms - OpenTime: 5.767us - PrepareTime: 101.541us - SinkTime: 30.838ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 65 - NumBlockedTimes: 67 - NumScheduleTimes: 67 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 222.491ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 898.861ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 201.212us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.489ms - BuildTableInsertTime: 1.357ms - BuildTableTime: 1.359ms - CloseTime: 0ns - ExecTime: 30.521ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 13.61 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.27 MB - OpenTime: 17.466us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.641us - RuntimeFilterComputeTime: 811.338us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 17.556us - ExecTime: 205.487ms - InitProbeSideTime: 33.38ms - JoinFilterTimer: 75.839us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 22.821us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 168.344us - ProbeFindNextTime: 0ns - ProbeRows: 3.295336M (3295336) - ProbeTime: 194.803ms - ProbeWhenBuildSideOutputTime: 31.298ms - ProbeWhenProbeSideOutputTime: 30.787ms - ProbeWhenProcessHashTableTime: 289.75us - ProbeWhenSearchHashTableTime: 83.984ms - ProjectionTime: 7.894ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s632ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 4.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.307ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 201.91 MB - MemoryUsage: - Blocks: 19.72 MB - PeakMemoryUsage: 19.72 MB - OpenTime: 15.207us - ProjectionTime: 0ns - RowsProduced: 3.295336M (3295336) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s71ms PipelineXTask (index=25):(Active: 337.737ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 337.565ms - CloseTime: 38.747us - GetBlockTime: 313.95ms - OpenTime: 14.7us - PrepareTime: 106.264us - SinkTime: 22.144ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 66 - NumBlockedTimes: 68 - NumScheduleTimes: 68 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 269.165ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 875.745ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 202.965us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.351ms - BuildTableInsertTime: 1.495ms - BuildTableTime: 1.497ms - CloseTime: 0ns - ExecTime: 21.798ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 13.45 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.09 MB - OpenTime: 29.57us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.191us - RuntimeFilterComputeTime: 807.165us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 29.826us - ExecTime: 263.241ms - InitProbeSideTime: 45.291ms - JoinFilterTimer: 86.903us - MemoryUsage: - PeakMemoryUsage: 68.98 KB - ProbeKeyArena: 68.98 KB - OpenTime: 31.782us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 193.421us - ProbeFindNextTime: 0ns - ProbeRows: 3.295972M (3295972) - ProbeTime: 250.432ms - ProbeWhenBuildSideOutputTime: 36.214ms - ProbeWhenProbeSideOutputTime: 21.391ms - ProbeWhenProcessHashTableTime: 284.77us - ProbeWhenSearchHashTableTime: 105.167ms - ProjectionTime: 9.643ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s664ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 789 - BytesReceived: 0.00 - CloseTime: 5.711us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 48.218ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 204.41 MB - MemoryUsage: - Blocks: 19.67 MB - PeakMemoryUsage: 19.67 MB - OpenTime: 15.160us - ProjectionTime: 0ns - RowsProduced: 3.295972M (3295972) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s13ms PipelineXTask (index=29):(Active: 360.767ms, % non-child: 0.00%) - CoreChangeTimes: 27 - ExecuteTime: 360.605ms - CloseTime: 38.130us - GetBlockTime: 338.927ms - OpenTime: 3.866us - PrepareTime: 108.51us - SinkTime: 19.104ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 86 - NumBlockedTimes: 88 - NumScheduleTimes: 88 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 255.522ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s92ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 207.714us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.514ms - BuildTableInsertTime: 1.433ms - BuildTableTime: 1.436ms - CloseTime: 0ns - ExecTime: 18.711ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 13.59 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.25 MB - OpenTime: 13.115us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.326us - RuntimeFilterComputeTime: 837.512us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 30.482us - ExecTime: 232.692ms - InitProbeSideTime: 47.349ms - JoinFilterTimer: 84.779us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 14.642us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 193.160us - ProbeFindNextTime: 0ns - ProbeRows: 3.295121M (3295121) - ProbeTime: 220.86ms - ProbeWhenBuildSideOutputTime: 35.607ms - ProbeWhenProbeSideOutputTime: 22.498ms - ProbeWhenProcessHashTableTime: 292.65us - ProbeWhenSearchHashTableTime: 96.739ms - ProjectionTime: 9.490ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s503ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 5.162us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.527ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.18 MB - MemoryUsage: - Blocks: 19.66 MB - PeakMemoryUsage: 19.66 MB - OpenTime: 28.71us - ProjectionTime: 0ns - RowsProduced: 3.295121M (3295121) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s936ms PipelineXTask (index=33):(Active: 378.414ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 378.269ms - CloseTime: 25.758us - GetBlockTime: 358.103ms - OpenTime: 8.501us - PrepareTime: 98.102us - SinkTime: 18.53ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 70 - NumBlockedTimes: 72 - NumScheduleTimes: 72 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 223.361ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s615ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 193.710us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.655ms - BuildTableInsertTime: 1.501ms - BuildTableTime: 1.503ms - CloseTime: 0ns - ExecTime: 17.765ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 13.51 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.15 MB - OpenTime: 15.296us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.554us - RuntimeFilterComputeTime: 803.243us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 17.277us - ExecTime: 244.104ms - InitProbeSideTime: 44.8ms - JoinFilterTimer: 73.225us - MemoryUsage: - PeakMemoryUsage: 69.05 KB - ProbeKeyArena: 69.05 KB - OpenTime: 23.514us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 179.398us - ProbeFindNextTime: 0ns - ProbeRows: 3.295033M (3295033) - ProbeTime: 212.891ms - ProbeWhenBuildSideOutputTime: 44.454ms - ProbeWhenProbeSideOutputTime: 20.387ms - ProbeWhenProcessHashTableTime: 326.659us - ProbeWhenSearchHashTableTime: 79.481ms - ProjectionTime: 28.318ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 869.397ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 788 - BytesReceived: 0.00 - CloseTime: 5.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 112.640ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.18 MB - MemoryUsage: - Blocks: 19.59 MB - PeakMemoryUsage: 19.59 MB - OpenTime: 20.226us - ProjectionTime: 0ns - RowsProduced: 3.295033M (3295033) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s27ms PipelineXTask (index=37):(Active: 498.63ms, % non-child: 0.00%) - CoreChangeTimes: 37 - ExecuteTime: 497.898ms - CloseTime: 40.168us - GetBlockTime: 463.137ms - OpenTime: 4.874us - PrepareTime: 107.321us - SinkTime: 32.463ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 85 - NumBlockedTimes: 87 - NumScheduleTimes: 89 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 245.316ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s402ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 199.514us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.946ms - BuildTableInsertTime: 1.577ms - BuildTableTime: 1.580ms - CloseTime: 0ns - ExecTime: 32.139ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 13.48 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.12 MB - OpenTime: 14.320us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.35us - RuntimeFilterComputeTime: 724.711us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 31.992us - ExecTime: 349.95ms - InitProbeSideTime: 58.662ms - JoinFilterTimer: 72.550us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 15.542us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 194.81us - ProbeFindNextTime: 0ns - ProbeRows: 3.296297M (3296297) - ProbeTime: 337.742ms - ProbeWhenBuildSideOutputTime: 64.968ms - ProbeWhenProbeSideOutputTime: 88.573ms - ProbeWhenProcessHashTableTime: 270.693us - ProbeWhenSearchHashTableTime: 108.247ms - ProjectionTime: 8.424ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 954.76ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 5.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 112.405ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.58 MB - MemoryUsage: - Blocks: 19.20 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 29.762us - ProjectionTime: 0ns - RowsProduced: 3.296297M (3296297) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s36ms PipelineXTask (index=41):(Active: 395.513ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 395.361ms - CloseTime: 32.226us - GetBlockTime: 374.731ms - OpenTime: 7.242us - PrepareTime: 100.621us - SinkTime: 18.588ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 58 - NumBlockedTimes: 60 - NumScheduleTimes: 60 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.511ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s375ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 202.725us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.221ms - BuildTableInsertTime: 1.390ms - BuildTableTime: 1.393ms - CloseTime: 0ns - ExecTime: 18.294ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 13.54 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.18 MB - OpenTime: 15.617us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.591us - RuntimeFilterComputeTime: 829.384us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 25.154us - ExecTime: 284.859ms - InitProbeSideTime: 46.299ms - JoinFilterTimer: 61.663us - MemoryUsage: - PeakMemoryUsage: 69.16 KB - ProbeKeyArena: 69.16 KB - OpenTime: 19.648us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 163.789us - ProbeFindNextTime: 0ns - ProbeRows: 3.295637M (3295637) - ProbeTime: 273.670ms - ProbeWhenBuildSideOutputTime: 42.891ms - ProbeWhenProbeSideOutputTime: 36.304ms - ProbeWhenProcessHashTableTime: 271.958us - ProbeWhenSearchHashTableTime: 131.953ms - ProjectionTime: 8.383ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s359ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 4.797us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.502ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 206.14 MB - MemoryUsage: - Blocks: 19.75 MB - PeakMemoryUsage: 19.75 MB - OpenTime: 12.105us - ProjectionTime: 0ns - RowsProduced: 3.295637M (3295637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s763ms PipelineXTask (index=45):(Active: 269.19ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 268.830ms - CloseTime: 41.33us - GetBlockTime: 249.949ms - OpenTime: 3.746us - PrepareTime: 132.10us - SinkTime: 16.731ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 79 - NumBlockedTimes: 81 - NumScheduleTimes: 81 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.355ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 974.635ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 158.499us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.458ms - BuildTableInsertTime: 1.409ms - BuildTableTime: 1.412ms - CloseTime: 0ns - ExecTime: 16.433ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 13.48 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.12 MB - OpenTime: 25.349us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.172us - RuntimeFilterComputeTime: 767.139us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 30.337us - ExecTime: 228.496ms - InitProbeSideTime: 41.572ms - JoinFilterTimer: 70.199us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 21.709us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 194.565us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 214.686ms - ProbeWhenBuildSideOutputTime: 40.763ms - ProbeWhenProbeSideOutputTime: 19.480ms - ProbeWhenProcessHashTableTime: 269.825us - ProbeWhenSearchHashTableTime: 77.335ms - ProjectionTime: 10.872ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s626ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 787 - BytesReceived: 0.00 - CloseTime: 7.415us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.24ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 202.85 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 16.763us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s22ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 64.28ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 63.879ms - CloseTime: 49.138us - GetBlockTime: 52.414ms - OpenTime: 6.458us - PrepareTime: 88.403us - SinkTime: 11.201ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.857ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 306.638ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.694us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.616ms - BuildTableInsertTime: 3.196ms - BuildTableTime: 3.203ms - CloseTime: 0ns - ExecTime: 11.168ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 7.78 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.44 MB - OpenTime: 18.559us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.332us - RuntimeFilterComputeTime: 1.143ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 19.617us - ExecTime: 51.649ms - InitProbeSideTime: 4.956ms - JoinFilterTimer: 12.345us - MemoryUsage: - PeakMemoryUsage: 68.94 KB - ProbeKeyArena: 68.94 KB - OpenTime: 14.606us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.460us - ProbeFindNextTime: 0ns - ProbeRows: 209.101K (209101) - ProbeTime: 49.98ms - ProbeWhenBuildSideOutputTime: 20.848ms - ProbeWhenProbeSideOutputTime: 921.181us - ProbeWhenProcessHashTableTime: 4.511ms - ProbeWhenSearchHashTableTime: 15.387ms - ProjectionTime: 2.174ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s88ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 23.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 656.320us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.17 MB - MemoryUsage: - Blocks: 5.17 MB - PeakMemoryUsage: 5.17 MB - OpenTime: 10.42us - ProjectionTime: 0ns - RowsProduced: 209.101K (209101) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s581ms PipelineXTask (index=6):(Active: 184.227ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 184.104ms - CloseTime: 42.220us - GetBlockTime: 68.767ms - OpenTime: 3.785us - PrepareTime: 72.262us - SinkTime: 114.950ms - GetBlockCounter: 231 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 148.816ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 452.630ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.346us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.302ms - BuildTableInsertTime: 57.549ms - BuildTableTime: 57.557ms - CloseTime: 0ns - ExecTime: 114.878ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 56.92 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 76.65 MB - OpenTime: 12.128us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 180.242us - RuntimeFilterComputeTime: 4.568ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 231 - BuildOutputBlock: 0ns - CloseTime: 23.937us - ExecTime: 68.192ms - InitProbeSideTime: 4.577ms - JoinFilterTimer: 20.210us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 13.98us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.905us - ProbeFindNextTime: 0ns - ProbeRows: 208.499K (208499) - ProbeTime: 61.516ms - ProbeWhenBuildSideOutputTime: 22.236ms - ProbeWhenProbeSideOutputTime: 580.614us - ProbeWhenProcessHashTableTime: 24.354ms - ProbeWhenSearchHashTableTime: 6.870ms - ProjectionTime: 6.380ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s164ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 12.766us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 421.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.78 MB - MemoryUsage: - Blocks: 4.78 MB - PeakMemoryUsage: 4.78 MB - OpenTime: 12.735us - ProjectionTime: 0ns - RowsProduced: 208.499K (208499) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s588ms PipelineXTask (index=10):(Active: 44.588ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.402ms - CloseTime: 40.147us - GetBlockTime: 33.411ms - OpenTime: 9.490us - PrepareTime: 127.847us - SinkTime: 10.816ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 566.659ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.124us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.517ms - BuildTableInsertTime: 2.362ms - BuildTableTime: 2.368ms - CloseTime: 0ns - ExecTime: 10.785ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 7.71 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.34 MB - OpenTime: 17.792us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.102us - RuntimeFilterComputeTime: 719.834us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 22.352us - ExecTime: 32.896ms - InitProbeSideTime: 3.243ms - JoinFilterTimer: 7.892us - MemoryUsage: - PeakMemoryUsage: 69.31 KB - ProbeKeyArena: 69.31 KB - OpenTime: 20.137us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.366us - ProbeFindNextTime: 0ns - ProbeRows: 208.7K (208700) - ProbeTime: 31.264ms - ProbeWhenBuildSideOutputTime: 13.712ms - ProbeWhenProbeSideOutputTime: 626.194us - ProbeWhenProcessHashTableTime: 2.893ms - ProbeWhenSearchHashTableTime: 9.312ms - ProjectionTime: 1.392ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 771.893ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 12.357us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 492.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.10 MB - MemoryUsage: - Blocks: 5.10 MB - PeakMemoryUsage: 5.10 MB - OpenTime: 11.978us - ProjectionTime: 0ns - RowsProduced: 208.7K (208700) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s594ms PipelineXTask (index=14):(Active: 42.991ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 42.874ms - CloseTime: 35.779us - GetBlockTime: 33.429ms - OpenTime: 4.538us - PrepareTime: 71.56us - SinkTime: 9.275ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 568.572ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.484us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.132ms - BuildTableInsertTime: 2.239ms - BuildTableTime: 2.246ms - CloseTime: 0ns - ExecTime: 9.253ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 7.79 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.44 MB - OpenTime: 10.57us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.130us - RuntimeFilterComputeTime: 725.720us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 18.375us - ExecTime: 32.902ms - InitProbeSideTime: 3.273ms - JoinFilterTimer: 8.243us - MemoryUsage: - PeakMemoryUsage: 68.92 KB - ProbeKeyArena: 68.92 KB - OpenTime: 18.710us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.541us - ProbeFindNextTime: 0ns - ProbeRows: 209.108K (209108) - ProbeTime: 31.263ms - ProbeWhenBuildSideOutputTime: 13.615ms - ProbeWhenProbeSideOutputTime: 633.165us - ProbeWhenProcessHashTableTime: 2.879ms - ProbeWhenSearchHashTableTime: 9.421ms - ProjectionTime: 1.402ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 768.345ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 11.413us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 495.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.05 MB - MemoryUsage: - Blocks: 5.05 MB - PeakMemoryUsage: 5.05 MB - OpenTime: 13.359us - ProjectionTime: 0ns - RowsProduced: 209.108K (209108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s594ms PipelineXTask (index=18):(Active: 36.397ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.225ms - CloseTime: 27.564us - GetBlockTime: 27.973ms - OpenTime: 6.873us - PrepareTime: 132.209us - SinkTime: 8.96ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.357ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.2ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.698us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.954ms - BuildTableInsertTime: 2.187ms - BuildTableTime: 2.192ms - CloseTime: 0ns - ExecTime: 8.74ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 8.547us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.753us - RuntimeFilterComputeTime: 803.930us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 12.254us - ExecTime: 27.544ms - InitProbeSideTime: 2.645ms - JoinFilterTimer: 7.882us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 13.187us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.133us - ProbeFindNextTime: 0ns - ProbeRows: 208.294K (208294) - ProbeTime: 26.167ms - ProbeWhenBuildSideOutputTime: 11.303ms - ProbeWhenProbeSideOutputTime: 516.244us - ProbeWhenProcessHashTableTime: 3.200ms - ProbeWhenSearchHashTableTime: 7.468ms - ProjectionTime: 1.168ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s256ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 11.84us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 462.85us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.95 MB - MemoryUsage: - Blocks: 4.95 MB - PeakMemoryUsage: 4.95 MB - OpenTime: 74.327us - ProjectionTime: 0ns - RowsProduced: 208.294K (208294) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s588ms PipelineXTask (index=22):(Active: 39.433ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.314ms - CloseTime: 31.824us - GetBlockTime: 29.847ms - OpenTime: 4.374us - PrepareTime: 77.593us - SinkTime: 9.297ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.114ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.22ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.614us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.838ms - BuildTableInsertTime: 2.576ms - BuildTableTime: 2.580ms - CloseTime: 0ns - ExecTime: 9.279ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 7.81 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.47 MB - OpenTime: 17.101us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.278us - RuntimeFilterComputeTime: 738.124us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 15.535us - ExecTime: 29.406ms - InitProbeSideTime: 2.745ms - JoinFilterTimer: 8.425us - MemoryUsage: - PeakMemoryUsage: 69.00 KB - ProbeKeyArena: 69.00 KB - OpenTime: 9.72us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.968us - ProbeFindNextTime: 0ns - ProbeRows: 209.195K (209195) - ProbeTime: 27.872ms - ProbeWhenBuildSideOutputTime: 11.745ms - ProbeWhenProbeSideOutputTime: 592.656us - ProbeWhenProcessHashTableTime: 3.538ms - ProbeWhenSearchHashTableTime: 8.46ms - ProjectionTime: 1.314ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s301ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 11.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 414.473us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.95 MB - MemoryUsage: - Blocks: 4.95 MB - PeakMemoryUsage: 4.95 MB - OpenTime: 16.752us - ProjectionTime: 0ns - RowsProduced: 209.195K (209195) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s580ms PipelineXTask (index=26):(Active: 68.644ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.530ms - CloseTime: 38.16us - GetBlockTime: 56.312ms - OpenTime: 4.26us - PrepareTime: 67.368us - SinkTime: 11.937ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.413ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 346.309ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.16us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.450ms - BuildTableInsertTime: 3.93ms - BuildTableTime: 3.100ms - CloseTime: 0ns - ExecTime: 11.898ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 7.72 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.35 MB - OpenTime: 15.897us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.158us - RuntimeFilterComputeTime: 1.125ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 16.714us - ExecTime: 55.515ms - InitProbeSideTime: 5.461ms - JoinFilterTimer: 13.282us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 12.882us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.653us - ProbeFindNextTime: 0ns - ProbeRows: 209.128K (209128) - ProbeTime: 53.22ms - ProbeWhenBuildSideOutputTime: 22.693ms - ProbeWhenProbeSideOutputTime: 927.364us - ProbeWhenProcessHashTableTime: 4.855ms - ProbeWhenSearchHashTableTime: 16.904ms - ProjectionTime: 2.141ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s113ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 15.194us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 682.947us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.92 MB - MemoryUsage: - Blocks: 4.92 MB - PeakMemoryUsage: 4.92 MB - OpenTime: 9.355us - ProjectionTime: 0ns - RowsProduced: 209.128K (209128) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s581ms PipelineXTask (index=30):(Active: 78.724ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 78.519ms - CloseTime: 29.870us - GetBlockTime: 70.565ms - OpenTime: 3.334us - PrepareTime: 166.354us - SinkTime: 7.779ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.666ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 438.230ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.366us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.61ms - BuildTableInsertTime: 1.849ms - BuildTableTime: 1.854ms - CloseTime: 0ns - ExecTime: 7.751ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 7.80 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.46 MB - OpenTime: 10.140us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.314us - RuntimeFilterComputeTime: 696.471us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 15.17us - ExecTime: 70.65ms - InitProbeSideTime: 3.264ms - JoinFilterTimer: 9.221us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 83.930us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.976us - ProbeFindNextTime: 0ns - ProbeRows: 208.464K (208464) - ProbeTime: 68.286ms - ProbeWhenBuildSideOutputTime: 50.501ms - ProbeWhenProbeSideOutputTime: 603.988us - ProbeWhenProcessHashTableTime: 2.773ms - ProbeWhenSearchHashTableTime: 9.628ms - ProjectionTime: 1.448ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s148ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 10.52us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 524.148us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.92 MB - MemoryUsage: - Blocks: 4.92 MB - PeakMemoryUsage: 4.92 MB - OpenTime: 17.524us - ProjectionTime: 0ns - RowsProduced: 208.464K (208464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s588ms PipelineXTask (index=34):(Active: 51.843ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 51.708ms - CloseTime: 42.526us - GetBlockTime: 41.247ms - OpenTime: 6.75us - PrepareTime: 80.629us - SinkTime: 10.262ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.167ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 602.308ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.75us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.637ms - BuildTableInsertTime: 3.346ms - BuildTableTime: 3.361ms - CloseTime: 0ns - ExecTime: 10.230ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 7.75 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.40 MB - OpenTime: 11.413us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.529us - RuntimeFilterComputeTime: 1.62ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 22.724us - ExecTime: 40.673ms - InitProbeSideTime: 3.909ms - JoinFilterTimer: 11.260us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 12.921us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.240us - ProbeFindNextTime: 0ns - ProbeRows: 209.241K (209241) - ProbeTime: 38.794ms - ProbeWhenBuildSideOutputTime: 16.326ms - ProbeWhenProbeSideOutputTime: 690.781us - ProbeWhenProcessHashTableTime: 4.437ms - ProbeWhenSearchHashTableTime: 11.739ms - ProjectionTime: 1.604ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 796.873ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 14.835us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 543.48us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.13 MB - MemoryUsage: - Blocks: 5.13 MB - PeakMemoryUsage: 5.13 MB - OpenTime: 27.989us - ProjectionTime: 0ns - RowsProduced: 209.241K (209241) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s594ms PipelineXTask (index=38):(Active: 39.878ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 39.770ms - CloseTime: 33.238us - GetBlockTime: 30.425ms - OpenTime: 4.746us - PrepareTime: 64.202us - SinkTime: 9.172ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.740ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 649.183ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.146us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.474ms - BuildTableInsertTime: 1.802ms - BuildTableTime: 1.807ms - CloseTime: 0ns - ExecTime: 9.144ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 13.934us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.646us - RuntimeFilterComputeTime: 718.367us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 16.106us - ExecTime: 29.925ms - InitProbeSideTime: 2.897ms - JoinFilterTimer: 7.778us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 9.520us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.285us - ProbeFindNextTime: 0ns - ProbeRows: 208.88K (208880) - ProbeTime: 28.382ms - ProbeWhenBuildSideOutputTime: 12.511ms - ProbeWhenProbeSideOutputTime: 561.572us - ProbeWhenProcessHashTableTime: 2.720ms - ProbeWhenSearchHashTableTime: 8.402ms - ProjectionTime: 1.335ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 804.178ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 12.286us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 462.714us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.88 MB - MemoryUsage: - Blocks: 4.88 MB - PeakMemoryUsage: 4.88 MB - OpenTime: 10.845us - ProjectionTime: 0ns - RowsProduced: 208.88K (208880) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s594ms PipelineXTask (index=42):(Active: 90.925ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 90.818ms - CloseTime: 34.350us - GetBlockTime: 53.983ms - OpenTime: 3.782us - PrepareTime: 65.385us - SinkTime: 36.630ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.373ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.205ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.660us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.802ms - BuildTableInsertTime: 15.338ms - BuildTableTime: 15.353ms - CloseTime: 0ns - ExecTime: 36.599ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 7.77 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.42 MB - OpenTime: 10.798us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.521us - RuntimeFilterComputeTime: 1.294ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 16.260us - ExecTime: 53.321ms - InitProbeSideTime: 3.278ms - JoinFilterTimer: 10.3us - MemoryUsage: - PeakMemoryUsage: 69.19 KB - ProbeKeyArena: 69.19 KB - OpenTime: 13.144us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.209us - ProbeFindNextTime: 0ns - ProbeRows: 209.075K (209075) - ProbeTime: 51.281ms - ProbeWhenBuildSideOutputTime: 16.472ms - ProbeWhenProbeSideOutputTime: 621.129us - ProbeWhenProcessHashTableTime: 4.204ms - ProbeWhenSearchHashTableTime: 25.86ms - ProjectionTime: 1.754ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s397ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 12.737us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 592.51us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.89 MB - MemoryUsage: - Blocks: 4.89 MB - PeakMemoryUsage: 4.89 MB - OpenTime: 10.110us - ProjectionTime: 0ns - RowsProduced: 209.075K (209075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s588ms PipelineXTask (index=46):(Active: 39.238ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 39.120ms - CloseTime: 31.357us - GetBlockTime: 28.869ms - OpenTime: 8.616us - PrepareTime: 71.636us - SinkTime: 10.84ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.136ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.967ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.860us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.860ms - BuildTableInsertTime: 2.226ms - BuildTableTime: 2.231ms - CloseTime: 0ns - ExecTime: 10.57ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 14.540us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.766us - RuntimeFilterComputeTime: 807.468us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 12.198us - ExecTime: 28.347ms - InitProbeSideTime: 2.677ms - JoinFilterTimer: 8.333us - MemoryUsage: - PeakMemoryUsage: 69.05 KB - ProbeKeyArena: 69.05 KB - OpenTime: 11.152us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.163us - ProbeFindNextTime: 0ns - ProbeRows: 208.332K (208332) - ProbeTime: 26.842ms - ProbeWhenBuildSideOutputTime: 11.381ms - ProbeWhenProbeSideOutputTime: 581.116us - ProbeWhenProcessHashTableTime: 3.388ms - ProbeWhenSearchHashTableTime: 7.643ms - ProjectionTime: 1.285ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s129ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 51 - BytesReceived: 0.00 - CloseTime: 13.879us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 497.550us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.96 MB - MemoryUsage: - Blocks: 4.96 MB - PeakMemoryUsage: 4.96 MB - OpenTime: 18.997us - ProjectionTime: 0ns - RowsProduced: 208.332K (208332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s585ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 11.733ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.655ms - CloseTime: 15.451us - GetBlockTime: 739.81us - OpenTime: 3.26us - PrepareTime: 54.831us - SinkTime: 10.799ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.678ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.767ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.173us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.287ms - BuildTableInsertTime: 1.685ms - BuildTableTime: 1.690ms - CloseTime: 0ns - ExecTime: 10.812ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 7.27 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.92 MB - OpenTime: 24.406us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.622us - RuntimeFilterComputeTime: 709.881us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 12.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 737.584us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.99 MB - MemoryUsage: - Blocks: 4.13 MB - PeakMemoryUsage: 4.13 MB - OpenTime: 12.286us - ProjectionTime: 0ns - RowsProduced: 107.403K (107403) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s732ms PipelineXTask (index=7):(Active: 127.559ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 127.459ms - CloseTime: 30.261us - GetBlockTime: 27.373ms - OpenTime: 2.128us - PrepareTime: 61.802us - SinkTime: 99.484ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.452ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 278.145ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 73.898us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.188ms - BuildTableInsertTime: 23.906ms - BuildTableTime: 23.913ms - CloseTime: 0ns - ExecTime: 99.427ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 53.18 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 72.91 MB - OpenTime: 14.189us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.637us - RuntimeFilterComputeTime: 4.942ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 11.409us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.284ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 84.18 MB - MemoryUsage: - Blocks: 19.97 MB - PeakMemoryUsage: 19.97 MB - OpenTime: 7.574us - ProjectionTime: 0ns - RowsProduced: 785.358K (785358) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s556ms PipelineXTask (index=11):(Active: 14.921ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.847ms - CloseTime: 13.396us - GetBlockTime: 814.20us - OpenTime: 2.157us - PrepareTime: 51.848us - SinkTime: 13.867ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.175ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.840ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.154us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.339ms - BuildTableInsertTime: 2.650ms - BuildTableTime: 2.654ms - CloseTime: 0ns - ExecTime: 13.870ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 7.20 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.83 MB - OpenTime: 18.233us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.417us - RuntimeFilterComputeTime: 735.523us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 11.100us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 809.389us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.96 MB - MemoryUsage: - Blocks: 2.97 MB - PeakMemoryUsage: 2.97 MB - OpenTime: 9.636us - ProjectionTime: 0ns - RowsProduced: 106.34K (106340) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s716ms PipelineXTask (index=15):(Active: 22.606ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.538ms - CloseTime: 15.612us - GetBlockTime: 704.560us - OpenTime: 1.988us - PrepareTime: 44.77us - SinkTime: 21.713ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.562ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.41ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.175us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.904ms - BuildTableInsertTime: 1.936ms - BuildTableTime: 1.942ms - CloseTime: 0ns - ExecTime: 21.713ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 7.27 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.93 MB - OpenTime: 14.74us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.73us - RuntimeFilterComputeTime: 720.595us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 11.449us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 708.234us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.07 MB - MemoryUsage: - Blocks: 3.34 MB - PeakMemoryUsage: 3.34 MB - OpenTime: 16.476us - ProjectionTime: 0ns - RowsProduced: 107.445K (107445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s708ms PipelineXTask (index=19):(Active: 11.862ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.774ms - CloseTime: 19.591us - GetBlockTime: 808.583us - OpenTime: 2.995us - PrepareTime: 60.334us - SinkTime: 10.894ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.832ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 380.588ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.729us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.947ms - BuildTableInsertTime: 3.16ms - BuildTableTime: 3.22ms - CloseTime: 0ns - ExecTime: 10.909ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 22.942us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.510us - RuntimeFilterComputeTime: 803.307us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 30 - BytesReceived: 0.00 - CloseTime: 14.690us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 828.30us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.99 MB - MemoryUsage: - Blocks: 11.99 MB - PeakMemoryUsage: 11.99 MB - OpenTime: 15.991us - ProjectionTime: 0ns - RowsProduced: 106.81K (106810) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s561ms PipelineXTask (index=23):(Active: 11.928ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.860ms - CloseTime: 19.703us - GetBlockTime: 869.755us - OpenTime: 1.908us - PrepareTime: 41.492us - SinkTime: 10.852ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 289.875ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.828us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.576ms - BuildTableInsertTime: 2.416ms - BuildTableTime: 2.421ms - CloseTime: 0ns - ExecTime: 10.848ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 7.30 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.96 MB - OpenTime: 11.109us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.399us - RuntimeFilterComputeTime: 713.427us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 16.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 872.984us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.89 MB - MemoryUsage: - Blocks: 3.07 MB - PeakMemoryUsage: 3.07 MB - OpenTime: 10.973us - ProjectionTime: 0ns - RowsProduced: 107.77K (107770) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s692ms PipelineXTask (index=27):(Active: 25.247ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 25.178ms - CloseTime: 18.896us - GetBlockTime: 672.380us - OpenTime: 2.410us - PrepareTime: 42.983us - SinkTime: 24.404ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 206.432ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.327us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.440ms - BuildTableInsertTime: 3.112ms - BuildTableTime: 3.118ms - CloseTime: 0ns - ExecTime: 24.406ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 7.21 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.85 MB - OpenTime: 19.223us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.378us - RuntimeFilterComputeTime: 726.505us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 15.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 678.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.86 MB - MemoryUsage: - Blocks: 4.70 MB - PeakMemoryUsage: 4.70 MB - OpenTime: 10.263us - ProjectionTime: 0ns - RowsProduced: 106.53K (106530) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s715ms PipelineXTask (index=31):(Active: 10.895ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.829ms - CloseTime: 14.908us - GetBlockTime: 667.722us - OpenTime: 1.955us - PrepareTime: 45.140us - SinkTime: 10.41ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.804ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 204.298ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.820us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.825ms - BuildTableInsertTime: 2.348ms - BuildTableTime: 2.353ms - CloseTime: 0ns - ExecTime: 10.49ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 7.29 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.95 MB - OpenTime: 17.524us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.283us - RuntimeFilterComputeTime: 751.776us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 11.554us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 659.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.33 MB - MemoryUsage: - Blocks: 4.46 MB - PeakMemoryUsage: 4.46 MB - OpenTime: 10.501us - ProjectionTime: 0ns - RowsProduced: 107.657K (107657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s730ms PipelineXTask (index=35):(Active: 9.262ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.182ms - CloseTime: 18.579us - GetBlockTime: 735.531us - OpenTime: 2.490us - PrepareTime: 53.347us - SinkTime: 8.359ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.221ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.146ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.276us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.69ms - BuildTableInsertTime: 2.437ms - BuildTableTime: 2.442ms - CloseTime: 0ns - ExecTime: 8.361ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 7.24 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.89 MB - OpenTime: 9.257us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 26.96us - RuntimeFilterComputeTime: 727.605us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 14.877us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 757.674us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.82 MB - MemoryUsage: - Blocks: 4.54 MB - PeakMemoryUsage: 4.54 MB - OpenTime: 20.728us - ProjectionTime: 0ns - RowsProduced: 106.993K (106993) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s687ms PipelineXTask (index=39):(Active: 11.232ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.127ms - CloseTime: 16.907us - GetBlockTime: 897.382us - OpenTime: 2.262us - PrepareTime: 79.471us - SinkTime: 10.127ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.56ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 264.542ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.225us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.45ms - BuildTableInsertTime: 2.201ms - BuildTableTime: 2.205ms - CloseTime: 0ns - ExecTime: 10.147ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 36.27us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.863us - RuntimeFilterComputeTime: 729.801us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 13.37us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 913.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.16 MB - MemoryUsage: - Blocks: 4.41 MB - PeakMemoryUsage: 4.41 MB - OpenTime: 23.441us - ProjectionTime: 0ns - RowsProduced: 106.76K (106760) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s683ms PipelineXTask (index=43):(Active: 11.950ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.876ms - CloseTime: 16.229us - GetBlockTime: 791.144us - OpenTime: 1.888us - PrepareTime: 52.398us - SinkTime: 10.968ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.916ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 496.856ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.935us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.470ms - BuildTableInsertTime: 2.490ms - BuildTableTime: 2.495ms - CloseTime: 0ns - ExecTime: 10.978ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 7.26 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.91 MB - OpenTime: 21.816us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 178.69us - RuntimeFilterComputeTime: 709.681us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 12.761us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 790.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.10 MB - MemoryUsage: - Blocks: 4.50 MB - PeakMemoryUsage: 4.50 MB - OpenTime: 9.364us - ProjectionTime: 0ns - RowsProduced: 107.2K (107200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s627ms PipelineXTask (index=47):(Active: 11.340ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.278ms - CloseTime: 15.343us - GetBlockTime: 691.983us - OpenTime: 1.891us - PrepareTime: 38.254us - SinkTime: 10.467ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.269ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 273.605ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.730us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.512ms - BuildTableInsertTime: 2.76ms - BuildTableTime: 2.81ms - CloseTime: 0ns - ExecTime: 10.466ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 9.650us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.81us - RuntimeFilterComputeTime: 748.436us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 31 - BytesReceived: 0.00 - CloseTime: 12.16us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 694.785us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.35 MB - MemoryUsage: - Blocks: 3.03 MB - PeakMemoryUsage: 3.03 MB - OpenTime: 14.268us - ProjectionTime: 0ns - RowsProduced: 106.774K (106774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s713ms Fragment 146: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 127.343ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 126.999ms - CloseTime: 48.569us - GetBlockTime: 2.332ms - OpenTime: 75.522us - PrepareTime: 209.800us - SinkTime: 123.25ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 9 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 127.238ms - WaitBfTime: 1s429ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 783.317ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 489 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.587us - CompressTime: 0ns - ExecTime: 122.914ms - InputRows: 2.061147M (2061147) - LocalBytesSent: 53.07 MB - LocalSendTime: 4.641ms - LocalSentRows: 2.061147M (2061147) - MemoryUsage: - PeakMemoryUsage: 99.67 MB - MergeBlockTime: 0ns - OpenTime: 71.922us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.061147M (2061147) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 71.457ms - SplitBlockHashComputeTime: 31.355ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 3s139ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 6, type = minmax), RuntimeFilter: (id = 7, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.583us - BlocksProduced: 514 - CloseTime: 32.645us - ExecTime: 203.654ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 159.244us - ProcessConjunctTime: 14.365us - ProjectionTime: 0ns - RowsProduced: 2.061147M (2061147) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 72.267ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 201.276ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 6, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 85.604K (85604) - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 7, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 84.325K (84325) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [123.437ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [72.267ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 116.618ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 405.93us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.755us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.591ms - ScannerCtxSchedTime: 72.256ms - ScannerFilterTime: 5.798ms - ScannerGetBlockTime: 117.486ms - ScannerInitTime: 38.259us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.108us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.712us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 41.397us - BlockLoadTime: 116.979ms - BlocksLoad: 516 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.542K (1542) - FirstReadSeekTime: 241.831us - FirstReadTime: 115.306ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.387us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 113.748us - OutputIndexResultColumnTimer: 31.581us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 183.353ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 182.833ms - CloseTime: 57.914us - GetBlockTime: 2.576ms - OpenTime: 98.179us - PrepareTime: 352.647us - SinkTime: 178.663ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 162.364ms - WaitBfTime: 1s107ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 565.246ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 489 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.716us - CompressTime: 0ns - ExecTime: 178.741ms - InputRows: 2.065124M (2065124) - LocalBytesSent: 53.18 MB - LocalSendTime: 4.978ms - LocalSentRows: 2.065124M (2065124) - MemoryUsage: - PeakMemoryUsage: 100.44 MB - MergeBlockTime: 0ns - OpenTime: 218.814us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.065124M (2065124) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 122.574ms - SplitBlockHashComputeTime: 32.517ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 3s139ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 6, type = minmax), RuntimeFilter: (id = 7, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.732us - BlocksProduced: 514 - CloseTime: 38.532us - ExecTime: 255.469ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 158.985us - ProcessConjunctTime: 21.455us - ProjectionTime: 0ns - RowsProduced: 2.065124M (2065124) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 115.972ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.858ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 6, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 85.604K (85604) - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 7, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 84.325K (84325) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [133.183ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [115.972ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 121.994ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 252.802us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.730us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 137.5ms - ScannerCtxSchedTime: 115.962ms - ScannerFilterTime: 9.496ms - ScannerGetBlockTime: 123.427ms - ScannerInitTime: 45.612us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 924ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.842us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 30.85us - BlockLoadTime: 122.154ms - BlocksLoad: 516 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.542K (1542) - FirstReadSeekTime: 466.306us - FirstReadTime: 119.199ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.218us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 177.345us - OutputIndexResultColumnTimer: 79.223us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 169.116ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 168.722ms - CloseTime: 70.595us - GetBlockTime: 2.600ms - OpenTime: 108.73us - PrepareTime: 203.380us - SinkTime: 164.343ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 10 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 143.112ms - WaitBfTime: 1s8ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 599.739ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 489 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.294us - CompressTime: 0ns - ExecTime: 164.256ms - InputRows: 2.065884M (2065884) - LocalBytesSent: 53.19 MB - LocalSendTime: 4.394ms - LocalSentRows: 2.065884M (2065884) - MemoryUsage: - PeakMemoryUsage: 100.00 MB - MergeBlockTime: 0ns - OpenTime: 73.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.065884M (2065884) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 98.142ms - SplitBlockHashComputeTime: 44.766ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 3s139ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 6, type = minmax), RuntimeFilter: (id = 7, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.247us - BlocksProduced: 515 - CloseTime: 49.902us - ExecTime: 290.381ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 169.953us - ProcessConjunctTime: 27.4us - ProjectionTime: 0ns - RowsProduced: 2.065884M (2065884) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 143.619ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 287.728ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 6, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 85.604K (85604) - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 7, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 84.325K (84325) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [140.044ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [143.619ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 132.720ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 419.513us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.119us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.202ms - ScannerCtxSchedTime: 143.610ms - ScannerFilterTime: 6.93ms - ScannerGetBlockTime: 133.747ms - ScannerInitTime: 54.668us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.52us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.887us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 52.397us - BlockLoadTime: 133.69ms - BlocksLoad: 517 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.545K (1545) - FirstReadSeekTime: 286.19us - FirstReadTime: 130.933ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.445us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 123.533us - OutputIndexResultColumnTimer: 53.852us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 151.961ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 151.464ms - CloseTime: 52.621us - GetBlockTime: 2.501ms - OpenTime: 143.848us - PrepareTime: 290.920us - SinkTime: 147.235ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 9 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 142.707ms - WaitBfTime: 1s80ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 763.273ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 489 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.422us - CompressTime: 0ns - ExecTime: 147.150ms - InputRows: 2.065846M (2065846) - LocalBytesSent: 53.19 MB - LocalSendTime: 4.124ms - LocalSentRows: 2.065846M (2065846) - MemoryUsage: - PeakMemoryUsage: 100.54 MB - MergeBlockTime: 0ns - OpenTime: 53.636us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.065846M (2065846) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 96.481ms - SplitBlockHashComputeTime: 29.493ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 3s139ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : RuntimeFilter: (id = 6, type = minmax), RuntimeFilter: (id = 7, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.801us - BlocksProduced: 515 - CloseTime: 37.937us - ExecTime: 222.386ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 322.807us - ProcessConjunctTime: 36.773us - ProjectionTime: 0ns - RowsProduced: 2.065846M (2065846) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 118.668ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 219.740ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 6, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 85.604K (85604) - expr_input_rows: 1.658112M (1658112) RuntimeFilter: (id = 7, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 84.325K (84325) - expr_input_rows: 829.056K (829056) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [97.511ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [118.668ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 89.715ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 290.724us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.732us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 101.33ms - ScannerCtxSchedTime: 118.661ms - ScannerFilterTime: 6.468ms - ScannerGetBlockTime: 90.842ms - ScannerInitTime: 80.171us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.126us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.929us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 30.809us - BlockLoadTime: 90.50ms - BlocksLoad: 517 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.545K (1545) - FirstReadSeekTime: 275.928us - FirstReadTime: 87.961ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.127us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 133.509us - OutputIndexResultColumnTimer: 47.178us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 147: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 579.910ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 579.138ms - CloseTime: 138.280us - GetBlockTime: 7.529ms - OpenTime: 356.612us - PrepareTime: 263.395us - SinkTime: 568.67ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 15 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 24 - NumScheduleTimes: 25 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 414.683ms - WaitBfTime: 1s440ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s374ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.64us - CompressTime: 0ns - ExecTime: 567.801ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 205.02 MB - LocalSendTime: 22.408ms - LocalSentRows: 4.799089M (4799089) - MemoryUsage: - PeakMemoryUsage: 306.05 MB - MergeBlockTime: 0ns - OpenTime: 82.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 439.746ms - SplitBlockHashComputeTime: 48.382ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.584us - BlocksProduced: 1.183K (1183) - CloseTime: 126.369us - ExecTime: 139.986ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 463.836us - ProcessConjunctTime: 98.850us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 81.249ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.223ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [309.977ms, 282.543ms, 97.681ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [39.574ms, 30.628ms, 11.045ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 675.916ms - MemoryUsage: - FreeBlocks: 32.77 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.763ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 55.435us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 429.792ms - ScannerCtxSchedTime: 81.210ms - ScannerFilterTime: 11.343ms - ScannerGetBlockTime: 678.338ms - ScannerInitTime: 164.442us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 27 SegmentIterator: - BitmapIndexFilterTimer: 5.96us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.874us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 35.49us - BlockInitTime: 253.81us - BlockLoadTime: 678.925ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 1.497K (1497) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 5.915K (5915) - FirstReadSeekTime: 2.676ms - FirstReadTime: 671.820ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.95us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 449.310us - OutputIndexResultColumnTimer: 119.919us - RawRowsRead: 4.799089M (4799089) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.497K (1497) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 444.665ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 444.133ms - CloseTime: 120.707us - GetBlockTime: 7.23ms - OpenTime: 207.689us - PrepareTime: 188.306us - SinkTime: 433.841ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 11 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 405.42ms - WaitBfTime: 1s440ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s640ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.606us - CompressTime: 0ns - ExecTime: 433.613ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 205.00 MB - LocalSendTime: 11.9ms - LocalSentRows: 4.79901M (4799010) - MemoryUsage: - PeakMemoryUsage: 304.49 MB - MergeBlockTime: 0ns - OpenTime: 82.875us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 326.436ms - SplitBlockHashComputeTime: 48.138ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.123us - BlocksProduced: 1.182K (1182) - CloseTime: 108.243us - ExecTime: 155.232ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 269.557us - ProcessConjunctTime: 35.268us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 53.161ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.135ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [276.869ms, 258.257ms, 116.178ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [19.391ms, 22.095ms, 11.673ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 636.782ms - MemoryUsage: - FreeBlocks: 32.20 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.960ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 51.216us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 428.972ms - ScannerCtxSchedTime: 53.122ms - ScannerFilterTime: 11.607ms - ScannerGetBlockTime: 639.197ms - ScannerInitTime: 112.608us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 27 SegmentIterator: - BitmapIndexFilterTimer: 3.570us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.842us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 38.423us - BlockInitTime: 302.589us - BlockLoadTime: 639.982ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 1.482K (1482) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 5.91K (5910) - FirstReadSeekTime: 2.727ms - FirstReadTime: 632.676ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.494us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 412.766us - OutputIndexResultColumnTimer: 130.642us - RawRowsRead: 4.79901M (4799010) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.482K (1482) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 372.98ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 371.531ms - CloseTime: 117.43us - GetBlockTime: 5.384ms - OpenTime: 198.304us - PrepareTime: 238.69us - SinkTime: 363.405ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 17 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 294.926ms - WaitBfTime: 1s140ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s528ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 831 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.980us - CompressTime: 0ns - ExecTime: 363.210ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 129.65 MB - LocalSendTime: 8.290ms - LocalSentRows: 3.472164M (3472164) - MemoryUsage: - PeakMemoryUsage: 191.67 MB - MergeBlockTime: 0ns - OpenTime: 61.195us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 258.639ms - SplitBlockHashComputeTime: 55.621ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.420us - BlocksProduced: 856 - CloseTime: 103.730us - ExecTime: 170.190ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 257.795us - ProcessConjunctTime: 39.40us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 208.419ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 164.711ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [124.563ms, 131.084ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [105.709ms, 102.709ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 245.443ms - MemoryUsage: - FreeBlocks: 20.47 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.729ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 39.709us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 244.447ms - ScannerCtxSchedTime: 208.397ms - ScannerFilterTime: 6.939ms - ScannerGetBlockTime: 248.340ms - ScannerInitTime: 125.649us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 2.775us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.378us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 41.215us - BlockInitTime: 249.773us - BlockLoadTime: 247.669ms - BlocksLoad: 865 - CachedPagesNum: 652 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.285K (4285) - FirstReadSeekTime: 2.19ms - FirstReadTime: 229.391ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.946us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 13.318ms - OutputIndexResultColumnTimer: 98.502us - RawRowsRead: 3.472164M (3472164) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 652 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 544.786ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 544.165ms - CloseTime: 121.857us - GetBlockTime: 5.723ms - OpenTime: 298.334us - PrepareTime: 192.41us - SinkTime: 535.86ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 14 - NumScheduleTimes: 17 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 369.49ms - WaitBfTime: 1s121ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s2ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 829 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.882us - CompressTime: 0ns - ExecTime: 534.868ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 129.65 MB - LocalSendTime: 9.716ms - LocalSentRows: 3.472126M (3472126) - MemoryUsage: - PeakMemoryUsage: 192.97 MB - MergeBlockTime: 0ns - OpenTime: 76.515us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 432.788ms - SplitBlockHashComputeTime: 55.984ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 49.709ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 5.286ms - WaitForLocalExchangeBuffer7: 21.84ms - WaitForLocalExchangeBuffer8: 84.376ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.255us - BlocksProduced: 856 - CloseTime: 106.445us - ExecTime: 158.572ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 361.99us - ProcessConjunctTime: 62.644us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 276.692ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 152.701ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [160.482ms, 184.026ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [169.536ms, 107.156ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 336.136ms - MemoryUsage: - FreeBlocks: 20.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.964ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42.163us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 220.545ms - ScannerCtxSchedTime: 276.676ms - ScannerFilterTime: 5.350ms - ScannerGetBlockTime: 338.811ms - ScannerInitTime: 201.106us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 2.702us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.381us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 34.237us - BlockInitTime: 199.385us - BlockLoadTime: 338.334ms - BlocksLoad: 863 - CachedPagesNum: 646 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.29K (4290) - FirstReadSeekTime: 2.397ms - FirstReadTime: 332.872ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.417us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 282.946us - OutputIndexResultColumnTimer: 102.59us - RawRowsRead: 3.472126M (3472126) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 646 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 286.37ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 285.526ms - CloseTime: 75.264us - GetBlockTime: 2.838ms - OpenTime: 241.926us - PrepareTime: 183.218us - SinkTime: 280.791ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 10 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 213.575ms - WaitBfTime: 1s339ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2s37ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 543 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.896us - CompressTime: 0ns - ExecTime: 280.699ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 112.96 MB - LocalSendTime: 6.388ms - LocalSentRows: 2.259795M (2259795) - MemoryUsage: - PeakMemoryUsage: 163.11 MB - MergeBlockTime: 0ns - OpenTime: 60.649us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 233.785ms - SplitBlockHashComputeTime: 21.86ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.600us - BlocksProduced: 557 - CloseTime: 60.842us - ExecTime: 273.116ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 311.605us - ProcessConjunctTime: 44.822us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 19.197ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 270.66ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [251.184ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [19.197ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 243.275ms - MemoryUsage: - FreeBlocks: 11.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.36ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.420us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 153.93ms - ScannerCtxSchedTime: 19.167ms - ScannerFilterTime: 6.503ms - ScannerGetBlockTime: 244.445ms - ScannerInitTime: 151.484us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 745ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.531us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.882us - BlockInitTime: 57.248us - BlockLoadTime: 243.995ms - BlocksLoad: 558 - CachedPagesNum: 901 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.785K (2785) - FirstReadSeekTime: 1.152ms - FirstReadTime: 240.697ms - IOTimer: 0ns - InvertedIndexFilterTime: 798ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 175.290us - OutputIndexResultColumnTimer: 63.62us - RawRowsRead: 2.259795M (2259795) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 901 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 310.312ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 309.892ms - CloseTime: 64.750us - GetBlockTime: 2.929ms - OpenTime: 99.359us - PrepareTime: 242.307us - SinkTime: 305.222ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 12 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.190ms - WaitBfTime: 1s137ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s851ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 542 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.782us - CompressTime: 0ns - ExecTime: 305.111ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 112.96 MB - LocalSendTime: 5.316ms - LocalSentRows: 2.259785M (2259785) - MemoryUsage: - PeakMemoryUsage: 160.93 MB - MergeBlockTime: 0ns - OpenTime: 59.508us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 258.127ms - SplitBlockHashComputeTime: 22.809ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.310us - BlocksProduced: 557 - CloseTime: 52.387us - ExecTime: 263.10ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 228.443us - ProcessConjunctTime: 23.147us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.124ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 259.973ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [135.199ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [125.124ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 128.403ms - MemoryUsage: - FreeBlocks: 11.48 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.250ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.612us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.670ms - ScannerCtxSchedTime: 125.103ms - ScannerFilterTime: 5.552ms - ScannerGetBlockTime: 129.434ms - ScannerInitTime: 41.643us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 857ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.792us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.662us - BlockInitTime: 65.513us - BlockLoadTime: 129.372ms - BlocksLoad: 558 - CachedPagesNum: 901 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.785K (2785) - FirstReadSeekTime: 1.12ms - FirstReadTime: 126.422ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.86us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 176.121us - OutputIndexResultColumnTimer: 51.52us - RawRowsRead: 2.259785M (2259785) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 901 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 143.93ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 142.764ms - CloseTime: 70.819us - GetBlockTime: 1.409ms - OpenTime: 72.986us - PrepareTime: 176.237us - SinkTime: 140.551ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.685ms - WaitBfTime: 1s136ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s493ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.278us - CompressTime: 0ns - ExecTime: 140.565ms - InputRows: 876.719K (876719) - LocalBytesSent: 45.57 MB - LocalSendTime: 2.186ms - LocalSentRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 66.39 MB - MergeBlockTime: 0ns - OpenTime: 75.829us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.719K (876719) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 121.846ms - SplitBlockHashComputeTime: 8.193ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 49.709ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 5.286ms - WaitForLocalExchangeBuffer7: 21.84ms - WaitForLocalExchangeBuffer8: 84.376ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.926us - BlocksProduced: 216 - CloseTime: 55.333us - ExecTime: 184.758ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 131.376us - ProcessConjunctTime: 16.211us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.773ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.227ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [72.330ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [109.773ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 68.481ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.191ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.521us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.778ms - ScannerCtxSchedTime: 109.762ms - ScannerFilterTime: 3.249ms - ScannerGetBlockTime: 68.986ms - ScannerInitTime: 28.674us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 357ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.600us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 13.289us - BlockInitTime: 41.665us - BlockLoadTime: 69.493ms - BlocksLoad: 217 - CachedPagesNum: 375 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.08K (1080) - FirstReadSeekTime: 803.480us - FirstReadTime: 68.92ms - IOTimer: 0ns - InvertedIndexFilterTime: 615ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 72.206us - OutputIndexResultColumnTimer: 28.481us - RawRowsRead: 876.719K (876719) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 375 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 187.14ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 184.647ms - CloseTime: 65.131us - GetBlockTime: 1.299ms - OpenTime: 2.109ms - PrepareTime: 183.72us - SinkTime: 180.497ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 12 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.743ms - WaitBfTime: 1s136ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s768ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.434us - CompressTime: 0ns - ExecTime: 180.512ms - InputRows: 876.727K (876727) - LocalBytesSent: 45.53 MB - LocalSendTime: 2.310ms - LocalSentRows: 876.727K (876727) - MemoryUsage: - PeakMemoryUsage: 67.90 MB - MergeBlockTime: 0ns - OpenTime: 73.409us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 876.727K (876727) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 159.928ms - SplitBlockHashComputeTime: 9.694ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.40us - BlocksProduced: 216 - CloseTime: 48.307us - ExecTime: 212.902ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 2.166ms - ProcessConjunctTime: 17.483us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.851ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.463ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [98.082ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [109.851ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 80.135ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 978.388us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.730us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 88.882ms - ScannerCtxSchedTime: 109.842ms - ScannerFilterTime: 17.275ms - ScannerGetBlockTime: 80.670ms - ScannerInitTime: 31.530us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 459ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.438us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 13.411us - BlockInitTime: 50.164us - BlockLoadTime: 80.884ms - BlocksLoad: 217 - CachedPagesNum: 374 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.08K (1080) - FirstReadSeekTime: 483.209us - FirstReadTime: 79.350ms - IOTimer: 0ns - InvertedIndexFilterTime: 736ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 78.443us - OutputIndexResultColumnTimer: 28.913us - RawRowsRead: 876.727K (876727) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 374 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 284.146ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 283.620ms - CloseTime: 107.88us - GetBlockTime: 5.69ms - OpenTime: 102.987us - PrepareTime: 305.88us - SinkTime: 276.232ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 15 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 267.452ms - WaitBfTime: 1s138ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s402ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 809 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.426us - CompressTime: 0ns - ExecTime: 276.173ms - InputRows: 3.39021M (3390210) - LocalBytesSent: 129.54 MB - LocalSendTime: 7.590ms - LocalSentRows: 3.39021M (3390210) - MemoryUsage: - PeakMemoryUsage: 207.68 MB - MergeBlockTime: 0ns - OpenTime: 168.370us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.39021M (3390210) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 208.554ms - SplitBlockHashComputeTime: 33.856ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.772us - BlocksProduced: 836 - CloseTime: 91.620us - ExecTime: 276.499ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 186.92us - ProcessConjunctTime: 23.909us - ProjectionTime: 0ns - RowsProduced: 3.39021M (3390210) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 226.223ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 271.366ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [278.766ms, 130.287ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [115.324ms, 110.899ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 398.957ms - MemoryUsage: - FreeBlocks: 20.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.194ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.363us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 284.253ms - ScannerCtxSchedTime: 226.202ms - ScannerFilterTime: 8.231ms - ScannerGetBlockTime: 400.521ms - ScannerInitTime: 53.695us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 2.133us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.724us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 19.582us - BlockInitTime: 141.847us - BlockLoadTime: 400.687ms - BlocksLoad: 838 - CachedPagesNum: 842 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.18K (4180) - FirstReadSeekTime: 1.743ms - FirstReadTime: 395.872ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.673us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 310.156us - OutputIndexResultColumnTimer: 87.685us - RawRowsRead: 3.39021M (3390210) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 842 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 282.800ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 282.441ms - CloseTime: 99.160us - GetBlockTime: 4.78ms - OpenTime: 84.853us - PrepareTime: 165.947us - SinkTime: 276.173ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 14 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 258.996ms - WaitBfTime: 1s138ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s562ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 807 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.336us - CompressTime: 0ns - ExecTime: 276.13ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 129.54 MB - LocalSendTime: 6.844ms - LocalSentRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 208.12 MB - MergeBlockTime: 0ns - OpenTime: 66.35us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 213.212ms - SplitBlockHashComputeTime: 31.47ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.840us - BlocksProduced: 836 - CloseTime: 83.906us - ExecTime: 212.708ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 135.461us - ProcessConjunctTime: 26.442us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 216.295ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 208.635ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [246.865ms, 115.227ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [108.359ms, 107.936ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 349.376ms - MemoryUsage: - FreeBlocks: 20.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.143ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38.130us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 327.214ms - ScannerCtxSchedTime: 216.274ms - ScannerFilterTime: 10.514ms - ScannerGetBlockTime: 351.187ms - ScannerInitTime: 39.886us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 2.172us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.253us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.213us - BlockInitTime: 116.719us - BlockLoadTime: 350.965ms - BlocksLoad: 838 - CachedPagesNum: 843 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.18K (4180) - FirstReadSeekTime: 1.636ms - FirstReadTime: 345.578ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.296us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 312.117us - OutputIndexResultColumnTimer: 116.463us - RawRowsRead: 3.389621M (3389621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 843 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 561.776ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 561.381ms - CloseTime: 116.419us - GetBlockTime: 34.269ms - OpenTime: 95.660us - PrepareTime: 173.174us - SinkTime: 523.564ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 15 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 25 - NumScheduleTimes: 27 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 449.118ms - WaitBfTime: 1s122ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s257ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.875us - CompressTime: 0ns - ExecTime: 523.268ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 191.19 MB - LocalSendTime: 11.613ms - LocalSentRows: 4.97661M (4976610) - MemoryUsage: - PeakMemoryUsage: 287.10 MB - MergeBlockTime: 0ns - OpenTime: 66.925us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 418.92ms - SplitBlockHashComputeTime: 52.990ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.837us - BlocksProduced: 1.227K (1227) - CloseTime: 99.77us - ExecTime: 212.388ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 155.379us - ProcessConjunctTime: 20.475us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 360.596ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 178.202ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [268.568ms, 287.300ms, 89.137ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [132.007ms, 118.825ms, 109.763ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 630.355ms - MemoryUsage: - FreeBlocks: 30.36 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.90ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52.337us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 463.661ms - ScannerCtxSchedTime: 360.571ms - ScannerFilterTime: 9.275ms - ScannerGetBlockTime: 635.205ms - ScannerInitTime: 54.155us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 22 SegmentIterator: - BitmapIndexFilterTimer: 3.884us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.648us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 52.510us - BlockInitTime: 285.918us - BlockLoadTime: 634.833ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 1.312K (1312) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 6.135K (6135) - FirstReadSeekTime: 3.324ms - FirstReadTime: 627.393ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.614us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 460.376us - OutputIndexResultColumnTimer: 157.329us - RawRowsRead: 4.97661M (4976610) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.312K (1312) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 519.304ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 518.768ms - CloseTime: 199.967us - GetBlockTime: 33.721ms - OpenTime: 129.752us - PrepareTime: 193.901us - SinkTime: 481.664ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 19 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 27 - NumScheduleTimes: 28 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 393.260ms - WaitBfTime: 1s138ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s429ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.736us - CompressTime: 0ns - ExecTime: 481.407ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 191.17 MB - LocalSendTime: 11.464ms - LocalSentRows: 4.976137M (4976137) - MemoryUsage: - PeakMemoryUsage: 287.40 MB - MergeBlockTime: 0ns - OpenTime: 86.69us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 372.441ms - SplitBlockHashComputeTime: 53.637ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 63.863ms - WaitForLocalExchangeBuffer1: 377.757ms - WaitForLocalExchangeBuffer10: 3.134ms - WaitForLocalExchangeBuffer11: 18.362ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 42.601ms - WaitForLocalExchangeBuffer4: 1.621ms - WaitForLocalExchangeBuffer5: 1s138ms - WaitForLocalExchangeBuffer6: 12.574ms - WaitForLocalExchangeBuffer7: 23.435ms - WaitForLocalExchangeBuffer8: 108.529ms - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=12. table name = DIM_CUSTOMER): - RuntimeFilters: : RuntimeFilter: (id = 4, type = minmax), RuntimeFilter: (id = 5, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.642us - BlocksProduced: 1.228K (1228) - CloseTime: 180.866us - ExecTime: 197.21ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 187.381us - ProcessConjunctTime: 21.148us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 344.951ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.244ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 4.974336M (4974336) RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 1 - expr_filtered_rows: 0 - expr_input_rows: 2.487168M (2487168) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [235.161ms, 184.883ms, 130.768ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [112.989ms, 116.771ms, 115.190ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 531.81ms - MemoryUsage: - FreeBlocks: 30.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.727ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 54.903us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 444.5ms - ScannerCtxSchedTime: 344.925ms - ScannerFilterTime: 14.168ms - ScannerGetBlockTime: 536.131ms - ScannerInitTime: 80.274us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 22 SegmentIterator: - BitmapIndexFilterTimer: 4.594us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 20.132us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 69.668us - BlockInitTime: 378.685us - BlockLoadTime: 535.402ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 1.331K (1331) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 6.14K (6140) - FirstReadSeekTime: 2.541ms - FirstReadTime: 528.366ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.542us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 380.28us - OutputIndexResultColumnTimer: 144.369us - RawRowsRead: 4.976137M (4976137) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.331K (1331) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 148: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 69.126ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.725ms - CloseTime: 35.267us - GetBlockTime: 1.308ms - OpenTime: 134.750us - PrepareTime: 212.652us - SinkTime: 66.706ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.390ms - WaitBfTime: 1s36ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 492.522ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.876us - CompressTime: 0ns - ExecTime: 66.735ms - InputRows: 835.868K (835868) - LocalBytesSent: 11.16 MB - LocalSendTime: 1.334ms - LocalSentRows: 835.868K (835868) - MemoryUsage: - PeakMemoryUsage: 20.32 MB - MergeBlockTime: 0ns - OpenTime: 77.578us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 835.868K (835868) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 41.697ms - SplitBlockHashComputeTime: 17.298ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=9. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : RuntimeFilter: (id = 2, type = minmax), RuntimeFilter: (id = 3, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15145] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.851us - BlocksProduced: 206 - CloseTime: 21.539us - ExecTime: 252.752ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 221.672us - ProcessConjunctTime: 34.363us - ProjectionTime: 0ns - RowsProduced: 835.868K (835868) - RowsRead: 835.868K (835868) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 136.331ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 251.252ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 2, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 3, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, VIP_CUS_STATUS] - PerScannerRunningTime: [109.237ms, ] - PerScannerRowsRead: [835.87K, ] - PerScannerWaitTime: [136.331ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 22.998ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 461.575us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.995us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.449ms - ScannerCtxSchedTime: 136.326ms - ScannerFilterTime: 122.153us - ScannerGetBlockTime: 23.393ms - ScannerInitTime: 52.519us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 503ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.558us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.92us - BlockInitTime: 71.520us - BlockLoadTime: 23.224ms - BlocksLoad: 207 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 119.472us - FirstReadTime: 22.294ms - IOTimer: 0ns - InvertedIndexFilterTime: 923ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 46.522us - OutputIndexResultColumnTimer: 21.880us - RawRowsRead: 835.868K (835868) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 107 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 42.12ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.488ms - CloseTime: 40.264us - GetBlockTime: 1.241ms - OpenTime: 189.389us - PrepareTime: 284.759us - SinkTime: 39.541ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.599ms - WaitBfTime: 1s564ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 889.184ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.345us - CompressTime: 0ns - ExecTime: 39.671ms - InputRows: 834.234K (834234) - LocalBytesSent: 11.14 MB - LocalSendTime: 1.272ms - LocalSentRows: 834.234K (834234) - MemoryUsage: - PeakMemoryUsage: 19.59 MB - MergeBlockTime: 0ns - OpenTime: 172.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 834.234K (834234) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 21.854ms - SplitBlockHashComputeTime: 10.15ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=9. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : RuntimeFilter: (id = 2, type = minmax), RuntimeFilter: (id = 3, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15147] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.241us - BlocksProduced: 206 - CloseTime: 24.628us - ExecTime: 38.262ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 246.758us - ProcessConjunctTime: 43.828us - ProjectionTime: 0ns - RowsProduced: 834.234K (834234) - RowsRead: 834.234K (834234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.910ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 36.801ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 2, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 3, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, VIP_CUS_STATUS] - PerScannerRunningTime: [29.168ms, ] - PerScannerRowsRead: [834.23K, ] - PerScannerWaitTime: [1.910ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 28.665ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 311.756us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.397us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.641ms - ScannerCtxSchedTime: 1.907ms - ScannerFilterTime: 96.957us - ScannerGetBlockTime: 29.9ms - ScannerInitTime: 106.919us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 596ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.620us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.227us - BlockInitTime: 54.306us - BlockLoadTime: 28.798ms - BlocksLoad: 207 - CachedPagesNum: 106 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 100.622us - FirstReadTime: 28.57ms - IOTimer: 0ns - InvertedIndexFilterTime: 659ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 43.856us - OutputIndexResultColumnTimer: 16.448us - RawRowsRead: 834.234K (834234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 106 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 71.456ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 70.957ms - CloseTime: 45.228us - GetBlockTime: 1.283ms - OpenTime: 258.565us - PrepareTime: 187.363us - SinkTime: 68.834ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.738ms - WaitBfTime: 1s272ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 684.711ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.687us - CompressTime: 0ns - ExecTime: 68.850ms - InputRows: 835.915K (835915) - LocalBytesSent: 11.16 MB - LocalSendTime: 1.505ms - LocalSentRows: 835.915K (835915) - MemoryUsage: - PeakMemoryUsage: 19.78 MB - MergeBlockTime: 0ns - OpenTime: 61.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 835.915K (835915) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 39.65ms - SplitBlockHashComputeTime: 21.631ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=9. table name = DIM_CUSTOMER_ONLINE): - RuntimeFilters: : RuntimeFilter: (id = 2, type = minmax), RuntimeFilter: (id = 3, type = bloomfilter), - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15149] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.854us - BlocksProduced: 206 - CloseTime: 28.249us - ExecTime: 21.728ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 311.141us - ProcessConjunctTime: 44.405us - ProjectionTime: 0ns - RowsProduced: 835.915K (835915) - RowsRead: 835.915K (835915) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 447.547us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 20.156ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 2, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 3, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [CUS_ID, VIP_CUS_STATUS] - PerScannerRunningTime: [14.855ms, ] - PerScannerRowsRead: [835.91K, ] - PerScannerWaitTime: [447.547us, ] - BlockConvertTime: 0ns - BlockFetchTime: 14.402ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 261.485us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.862us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.784ms - ScannerCtxSchedTime: 444.935us - ScannerFilterTime: 94.416us - ScannerGetBlockTime: 14.708ms - ScannerInitTime: 168.242us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 368ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.263us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.839us - BlockInitTime: 42.127us - BlockLoadTime: 14.500ms - BlocksLoad: 207 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 80.931us - FirstReadTime: 13.838ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.973us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 30.417us - OutputIndexResultColumnTimer: 17.759us - RawRowsRead: 835.915K (835915) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 107 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 149: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 50.340ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 50.145ms - CloseTime: 50.179us - GetBlockTime: 19.407ms - OpenTime: 3.770us - PrepareTime: 134.43us - SinkTime: 30.167ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 50.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 290.355ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 50 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.357us - CompressTime: 0ns - ExecTime: 30.209ms - InputRows: 200.732K (200732) - LocalBytesSent: 13.59 MB - LocalSendTime: 759.188us - LocalSentRows: 200.732K (200732) - MemoryUsage: - PeakMemoryUsage: 22.16 MB - MergeBlockTime: 0ns - OpenTime: 76.726us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 200.732K (200732) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 23.192ms - SplitBlockHashComputeTime: 3.306ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 34.695us - ExecTime: 18.596ms - InitProbeSideTime: 3.326ms - JoinFilterTimer: 11.373us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 22.973us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 33.912us - ProbeFindNextTime: 0ns - ProbeRows: 200.732K (200732) - ProbeTime: 15.798ms - ProbeWhenBuildSideOutputTime: 2.330ms - ProbeWhenProbeSideOutputTime: 4.739ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.544ms - ProjectionTime: 2.479ms - RowsProduced: 200.732K (200732) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 84 - CloseTime: 0ns - ExecTime: 563.774us - GetBlockFailedTime: 15 - MemoryUsage: - PeakMemoryUsage: 4.99 MB - OpenTime: 670ns - ProjectionTime: 0ns - RowsProduced: 200.732K (200732) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s471ms PipelineXTask (index=4):(Active: 72.153ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 71.951ms - CloseTime: 52.954us - GetBlockTime: 41.251ms - OpenTime: 15.767us - PrepareTime: 124.763us - SinkTime: 30.146ms - GetBlockCounter: 103 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.97ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 312.182ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 51 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.248us - CompressTime: 0ns - ExecTime: 30.186ms - InputRows: 200.301K (200301) - LocalBytesSent: 13.56 MB - LocalSendTime: 702.637us - LocalSentRows: 200.301K (200301) - MemoryUsage: - PeakMemoryUsage: 22.42 MB - MergeBlockTime: 0ns - OpenTime: 69.33us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 200.301K (200301) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 22.998ms - SplitBlockHashComputeTime: 3.536ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 36.723us - ExecTime: 40.513ms - InitProbeSideTime: 3.107ms - JoinFilterTimer: 12.67us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 18.980us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.930us - ProbeFindNextTime: 0ns - ProbeRows: 200.301K (200301) - ProbeTime: 37.884ms - ProbeWhenBuildSideOutputTime: 21.769ms - ProbeWhenProbeSideOutputTime: 7.180ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.869ms - ProjectionTime: 2.327ms - RowsProduced: 200.301K (200301) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 84 - CloseTime: 0ns - ExecTime: 508.898us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 10.71 MB - OpenTime: 593ns - ProjectionTime: 0ns - RowsProduced: 200.301K (200301) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s463ms PipelineXTask (index=8):(Active: 45.91ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 44.886ms - CloseTime: 37.767us - GetBlockTime: 17.433ms - OpenTime: 7.790us - PrepareTime: 148.320us - SinkTime: 26.684ms - GetBlockCounter: 118 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 31 - NumScheduleTimes: 31 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.465ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.814ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 35 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.160us - CompressTime: 0ns - ExecTime: 26.738ms - InputRows: 142.898K (142898) - LocalBytesSent: 9.68 MB - LocalSendTime: 468.988us - LocalSentRows: 142.898K (142898) - MemoryUsage: - PeakMemoryUsage: 14.53 MB - MergeBlockTime: 0ns - OpenTime: 88.729us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 142.898K (142898) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 18.415ms - SplitBlockHashComputeTime: 5.134ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 19.229us - ExecTime: 16.474ms - InitProbeSideTime: 2.732ms - JoinFilterTimer: 11.679us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.631us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.780us - ProbeFindNextTime: 0ns - ProbeRows: 142.898K (142898) - ProbeTime: 13.884ms - ProbeWhenBuildSideOutputTime: 2.205ms - ProbeWhenProbeSideOutputTime: 3.937ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.13ms - ProjectionTime: 2.297ms - RowsProduced: 142.898K (142898) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 84 - CloseTime: 0ns - ExecTime: 564.890us - GetBlockFailedTime: 27 - MemoryUsage: - PeakMemoryUsage: 5.10 MB - OpenTime: 874ns - ProjectionTime: 0ns - RowsProduced: 142.898K (142898) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s517ms PipelineXTask (index=12):(Active: 94.717ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 94.524ms - CloseTime: 26.406us - GetBlockTime: 20.326ms - OpenTime: 5.515us - PrepareTime: 153.747us - SinkTime: 73.643ms - GetBlockCounter: 98 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 281.582ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 52 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.291us - CompressTime: 0ns - ExecTime: 73.673ms - InputRows: 212.952K (212952) - LocalBytesSent: 14.42 MB - LocalSendTime: 617.352us - LocalSentRows: 212.952K (212952) - MemoryUsage: - PeakMemoryUsage: 22.81 MB - MergeBlockTime: 0ns - OpenTime: 72.619us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 212.952K (212952) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 56.325ms - SplitBlockHashComputeTime: 3.609ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 84 - BuildOutputBlock: 0ns - CloseTime: 12.650us - ExecTime: 19.523ms - InitProbeSideTime: 3.581ms - JoinFilterTimer: 15.920us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.858us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.357us - ProbeFindNextTime: 0ns - ProbeRows: 212.952K (212952) - ProbeTime: 16.764ms - ProbeWhenBuildSideOutputTime: 2.803ms - ProbeWhenProbeSideOutputTime: 5.53ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.415ms - ProjectionTime: 2.458ms - RowsProduced: 212.952K (212952) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 84 - CloseTime: 0ns - ExecTime: 507.68us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 9.35 MB - OpenTime: 2.377us - ProjectionTime: 0ns - RowsProduced: 212.952K (212952) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s472ms PipelineXTask (index=16):(Active: 47.381ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 47.189ms - CloseTime: 52.968us - GetBlockTime: 13.941ms - OpenTime: 10.19us - PrepareTime: 118.264us - SinkTime: 32.620ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 47.271ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.108ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 35 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.19us - CompressTime: 0ns - ExecTime: 32.665ms - InputRows: 132.241K (132241) - LocalBytesSent: 8.95 MB - LocalSendTime: 504.453us - LocalSentRows: 132.241K (132241) - MemoryUsage: - PeakMemoryUsage: 14.73 MB - MergeBlockTime: 0ns - OpenTime: 69.232us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 132.241K (132241) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.754ms - SplitBlockHashComputeTime: 2.286ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 83 - BuildOutputBlock: 0ns - CloseTime: 34.549us - ExecTime: 13.249ms - InitProbeSideTime: 2.118ms - JoinFilterTimer: 9.853us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 15.715us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.175us - ProbeFindNextTime: 0ns - ProbeRows: 132.241K (132241) - ProbeTime: 11.170ms - ProbeWhenBuildSideOutputTime: 1.507ms - ProbeWhenProbeSideOutputTime: 3.228ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.673ms - ProjectionTime: 1.759ms - RowsProduced: 132.241K (132241) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 83 - CloseTime: 0ns - ExecTime: 450.979us - GetBlockFailedTime: 18 - MemoryUsage: - PeakMemoryUsage: 8.57 MB - OpenTime: 3.452us - ProjectionTime: 0ns - RowsProduced: 132.241K (132241) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s480ms PipelineXTask (index=20):(Active: 51.547ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.390ms - CloseTime: 34.346us - GetBlockTime: 24.211ms - OpenTime: 8.652us - PrepareTime: 108.304us - SinkTime: 26.876ms - GetBlockCounter: 92 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.303ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 428.71ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 59 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.209us - CompressTime: 0ns - ExecTime: 26.923ms - InputRows: 214.379K (214379) - LocalBytesSent: 14.52 MB - LocalSendTime: 675.953us - LocalSentRows: 214.379K (214379) - MemoryUsage: - PeakMemoryUsage: 24.56 MB - MergeBlockTime: 0ns - OpenTime: 65.76us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 214.379K (214379) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 20.591ms - SplitBlockHashComputeTime: 3.294ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 16.802us - ExecTime: 23.612ms - InitProbeSideTime: 2.721ms - JoinFilterTimer: 9.594us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.792us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 33.167us - ProbeFindNextTime: 0ns - ProbeRows: 214.379K (214379) - ProbeTime: 21.616ms - ProbeWhenBuildSideOutputTime: 2.277ms - ProbeWhenProbeSideOutputTime: 3.984ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.391ms - ProjectionTime: 1.778ms - RowsProduced: 214.379K (214379) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 437.948us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 24.35 MB - OpenTime: 691ns - ProjectionTime: 0ns - RowsProduced: 214.379K (214379) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s441ms PipelineXTask (index=24):(Active: 22.99ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.895ms - CloseTime: 38.606us - GetBlockTime: 8.564ms - OpenTime: 4.102us - PrepareTime: 145.8us - SinkTime: 12.908ms - GetBlockCounter: 83 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.964ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 349.682ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 27 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.724us - CompressTime: 0ns - ExecTime: 12.960ms - InputRows: 64.674K (64674) - LocalBytesSent: 4.38 MB - LocalSendTime: 342.130us - LocalSentRows: 64.674K (64674) - MemoryUsage: - PeakMemoryUsage: 7.13 MB - MergeBlockTime: 0ns - OpenTime: 71.382us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 64.674K (64674) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 9.960ms - SplitBlockHashComputeTime: 1.131ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 20.65us - ExecTime: 8.3ms - InitProbeSideTime: 1.480ms - JoinFilterTimer: 7.981us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 27.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.707us - ProbeFindNextTime: 0ns - ProbeRows: 64.674K (64674) - ProbeTime: 6.650ms - ProbeWhenBuildSideOutputTime: 962.380us - ProbeWhenProbeSideOutputTime: 1.827ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.145ms - ProjectionTime: 1.122ms - RowsProduced: 64.674K (64674) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 395.956us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 3.37 MB - OpenTime: 723ns - ProjectionTime: 0ns - RowsProduced: 64.674K (64674) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s460ms PipelineXTask (index=28):(Active: 71.409ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 71.241ms - CloseTime: 39.195us - GetBlockTime: 35.134ms - OpenTime: 4.463us - PrepareTime: 118.193us - SinkTime: 35.550ms - GetBlockCounter: 91 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.896ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 318.786ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 51 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.509us - CompressTime: 0ns - ExecTime: 35.587ms - InputRows: 216.79K (216790) - LocalBytesSent: 14.68 MB - LocalSendTime: 816.995us - LocalSentRows: 216.79K (216790) - MemoryUsage: - PeakMemoryUsage: 23.16 MB - MergeBlockTime: 0ns - OpenTime: 67.344us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 216.79K (216790) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 27.688ms - SplitBlockHashComputeTime: 3.674ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 20.212us - ExecTime: 34.380ms - InitProbeSideTime: 6.1ms - JoinFilterTimer: 12.177us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 9.671us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.493us - ProbeFindNextTime: 0ns - ProbeRows: 216.79K (216790) - ProbeTime: 31.455ms - ProbeWhenBuildSideOutputTime: 3.27ms - ProbeWhenProbeSideOutputTime: 16.395ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.908ms - ProjectionTime: 2.632ms - RowsProduced: 216.79K (216790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 448.454us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 3.50 MB - OpenTime: 2.862us - ProjectionTime: 0ns - RowsProduced: 216.79K (216790) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s448ms PipelineXTask (index=32):(Active: 31.987ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 31.801ms - CloseTime: 49.675us - GetBlockTime: 12.290ms - OpenTime: 4.854us - PrepareTime: 122.338us - SinkTime: 18.928ms - GetBlockCounter: 95 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.852ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 320.193ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 32 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.70us - CompressTime: 0ns - ExecTime: 18.981ms - InputRows: 102.176K (102176) - LocalBytesSent: 6.92 MB - LocalSendTime: 500.884us - LocalSentRows: 102.176K (102176) - MemoryUsage: - PeakMemoryUsage: 11.45 MB - MergeBlockTime: 0ns - OpenTime: 74.640us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 102.176K (102176) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.525ms - SplitBlockHashComputeTime: 1.875ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 24.578us - ExecTime: 11.568ms - InitProbeSideTime: 2.236ms - JoinFilterTimer: 8.385us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.95us - ProbeFindNextTime: 0ns - ProbeRows: 102.176K (102176) - ProbeTime: 9.643ms - ProbeWhenBuildSideOutputTime: 1.522ms - ProbeWhenProbeSideOutputTime: 2.448ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.879ms - ProjectionTime: 1.658ms - RowsProduced: 102.176K (102176) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 443.197us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 7.42 MB - OpenTime: 659ns - ProjectionTime: 0ns - RowsProduced: 102.176K (102176) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s507ms PipelineXTask (index=36):(Active: 44.864ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.576ms - CloseTime: 65.537us - GetBlockTime: 17.377ms - OpenTime: 6.353us - PrepareTime: 208.475us - SinkTime: 26.693ms - GetBlockCounter: 92 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 44.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.53ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.983us - CompressTime: 0ns - ExecTime: 26.823ms - InputRows: 195.951K (195951) - LocalBytesSent: 13.27 MB - LocalSendTime: 624.454us - LocalSentRows: 195.951K (195951) - MemoryUsage: - PeakMemoryUsage: 21.04 MB - MergeBlockTime: 0ns - OpenTime: 154.723us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 195.951K (195951) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 20.483ms - SplitBlockHashComputeTime: 3.208ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 43.930us - ExecTime: 16.746ms - InitProbeSideTime: 2.855ms - JoinFilterTimer: 9.421us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 14.973us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.175us - ProbeFindNextTime: 0ns - ProbeRows: 195.951K (195951) - ProbeTime: 14.270ms - ProbeWhenBuildSideOutputTime: 2.223ms - ProbeWhenProbeSideOutputTime: 4.214ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.263ms - ProjectionTime: 2.183ms - RowsProduced: 195.951K (195951) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 427.329us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 4.52 MB - OpenTime: 773ns - ProjectionTime: 0ns - RowsProduced: 195.951K (195951) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s502ms PipelineXTask (index=40):(Active: 43.827ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 43.606ms - CloseTime: 62.883us - GetBlockTime: 15.704ms - OpenTime: 3.740us - PrepareTime: 144.818us - SinkTime: 27.402ms - GetBlockCounter: 96 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.682ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.697ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 37 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.819us - CompressTime: 0ns - ExecTime: 27.475ms - InputRows: 145.516K (145516) - LocalBytesSent: 9.85 MB - LocalSendTime: 547.984us - LocalSentRows: 145.516K (145516) - MemoryUsage: - PeakMemoryUsage: 16.07 MB - MergeBlockTime: 0ns - OpenTime: 94.691us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 145.516K (145516) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 18.755ms - SplitBlockHashComputeTime: 2.737ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 45.433us - ExecTime: 14.990ms - InitProbeSideTime: 2.450ms - JoinFilterTimer: 10.636us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.820us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.29us - ProbeFindNextTime: 0ns - ProbeRows: 145.516K (145516) - ProbeTime: 12.645ms - ProbeWhenBuildSideOutputTime: 1.878ms - ProbeWhenProbeSideOutputTime: 3.541ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.87ms - ProjectionTime: 2.50ms - RowsProduced: 145.516K (145516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 451.529us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 4.06 MB - OpenTime: 874ns - ProjectionTime: 0ns - RowsProduced: 145.516K (145516) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s492ms PipelineXTask (index=44):(Active: 32.372ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.132ms - CloseTime: 48.165us - GetBlockTime: 12.156ms - OpenTime: 10.56us - PrepareTime: 174.510us - SinkTime: 19.606ms - GetBlockCounter: 87 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 376.897ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 35 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.254us - CompressTime: 0ns - ExecTime: 19.710ms - InputRows: 134.43K (134430) - LocalBytesSent: 9.10 MB - LocalSendTime: 419.94us - LocalSentRows: 134.43K (134430) - MemoryUsage: - PeakMemoryUsage: 14.63 MB - MergeBlockTime: 0ns - OpenTime: 120.976us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 134.43K (134430) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 14.661ms - SplitBlockHashComputeTime: 2.667ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15.633ms - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 72 - BuildOutputBlock: 0ns - CloseTime: 31.513us - ExecTime: 11.730ms - InitProbeSideTime: 1.949ms - JoinFilterTimer: 8.552us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.408us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.672us - ProbeFindNextTime: 0ns - ProbeRows: 134.43K (134430) - ProbeTime: 10.100ms - ProbeWhenBuildSideOutputTime: 1.593ms - ProbeWhenProbeSideOutputTime: 2.816ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.504ms - ProjectionTime: 1.432ms - RowsProduced: 134.43K (134430) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 72 - CloseTime: 0ns - ExecTime: 306.670us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 7.88 MB - OpenTime: 959ns - ProjectionTime: 0ns - RowsProduced: 134.43K (134430) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 2s440ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 71.729ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 71.613ms - CloseTime: 46.253us - GetBlockTime: 70.738ms - OpenTime: 3.287us - PrepareTime: 62.518us - SinkTime: 505.180us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.295ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 460.854us - InputRows: 163.079K (163079) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.556us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 30.847us - ExecTime: 69.738ms - InitProbeSideTime: 6.622ms - JoinFilterTimer: 10.995us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.213us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.828us - ProbeFindNextTime: 0ns - ProbeRows: 163.079K (163079) - ProbeTime: 65.823ms - ProbeWhenBuildSideOutputTime: 5.91ms - ProbeWhenProbeSideOutputTime: 3.445ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 48.719ms - ProjectionTime: 3.724ms - RowsProduced: 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s65ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.143us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 953.379us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.30 MB - MemoryUsage: - Blocks: 16.30 MB - PeakMemoryUsage: 16.30 MB - OpenTime: 20.497us - ProjectionTime: 0ns - RowsProduced: 163.079K (163079) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 498.712ms PipelineXTask (index=5):(Active: 99.428ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 99.300ms - CloseTime: 32.726us - GetBlockTime: 98.503ms - OpenTime: 5.187us - PrepareTime: 84.834us - SinkTime: 561.437us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.879ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 462.651ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 525.870us - InputRows: 163.538K (163538) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.83us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 17.228us - ExecTime: 97.688ms - InitProbeSideTime: 7.120ms - JoinFilterTimer: 11.89us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 25.484us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.362us - ProbeFindNextTime: 0ns - ProbeRows: 163.538K (163538) - ProbeTime: 85.659ms - ProbeWhenBuildSideOutputTime: 5.156ms - ProbeWhenProbeSideOutputTime: 3.682ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 67.826ms - ProjectionTime: 11.850ms - RowsProduced: 163.538K (163538) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s452ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.157us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 770.764us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.03 MB - MemoryUsage: - Blocks: 16.03 MB - PeakMemoryUsage: 16.04 MB - OpenTime: 16.534us - ProjectionTime: 0ns - RowsProduced: 163.538K (163538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 509.570ms PipelineXTask (index=9):(Active: 102.208ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 102.61ms - CloseTime: 54.248us - GetBlockTime: 101.209ms - OpenTime: 4.856us - PrepareTime: 66.338us - SinkTime: 538.253us - GetBlockCounter: 77 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 77.239ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 477.501ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 499.742us - InputRows: 163.935K (163935) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.201us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 76 - BuildOutputBlock: 0ns - CloseTime: 38.491us - ExecTime: 100.235ms - InitProbeSideTime: 10.342ms - JoinFilterTimer: 14.182us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 15.750us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.290us - ProbeFindNextTime: 0ns - ProbeRows: 163.935K (163935) - ProbeTime: 95.897ms - ProbeWhenBuildSideOutputTime: 6.688ms - ProbeWhenProbeSideOutputTime: 4.110ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 72.410ms - ProjectionTime: 4.116ms - RowsProduced: 163.935K (163935) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s574ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 909.23us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.10 MB - MemoryUsage: - Blocks: 16.10 MB - PeakMemoryUsage: 16.10 MB - OpenTime: 18.300us - ProjectionTime: 0ns - RowsProduced: 163.935K (163935) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 496.439ms PipelineXTask (index=13):(Active: 104.856ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 104.743ms - CloseTime: 35.286us - GetBlockTime: 103.744ms - OpenTime: 5.390us - PrepareTime: 67.380us - SinkTime: 675.347us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 92.530ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.154ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 613.670us - InputRows: 163.191K (163191) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.140us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 19.484us - ExecTime: 90.575ms - InitProbeSideTime: 8.669ms - JoinFilterTimer: 11.750us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 25.310us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.541us - ProbeFindNextTime: 0ns - ProbeRows: 163.191K (163191) - ProbeTime: 85.583ms - ProbeWhenBuildSideOutputTime: 5.959ms - ProbeWhenProbeSideOutputTime: 4.568ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 63.624ms - ProjectionTime: 4.729ms - RowsProduced: 163.191K (163191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s786ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.412us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.70ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.41 MB - MemoryUsage: - Blocks: 16.41 MB - PeakMemoryUsage: 16.41 MB - OpenTime: 15.610us - ProjectionTime: 0ns - RowsProduced: 163.191K (163191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 499.919ms PipelineXTask (index=17):(Active: 91.736ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 91.632ms - CloseTime: 35.354us - GetBlockTime: 90.613ms - OpenTime: 8.409us - PrepareTime: 54.616us - SinkTime: 802.716us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.905ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.548ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 747.120us - InputRows: 163.683K (163683) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.282us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 18.892us - ExecTime: 89.777ms - InitProbeSideTime: 7.428ms - JoinFilterTimer: 11.352us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.324us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.296us - ProbeFindNextTime: 0ns - ProbeRows: 163.683K (163683) - ProbeTime: 85.278ms - ProbeWhenBuildSideOutputTime: 5.471ms - ProbeWhenProbeSideOutputTime: 3.972ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.215ms - ProjectionTime: 4.311ms - RowsProduced: 163.683K (163683) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s763ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.863us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 725.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.32 MB - MemoryUsage: - Blocks: 16.32 MB - PeakMemoryUsage: 16.32 MB - OpenTime: 12.110us - ProjectionTime: 0ns - RowsProduced: 163.683K (163683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 521.666ms PipelineXTask (index=21):(Active: 77.973ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 77.862ms - CloseTime: 39.416us - GetBlockTime: 76.958ms - OpenTime: 10.877us - PrepareTime: 55.33us - SinkTime: 614.929us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.648ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.979ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 573.179us - InputRows: 163.392K (163392) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.66us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 25.331us - ExecTime: 76.50ms - InitProbeSideTime: 7.389ms - JoinFilterTimer: 10.483us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.223us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.160us - ProbeFindNextTime: 0ns - ProbeRows: 163.392K (163392) - ProbeTime: 71.827ms - ProbeWhenBuildSideOutputTime: 5.478ms - ProbeWhenProbeSideOutputTime: 3.957ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 52.683ms - ProjectionTime: 4.30ms - RowsProduced: 163.392K (163392) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s54ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 11.276us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 806.880us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.82 MB - MemoryUsage: - Blocks: 16.82 MB - PeakMemoryUsage: 16.82 MB - OpenTime: 20.89us - ProjectionTime: 0ns - RowsProduced: 163.392K (163392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 501.866ms PipelineXTask (index=25):(Active: 67.295ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.194ms - CloseTime: 39.641us - GetBlockTime: 66.507ms - OpenTime: 2.550us - PrepareTime: 55.262us - SinkTime: 439.919us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.205ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 181.810ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 410.863us - InputRows: 163.819K (163819) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.40us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 14.876us - ExecTime: 65.648ms - InitProbeSideTime: 6.841ms - JoinFilterTimer: 10.544us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.758us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.150us - ProbeFindNextTime: 0ns - ProbeRows: 163.819K (163819) - ProbeTime: 61.816ms - ProbeWhenBuildSideOutputTime: 4.818ms - ProbeWhenProbeSideOutputTime: 3.380ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.130ms - ProjectionTime: 3.689ms - RowsProduced: 163.819K (163819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s826ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 21.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 824.671us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.66 MB - MemoryUsage: - Blocks: 16.66 MB - PeakMemoryUsage: 16.66 MB - OpenTime: 14.721us - ProjectionTime: 0ns - RowsProduced: 163.819K (163819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 513.82ms PipelineXTask (index=29):(Active: 66.346ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 66.246ms - CloseTime: 39.558us - GetBlockTime: 65.446ms - OpenTime: 3.710us - PrepareTime: 52.126us - SinkTime: 439.555us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 66.271ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 430.865ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 401.465us - InputRows: 163.79K (163790) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.28us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 24.687us - ExecTime: 64.465ms - InitProbeSideTime: 6.84ms - JoinFilterTimer: 10.806us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.282us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.240us - ProbeFindNextTime: 0ns - ProbeRows: 163.79K (163790) - ProbeTime: 60.716ms - ProbeWhenBuildSideOutputTime: 4.937ms - ProbeWhenProbeSideOutputTime: 3.249ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.759ms - ProjectionTime: 3.588ms - RowsProduced: 163.79K (163790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s812ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 11.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 926.559us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.20 MB - MemoryUsage: - Blocks: 16.20 MB - PeakMemoryUsage: 16.20 MB - OpenTime: 15.45us - ProjectionTime: 0ns - RowsProduced: 163.79K (163790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 510.913ms PipelineXTask (index=33):(Active: 121.256ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 121.132ms - CloseTime: 61.297us - GetBlockTime: 119.994ms - OpenTime: 2.986us - PrepareTime: 55.834us - SinkTime: 770.129us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 108.0ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 223.957ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 703.867us - InputRows: 163.261K (163261) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.72us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 36.409us - ExecTime: 118.977ms - InitProbeSideTime: 10.58ms - JoinFilterTimer: 13.346us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 8.968us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.434us - ProbeFindNextTime: 0ns - ProbeRows: 163.261K (163261) - ProbeTime: 114.3ms - ProbeWhenBuildSideOutputTime: 6.208ms - ProbeWhenProbeSideOutputTime: 5.50ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 89.931ms - ProjectionTime: 4.690ms - RowsProduced: 163.261K (163261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s828ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 21.258us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 912.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.68 MB - MemoryUsage: - Blocks: 16.68 MB - PeakMemoryUsage: 16.68 MB - OpenTime: 10.724us - ProjectionTime: 0ns - RowsProduced: 163.261K (163261) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 500.223ms PipelineXTask (index=37):(Active: 70.986ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 70.868ms - CloseTime: 47.355us - GetBlockTime: 70.88ms - OpenTime: 6.797us - PrepareTime: 59.220us - SinkTime: 547.340us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 70.392ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 398.267ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 510.842us - InputRows: 163.982K (163982) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.378us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 30.621us - ExecTime: 69.368ms - InitProbeSideTime: 6.876ms - JoinFilterTimer: 10.698us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.504us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.640us - ProbeFindNextTime: 0ns - ProbeRows: 163.982K (163982) - ProbeTime: 65.96ms - ProbeWhenBuildSideOutputTime: 5.224ms - ProbeWhenProbeSideOutputTime: 3.570ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 47.685ms - ProjectionTime: 4.100ms - RowsProduced: 163.982K (163982) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s669ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 12.767us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 692.844us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.51 MB - MemoryUsage: - Blocks: 16.51 MB - PeakMemoryUsage: 16.51 MB - OpenTime: 16.958us - ProjectionTime: 0ns - RowsProduced: 163.982K (163982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 490.919ms PipelineXTask (index=41):(Active: 86.83ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 85.973ms - CloseTime: 32.195us - GetBlockTime: 85.224ms - OpenTime: 5.24us - PrepareTime: 66.601us - SinkTime: 407.636us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.208ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.676ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 364.135us - InputRows: 163.643K (163643) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.24us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 18.820us - ExecTime: 84.227ms - InitProbeSideTime: 7.291ms - JoinFilterTimer: 10.953us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 25.629us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.802us - ProbeFindNextTime: 0ns - ProbeRows: 163.643K (163643) - ProbeTime: 80.152ms - ProbeWhenBuildSideOutputTime: 5.803ms - ProbeWhenProbeSideOutputTime: 3.968ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 61.14ms - ProjectionTime: 3.890ms - RowsProduced: 163.643K (163643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s101ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 9.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 911.819us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.26 MB - MemoryUsage: - Blocks: 16.26 MB - PeakMemoryUsage: 16.26 MB - OpenTime: 13.39us - ProjectionTime: 0ns - RowsProduced: 163.643K (163643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 523.410ms PipelineXTask (index=45):(Active: 80.763ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 80.660ms - CloseTime: 34.992us - GetBlockTime: 79.829ms - OpenTime: 5.216us - PrepareTime: 57.694us - SinkTime: 460.310us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.321ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.552ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 408.495us - InputRows: 163.727K (163727) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.167us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 20.980us - ExecTime: 78.789ms - InitProbeSideTime: 7.855ms - JoinFilterTimer: 10.413us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.830us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.879us - ProbeFindNextTime: 0ns - ProbeRows: 163.727K (163727) - ProbeTime: 74.714ms - ProbeWhenBuildSideOutputTime: 5.813ms - ProbeWhenProbeSideOutputTime: 4.373ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 54.444ms - ProjectionTime: 3.866ms - RowsProduced: 163.727K (163727) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s149ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 44 - BytesReceived: 0.00 - CloseTime: 10.883us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 924.464us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.54 MB - MemoryUsage: - Blocks: 16.54 MB - PeakMemoryUsage: 16.54 MB - OpenTime: 15.55us - ProjectionTime: 0ns - RowsProduced: 163.727K (163727) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 516.922ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 423.516us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 341.359us - CloseTime: 14.265us - GetBlockTime: 6.652us - OpenTime: 2.511us - PrepareTime: 60.842us - SinkTime: 308.633us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 400.252us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.8ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.419us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.803us - BuildTableInsertTime: 26.637us - BuildTableTime: 32.621us - CloseTime: 0ns - ExecTime: 337.472us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 28.858us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 203.155us - RuntimeFilterComputeTime: 19.555us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=1): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.844us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.179us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 12.673us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 315.463ms PipelineXTask (index=6):(Active: 122.93us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 35.167us - CloseTime: 8.44us - GetBlockTime: 0ns - OpenTime: 2.287us - PrepareTime: 71.419us - SinkTime: 18.82us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.242us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.710ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.227us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.387us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 371.203ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.402us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.333us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.347us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 89.67us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 21.67us - CloseTime: 8.493us - GetBlockTime: 0ns - OpenTime: 2.227us - PrepareTime: 52.360us - SinkTime: 6.391us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.94us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.795ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.560us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.318us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 371.149ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.590us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.390us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.952us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 122.234us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 53.885us - CloseTime: 13.773us - GetBlockTime: 0ns - OpenTime: 1.629us - PrepareTime: 49.506us - SinkTime: 34.294us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.239us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.59ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 53.82us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.434us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 373.556ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.273us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.533us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.617us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 200.294us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.493us - CloseTime: 11.757us - GetBlockTime: 0ns - OpenTime: 2.438us - PrepareTime: 127.669us - SinkTime: 19.567us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.132us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.167ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 99.305us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 79.813us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 382.796ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.797us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.203us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.629us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 152.565us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 53.658us - CloseTime: 11.290us - GetBlockTime: 0ns - OpenTime: 2.797us - PrepareTime: 79.675us - SinkTime: 23.648us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.772us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.570ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 55.654us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.503us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 365.887ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.776us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.874us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.373us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 173.704us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.730us - CloseTime: 8.919us - GetBlockTime: 0ns - OpenTime: 2.388us - PrepareTime: 122.565us - SinkTime: 16.800us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 157.698us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.566ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.963us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.492us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 363.588ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.910us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 77.100us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 69.520us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 89.794us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 24.801us - CloseTime: 5.154us - GetBlockTime: 0ns - OpenTime: 1.868us - PrepareTime: 52.898us - SinkTime: 8.248us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.916us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.845ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.766us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.660us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 371.78ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.373us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.939us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.868us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 122.300us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 47.948us - CloseTime: 15.240us - GetBlockTime: 0ns - OpenTime: 2.364us - PrepareTime: 52.321us - SinkTime: 33.818us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.49us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.241ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.641us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.308us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 374.446ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.544us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.53us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.630us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 136.367us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.211us - CloseTime: 4.594us - GetBlockTime: 0ns - OpenTime: 2.180us - PrepareTime: 99.360us - SinkTime: 7.333us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.14us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.925ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 63.782us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 56.528us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 365.26ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.603us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.468us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.986us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=42):(Active: 154.289us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 64.552us - CloseTime: 6.234us - GetBlockTime: 0ns - OpenTime: 2.130us - PrepareTime: 77.706us - SinkTime: 14.654us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 117.114us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.95ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.646us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.227us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 373.542ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.844us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.499us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.24us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 113.117us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 41.569us - CloseTime: 12.359us - GetBlockTime: 0ns - OpenTime: 2.10us - PrepareTime: 52.229us - SinkTime: 18.920us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.792us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.831ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: d9f55876ba7744e8-85f36bf268962f7b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.739us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.339us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 387.560ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.415us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.798us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 333.625ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 333.529ms - CloseTime: 16.122us - GetBlockTime: 2.546ms - OpenTime: 3.137us - PrepareTime: 66.315us - SinkTime: 330.440ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 174.551ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s876ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 75.616us - BuildRows: 694.767K (694767) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 205.638ms - BuildTableInsertTime: 123.762ms - BuildTableTime: 124.406ms - CloseTime: 0ns - ExecTime: 330.373ms - InputRows: 694.766K (694766) - MemoryUsage: - BuildBlocks: 30.48 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.12 MB - OpenTime: 20.245us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 12.48us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.451ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.06 MB - MemoryUsage: - Blocks: 9.23 MB - PeakMemoryUsage: 9.23 MB - OpenTime: 12.532us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 422.982ms PipelineXTask (index=7):(Active: 383.428ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 383.345ms - CloseTime: 18.876us - GetBlockTime: 62.183ms - OpenTime: 2.180us - PrepareTime: 55.288us - SinkTime: 320.537ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.3ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s476ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 80.868us - BuildRows: 694.446K (694446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 126.951ms - BuildTableInsertTime: 192.161ms - BuildTableTime: 193.207ms - CloseTime: 0ns - ExecTime: 320.474ms - InputRows: 694.445K (694445) - MemoryUsage: - BuildBlocks: 30.46 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.11 MB - OpenTime: 8.788us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 14.653us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.120ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.40 MB - MemoryUsage: - Blocks: 8.46 MB - PeakMemoryUsage: 8.46 MB - OpenTime: 31.882us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 478.379ms PipelineXTask (index=11):(Active: 527.269ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 527.200ms - CloseTime: 16.492us - GetBlockTime: 2.576ms - OpenTime: 2.135us - PrepareTime: 37.667us - SinkTime: 523.895ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 43 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 170.257ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s505ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 88.474us - BuildRows: 696.523K (696523) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 403.98ms - BuildTableInsertTime: 119.822ms - BuildTableTime: 120.392ms - CloseTime: 0ns - ExecTime: 523.832ms - InputRows: 696.522K (696522) - MemoryUsage: - BuildBlocks: 30.56 MB - BuildKeyArena: 32.00 MB - HashTable: 6.66 MB - PeakMemoryUsage: 69.20 MB - OpenTime: 10.597us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 168 - BytesReceived: 0.00 - CloseTime: 12.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.490ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.90 MB - MemoryUsage: - Blocks: 5.45 MB - PeakMemoryUsage: 5.45 MB - OpenTime: 8.679us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 425.895ms PipelineXTask (index=15):(Active: 271.768ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 271.679ms - CloseTime: 13.798us - GetBlockTime: 2.536ms - OpenTime: 2.503us - PrepareTime: 61.122us - SinkTime: 268.544ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 154.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s548ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 80.846us - BuildRows: 694.152K (694152) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 198.856ms - BuildTableInsertTime: 68.665ms - BuildTableTime: 69.262ms - CloseTime: 0ns - ExecTime: 268.475ms - InputRows: 694.151K (694151) - MemoryUsage: - BuildBlocks: 30.45 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.09 MB - OpenTime: 7.525us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 10.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.438ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.82 MB - MemoryUsage: - Blocks: 8.23 MB - PeakMemoryUsage: 8.23 MB - OpenTime: 24.308us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 667.140ms PipelineXTask (index=19):(Active: 328.872ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 328.796ms - CloseTime: 21.461us - GetBlockTime: 2.674ms - OpenTime: 2.683us - PrepareTime: 41.167us - SinkTime: 325.458ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 148.754ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s401ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 85.885us - BuildRows: 695.935K (695935) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 171.961ms - BuildTableInsertTime: 152.260ms - BuildTableTime: 153.50ms - CloseTime: 0ns - ExecTime: 325.381ms - InputRows: 695.934K (695934) - MemoryUsage: - BuildBlocks: 30.53 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.18 MB - OpenTime: 6.19us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 17.7us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.565ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.27 MB - MemoryUsage: - Blocks: 12.64 MB - PeakMemoryUsage: 12.64 MB - OpenTime: 12.967us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 577.802ms PipelineXTask (index=23):(Active: 276.368ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 276.303ms - CloseTime: 11.815us - GetBlockTime: 2.553ms - OpenTime: 2.487us - PrepareTime: 43.415us - SinkTime: 273.193ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 34 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 123.941ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s921ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 64.967us - BuildRows: 695.78K (695780) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 226.161ms - BuildTableInsertTime: 46.77ms - BuildTableTime: 46.673ms - CloseTime: 0ns - ExecTime: 273.142ms - InputRows: 695.779K (695779) - MemoryUsage: - BuildBlocks: 30.52 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.17 MB - OpenTime: 11.928us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 9.100us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.462ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.16 MB - MemoryUsage: - Blocks: 9.79 MB - PeakMemoryUsage: 9.79 MB - OpenTime: 15.30us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 384.962ms PipelineXTask (index=27):(Active: 203.847ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 203.773ms - CloseTime: 17.915us - GetBlockTime: 2.373ms - OpenTime: 2.810us - PrepareTime: 41.298us - SinkTime: 200.799ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 149.848ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s634ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 70.13us - BuildRows: 695.837K (695837) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 123.824ms - BuildTableInsertTime: 75.987ms - BuildTableTime: 76.603ms - CloseTime: 0ns - ExecTime: 200.739ms - InputRows: 695.836K (695836) - MemoryUsage: - BuildBlocks: 30.53 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.17 MB - OpenTime: 6.384us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 13.735us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.289ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.38 MB - MemoryUsage: - Blocks: 13.92 MB - PeakMemoryUsage: 13.92 MB - OpenTime: 13.794us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 574.826ms PipelineXTask (index=31):(Active: 181.502ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 181.359ms - CloseTime: 21.634us - GetBlockTime: 2.617ms - OpenTime: 2.450us - PrepareTime: 111.241us - SinkTime: 178.158ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.2ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2s94ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 72.834us - BuildRows: 694.146K (694146) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 113.854ms - BuildTableInsertTime: 63.316ms - BuildTableTime: 63.890ms - CloseTime: 0ns - ExecTime: 178.151ms - InputRows: 694.145K (694145) - MemoryUsage: - BuildBlocks: 30.45 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.09 MB - OpenTime: 62.106us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 17.837us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.563ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.82 MB - MemoryUsage: - Blocks: 12.11 MB - PeakMemoryUsage: 12.11 MB - OpenTime: 27.31us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 421.773ms PipelineXTask (index=35):(Active: 209.330ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 209.267ms - CloseTime: 15.333us - GetBlockTime: 13.692ms - OpenTime: 2.467us - PrepareTime: 34.190us - SinkTime: 194.972ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 152.574ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s903ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 77.612us - BuildRows: 695.324K (695324) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 124.768ms - BuildTableInsertTime: 69.153ms - BuildTableTime: 69.803ms - CloseTime: 0ns - ExecTime: 194.892ms - InputRows: 695.323K (695323) - MemoryUsage: - BuildBlocks: 30.50 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.15 MB - OpenTime: 7.773us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 12.417us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.589ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.29 MB - MemoryUsage: - Blocks: 9.91 MB - PeakMemoryUsage: 9.91 MB - OpenTime: 9.369us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 416.781ms PipelineXTask (index=39):(Active: 348.387ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 348.327ms - CloseTime: 12.913us - GetBlockTime: 2.602ms - OpenTime: 3.400us - PrepareTime: 36.94us - SinkTime: 345.104ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 37 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 138.158ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s672ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 86.287us - BuildRows: 695.571K (695571) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 281.915ms - BuildTableInsertTime: 62.186ms - BuildTableTime: 62.777ms - CloseTime: 0ns - ExecTime: 345.46ms - InputRows: 695.57K (695570) - MemoryUsage: - BuildBlocks: 30.51 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.16 MB - OpenTime: 5.873us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 167 - BytesReceived: 0.00 - CloseTime: 9.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.515ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.26 MB - MemoryUsage: - Blocks: 7.20 MB - PeakMemoryUsage: 7.20 MB - OpenTime: 12.511us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 533.538ms PipelineXTask (index=43):(Active: 186.340ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 186.261ms - CloseTime: 15.787us - GetBlockTime: 2.518ms - OpenTime: 1.930us - PrepareTime: 50.927us - SinkTime: 183.156ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.360ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1s837ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 86.294us - BuildRows: 694.609K (694609) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 124.132ms - BuildTableInsertTime: 58.25ms - BuildTableTime: 58.616ms - CloseTime: 0ns - ExecTime: 183.99ms - InputRows: 694.608K (694608) - MemoryUsage: - BuildBlocks: 30.47 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.11 MB - OpenTime: 9.839us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 165 - BytesReceived: 0.00 - CloseTime: 12.228us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 2.410ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 53.26 MB - MemoryUsage: - Blocks: 11.00 MB - PeakMemoryUsage: 11.00 MB - OpenTime: 15.784us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 621.635ms PipelineXTask (index=47):(Active: 221.999ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 221.939ms - CloseTime: 17.932us - GetBlockTime: 3.647ms - OpenTime: 2.340us - PrepareTime: 32.605us - SinkTime: 217.656ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 155.74ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2s37ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 102.443us - BuildRows: 695.249K (695249) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 118.17ms - BuildTableInsertTime: 98.570ms - BuildTableTime: 99.172ms - CloseTime: 0ns - ExecTime: 217.581ms - InputRows: 695.248K (695248) - MemoryUsage: - BuildBlocks: 30.50 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.14 MB - OpenTime: 6.948us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 166 - BytesReceived: 0.00 - CloseTime: 13.825us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.541ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.06 MB - MemoryUsage: - Blocks: 6.47 MB - PeakMemoryUsage: 6.47 MB - OpenTime: 9.745us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 423.96ms Fragment 150: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.562ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 693.650us - CloseTime: 29.360us - GetBlockTime: 44.204us - OpenTime: 468.173us - PrepareTime: 362.31us - SinkTime: 147.388us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.520ms - WaitBfTime: 401.652ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.720ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.359us - CompressTime: 0ns - ExecTime: 240.469us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 65.972us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.663us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 0 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 920ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 133.909us - BlocksProduced: 0 - CloseTime: 15.498us - ExecTime: 16.191ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 677.727us - ProcessConjunctTime: 149.582us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 15.69ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 15.454ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - PerScannerRunningTime: [1.529us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [15.069ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 343.700us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 391.204us - ScannerCtxSchedTime: 15.67ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 934ns - ScannerInitTime: 150.350us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 449ns - BlockConditionsFilteredBloomFilterTime: 1.348us - BlockConditionsFilteredDictTime: 107.419us - BlockConditionsFilteredTime: 134.745us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.887us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.435us - BlockInitTime: 168.884us - BlockLoadTime: 181.251us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 512ns - IOTimer: 0ns - InvertedIndexFilterTime: 2.576us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 0ns - OutputIndexResultColumnTimer: 0ns - RawRowsRead: 0 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 556.885K (556885) - RowsDictFiltered: 556.885K (556885) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 2 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 1.234ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 688.101us - CloseTime: 65.940us - GetBlockTime: 67.354us - OpenTime: 277.282us - PrepareTime: 196.652us - SinkTime: 320.482us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.159ms - WaitBfTime: 402.123ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.534ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.246us - CompressTime: 0ns - ExecTime: 403.722us - InputRows: 583 - LocalBytesSent: 34.73 KB - LocalSendTime: 81.92us - LocalSentRows: 583 - MemoryUsage: - PeakMemoryUsage: 53.88 KB - MergeBlockTime: 0ns - OpenTime: 70.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 583 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 86.801us - SplitBlockHashComputeTime: 24.302us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 89.909us - BlocksProduced: 1 - CloseTime: 50.339us - ExecTime: 66.23ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 354.476us - ProcessConjunctTime: 91.341us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 15.272ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 65.551ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [49.469ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [15.272ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.1ms - MemoryUsage: - FreeBlocks: 192.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 567.404us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 238ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.424ms - ScannerCtxSchedTime: 15.269ms - ScannerFilterTime: 46.445us - ScannerGetBlockTime: 49.394ms - ScannerInitTime: 81.634us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.218us - BlockConditionsFilteredBloomFilterTime: 5.783us - BlockConditionsFilteredDictTime: 134.265us - BlockConditionsFilteredTime: 193.481us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.529us - BlockInitSeekCount: 37 - BlockInitSeekTime: 249.973us - BlockInitTime: 520.578us - BlockLoadTime: 49.457ms - BlocksLoad: 152 - CachedPagesNum: 339 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 33.967us - FirstReadTime: 954.152us - IOTimer: 0ns - InvertedIndexFilterTime: 9.161us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 46.883ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 56.340us - OutputIndexResultColumnTimer: 6.965us - RawRowsRead: 581.176K (581176) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 580.593K (580593) - RowsShortCircuitPredInput: 581.176K (581176) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 669.263us - TotalPagesNum: 339 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 59.503us PipelineXTask (index=2):(Active: 51.668ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 51.238ms - CloseTime: 42.843us - GetBlockTime: 195.676us - OpenTime: 201.440us - PrepareTime: 178.182us - SinkTime: 50.747ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.382ms - WaitBfTime: 402.400ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.766ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.481us - CompressTime: 0ns - ExecTime: 50.829ms - InputRows: 25.619K (25619) - LocalBytesSent: 1.49 MB - LocalSendTime: 81.278us - LocalSentRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 2.72 MB - MergeBlockTime: 0ns - OpenTime: 84.410us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 25.619K (25619) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 49.181ms - SplitBlockHashComputeTime: 841.801us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 65.249us - BlocksProduced: 9 - CloseTime: 28.901us - ExecTime: 184.474ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 252.241us - ProcessConjunctTime: 89.273us - ProjectionTime: 0ns - RowsProduced: 25.619K (25619) - RowsRead: 25.619K (25619) - RuntimeFilterInfo: - filter id = -1 filtered: 2.910612M (2910612) - filter id = -1 input: 2.96185M (2961850) - ScannerWorkerWaitTime: 100.298ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 184.4ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [81.197ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [100.298ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 79.284ms - MemoryUsage: - FreeBlocks: 792.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.191ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 743ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.829ms - ScannerCtxSchedTime: 100.281ms - ScannerFilterTime: 309.982us - ScannerGetBlockTime: 80.699ms - ScannerInitTime: 33.247us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.644us - BlockConditionsFilteredBloomFilterTime: 3.183us - BlockConditionsFilteredDictTime: 85.992us - BlockConditionsFilteredTime: 155.521us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.886us - BlockInitSeekCount: 17 - BlockInitSeekTime: 23.447us - BlockInitTime: 260.292us - BlockLoadTime: 80.740ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 90.489us - FirstReadTime: 2.817ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.157us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 73.210ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 721.181us - OutputIndexResultColumnTimer: 59.395us - RawRowsRead: 1.480925M (1480925) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.455306M (1455306) - RowsShortCircuitPredInput: 1.480925M (1480925) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.39ms - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 199.191us PipelineXTask (index=3):(Active: 48.874ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 48.160ms - CloseTime: 48.346us - GetBlockTime: 441.465us - OpenTime: 452.952us - PrepareTime: 201.770us - SinkTime: 47.51ms - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 28.757ms - WaitBfTime: 449.172ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 660.509ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.154us - CompressTime: 0ns - ExecTime: 47.118ms - InputRows: 128.11K (128110) - LocalBytesSent: 7.45 MB - LocalSendTime: 385.82us - LocalSentRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 12.50 MB - MergeBlockTime: 0ns - OpenTime: 70.847us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 128.11K (128110) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 40.939ms - SplitBlockHashComputeTime: 4.8ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 136.84us - BlocksProduced: 39 - CloseTime: 34.526us - ExecTime: 366.498ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 509.211us - ProcessConjunctTime: 157.264us - ProjectionTime: 0ns - RowsProduced: 128.11K (128110) - RowsRead: 128.11K (128110) - RuntimeFilterInfo: - filter id = -1 filtered: 2.991358M (2991358) - filter id = -1 input: 3.247578M (3247578) - ScannerWorkerWaitTime: 220.822ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 365.537ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [120.304ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [220.822ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.793ms - MemoryUsage: - FreeBlocks: 2.57 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.196ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.343us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.945ms - ScannerCtxSchedTime: 220.808ms - ScannerFilterTime: 279.104us - ScannerGetBlockTime: 119.857ms - ScannerInitTime: 132.860us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 1.465us - BlockConditionsFilteredBloomFilterTime: 3.747us - BlockConditionsFilteredDictTime: 85.748us - BlockConditionsFilteredTime: 154.536us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.637us - BlockInitSeekCount: 26 - BlockInitSeekTime: 25.520us - BlockInitTime: 261.957us - BlockLoadTime: 138.928ms - BlocksLoad: 405 - CachedPagesNum: 1.162K (1162) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 86.99us - FirstReadTime: 2.944ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.694us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 128.912ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.825ms - OutputIndexResultColumnTimer: 44.823us - RawRowsRead: 1.623789M (1623789) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.495679M (1495679) - RowsShortCircuitPredInput: 1.623789M (1623789) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.379ms - TotalPagesNum: 1.162K (1162) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 187.416us PipelineXTask (index=4):(Active: 64.614ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 64.19ms - CloseTime: 47.470us - GetBlockTime: 539.861us - OpenTime: 335.394us - PrepareTime: 185.530us - SinkTime: 62.450ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.41ms - WaitBfTime: 449.615ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 624.291ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 48 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.522us - CompressTime: 0ns - ExecTime: 62.516ms - InputRows: 167.427K (167427) - LocalBytesSent: 9.74 MB - LocalSendTime: 462.657us - LocalSentRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 16.23 MB - MergeBlockTime: 0ns - OpenTime: 71.821us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 167.427K (167427) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 46.131ms - SplitBlockHashComputeTime: 13.970ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 111.396us - BlocksProduced: 46 - CloseTime: 33.755us - ExecTime: 371.505ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 397.558us - ProcessConjunctTime: 121.351us - ProjectionTime: 0ns - RowsProduced: 167.427K (167427) - RowsRead: 167.427K (167427) - RuntimeFilterInfo: - filter id = -1 filtered: 2.754106M (2754106) - filter id = -1 input: 3.08896M (3088960) - ScannerWorkerWaitTime: 321.664ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 370.563ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [45.762ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [321.664ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 43.370ms - MemoryUsage: - FreeBlocks: 3.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.150ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.182us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.203ms - ScannerCtxSchedTime: 321.643ms - ScannerFilterTime: 308.910us - ScannerGetBlockTime: 45.274ms - ScannerInitTime: 83.653us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.410us - BlockConditionsFilteredBloomFilterTime: 3.216us - BlockConditionsFilteredDictTime: 140.573us - BlockConditionsFilteredTime: 212.143us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.541us - BlockInitSeekCount: 25 - BlockInitSeekTime: 26.43us - BlockInitTime: 317.754us - BlockLoadTime: 45.428ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 88.297us - FirstReadTime: 2.656ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.754us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 35.117ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.130ms - OutputIndexResultColumnTimer: 36.704us - RawRowsRead: 1.54448M (1544480) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.377053M (1377053) - RowsShortCircuitPredInput: 1.54448M (1544480) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.740ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 165.150us PipelineXTask (index=5):(Active: 224.297ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 223.805ms - CloseTime: 46.893us - GetBlockTime: 778.711us - OpenTime: 268.881us - PrepareTime: 164.987us - SinkTime: 209.418ms - GetBlockCounter: 74 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 62.980ms - WaitBfTime: 443.894ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 495.4ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 72 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.284us - CompressTime: 0ns - ExecTime: 209.461ms - InputRows: 273.17K (273170) - LocalBytesSent: 15.89 MB - LocalSendTime: 909.229us - LocalSentRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 27.97 MB - MergeBlockTime: 0ns - OpenTime: 62.793us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 273.17K (273170) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 195.922ms - SplitBlockHashComputeTime: 9.53ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 73.330us - BlocksProduced: 74 - CloseTime: 33.683us - ExecTime: 257.392ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 329.2us - ProcessConjunctTime: 99.264us - ProjectionTime: 0ns - RowsProduced: 273.17K (273170) - RowsRead: 273.17K (273170) - RuntimeFilterInfo: - filter id = -1 filtered: 2.741612M (2741612) - filter id = -1 input: 3.287952M (3287952) - ScannerWorkerWaitTime: 176.459ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 256.283ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [52.593ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [176.459ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 49.537ms - MemoryUsage: - FreeBlocks: 5.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.251ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.212us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 55.704ms - ScannerCtxSchedTime: 176.448ms - ScannerFilterTime: 352.53us - ScannerGetBlockTime: 52.74ms - ScannerInitTime: 77.235us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 1.840us - BlockConditionsFilteredBloomFilterTime: 4.514us - BlockConditionsFilteredDictTime: 451.509us - BlockConditionsFilteredTime: 530.22us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.856us - BlockInitSeekCount: 31 - BlockInitSeekTime: 31.151us - BlockInitTime: 681.909us - BlockLoadTime: 52.58ms - BlocksLoad: 410 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 118.631us - FirstReadTime: 3.71ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.82us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 37.586ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.675ms - OutputIndexResultColumnTimer: 41.346us - RawRowsRead: 1.643976M (1643976) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.370806M (1370806) - RowsShortCircuitPredInput: 1.643976M (1643976) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.304ms - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 169.980us PipelineXTask (index=6):(Active: 150.340ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 149.727ms - CloseTime: 66.679us - GetBlockTime: 987.500us - OpenTime: 339.213us - PrepareTime: 195.940us - SinkTime: 147.998ms - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 70.236ms - WaitBfTime: 444.156ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 785.849ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.622us - CompressTime: 0ns - ExecTime: 148.46ms - InputRows: 329.927K (329927) - LocalBytesSent: 19.19 MB - LocalSendTime: 1.30ms - LocalSentRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 34.18 MB - MergeBlockTime: 0ns - OpenTime: 58.989us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 329.927K (329927) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 132.970ms - SplitBlockHashComputeTime: 9.739ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 134.636us - BlocksProduced: 91 - CloseTime: 40.808us - ExecTime: 415.665ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 419.124us - ProcessConjunctTime: 112.515us - ProjectionTime: 0ns - RowsProduced: 329.927K (329927) - RowsRead: 329.927K (329927) - RuntimeFilterInfo: - filter id = -1 filtered: 2.096866M (2096866) - filter id = -1 input: 2.75672M (2756720) - ScannerWorkerWaitTime: 232.208ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 414.258ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [155.182ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [232.208ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 151.266ms - MemoryUsage: - FreeBlocks: 6.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.160ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.785us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.604ms - ScannerCtxSchedTime: 232.202ms - ScannerFilterTime: 389.912us - ScannerGetBlockTime: 154.640ms - ScannerInitTime: 71.901us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 1.895us - BlockConditionsFilteredBloomFilterTime: 4.720us - BlockConditionsFilteredDictTime: 206.274us - BlockConditionsFilteredTime: 296.813us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 55.904us - BlockInitSeekCount: 35 - BlockInitSeekTime: 29.773us - BlockInitTime: 447.820us - BlockLoadTime: 154.471ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 109.608us - FirstReadTime: 2.693ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.187us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 84.415ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 59.239ms - OutputIndexResultColumnTimer: 43.792us - RawRowsRead: 1.37836M (1378360) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.048433M (1048433) - RowsShortCircuitPredInput: 1.37836M (1378360) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.967ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 164.334us PipelineXTask (index=7):(Active: 170.116ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 169.164ms - CloseTime: 74.671us - GetBlockTime: 1.204ms - OpenTime: 652.111us - PrepareTime: 213.526us - SinkTime: 166.707ms - GetBlockCounter: 114 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.316ms - WaitBfTime: 390.445ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 949.319ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 96 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.68us - CompressTime: 0ns - ExecTime: 166.727ms - InputRows: 394.725K (394725) - LocalBytesSent: 22.96 MB - LocalSendTime: 1.274ms - LocalSentRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 40.16 MB - MergeBlockTime: 0ns - OpenTime: 74.655us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 394.725K (394725) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 134.43ms - SplitBlockHashComputeTime: 12.460ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 201.367us - BlocksProduced: 114 - CloseTime: 57.48us - ExecTime: 451.228ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 707.371us - ProcessConjunctTime: 229.585us - ProjectionTime: 0ns - RowsProduced: 394.725K (394725) - RowsRead: 394.725K (394725) - RuntimeFilterInfo: - filter id = -1 filtered: 2.268508M (2268508) - filter id = -1 input: 3.057958M (3057958) - ScannerWorkerWaitTime: 280.97ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 449.325ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [173.756ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [280.097ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 169.739ms - MemoryUsage: - FreeBlocks: 7.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.521ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.312us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 67.417ms - ScannerCtxSchedTime: 280.83ms - ScannerFilterTime: 357.695us - ScannerGetBlockTime: 173.227ms - ScannerInitTime: 169.573us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 2.694us - BlockConditionsFilteredBloomFilterTime: 8.249us - BlockConditionsFilteredDictTime: 203.548us - BlockConditionsFilteredTime: 340.25us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 86.40us - BlockInitSeekCount: 33 - BlockInitSeekTime: 40.455us - BlockInitTime: 544.312us - BlockLoadTime: 173.204ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 114.512us - FirstReadTime: 2.874ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.773us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 155.588ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.761ms - OutputIndexResultColumnTimer: 41.779us - RawRowsRead: 1.528979M (1528979) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.134254M (1134254) - RowsShortCircuitPredInput: 1.528979M (1528979) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.635ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 171.907us PipelineXTask (index=8):(Active: 121.801ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 121.317ms - CloseTime: 85.901us - GetBlockTime: 804.735us - OpenTime: 214.656us - PrepareTime: 176.841us - SinkTime: 119.891ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.889ms - WaitBfTime: 402.599ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 962.83ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.246us - CompressTime: 0ns - ExecTime: 119.942ms - InputRows: 249.28K (249280) - LocalBytesSent: 14.50 MB - LocalSendTime: 796.226us - LocalSentRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 24.53 MB - MergeBlockTime: 0ns - OpenTime: 56.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 249.28K (249280) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 107.144ms - SplitBlockHashComputeTime: 8.175ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 59.829us - BlocksProduced: 68 - CloseTime: 58.552us - ExecTime: 395.165ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 285.702us - ProcessConjunctTime: 95.335us - ProjectionTime: 0ns - RowsProduced: 249.28K (249280) - RowsRead: 249.28K (249280) - RuntimeFilterInfo: - filter id = -1 filtered: 1.574774M (1574774) - filter id = -1 input: 2.073334M (2073334) - ScannerWorkerWaitTime: 213.833ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 394.51ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [171.735ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [213.833ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 169.979ms - MemoryUsage: - FreeBlocks: 5.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.183ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.393us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 46.482ms - ScannerCtxSchedTime: 213.824ms - ScannerFilterTime: 249.904us - ScannerGetBlockTime: 171.373ms - ScannerInitTime: 46.360us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.55us - BlockConditionsFilteredBloomFilterTime: 2.923us - BlockConditionsFilteredDictTime: 119.715us - BlockConditionsFilteredTime: 170.345us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.904us - BlockInitSeekCount: 25 - BlockInitSeekTime: 394.159us - BlockInitTime: 630.894us - BlockLoadTime: 171.686ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 72.449us - FirstReadTime: 72.805ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.828us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 80.114ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.582ms - OutputIndexResultColumnTimer: 28.216us - RawRowsRead: 1.036667M (1036667) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 787.387K (787387) - RowsShortCircuitPredInput: 1.036667M (1036667) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.440ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.46ms PipelineXTask (index=9):(Active: 102.395ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 101.762ms - CloseTime: 76.23us - GetBlockTime: 895.490us - OpenTime: 254.901us - PrepareTime: 284.846us - SinkTime: 100.187ms - GetBlockCounter: 95 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.751ms - WaitBfTime: 450.567ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 874.190ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.290us - CompressTime: 0ns - ExecTime: 100.236ms - InputRows: 325.275K (325275) - LocalBytesSent: 18.92 MB - LocalSendTime: 1.133ms - LocalSentRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 32.72 MB - MergeBlockTime: 0ns - OpenTime: 63.375us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 325.275K (325275) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 79.729ms - SplitBlockHashComputeTime: 10.421ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 87.26us - BlocksProduced: 95 - CloseTime: 50.688us - ExecTime: 312.563ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 314.608us - ProcessConjunctTime: 97.670us - ProjectionTime: 0ns - RowsProduced: 325.275K (325275) - RowsRead: 325.275K (325275) - RuntimeFilterInfo: - filter id = -1 filtered: 1.675472M (1675472) - filter id = -1 input: 2.326022M (2326022) - ScannerWorkerWaitTime: 212.981ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 311.344ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [93.965ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [212.981ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 92.209ms - MemoryUsage: - FreeBlocks: 6.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.453ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.375us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 46.282ms - ScannerCtxSchedTime: 212.972ms - ScannerFilterTime: 314.111us - ScannerGetBlockTime: 93.521ms - ScannerInitTime: 53.195us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.626us - BlockConditionsFilteredBloomFilterTime: 4.933us - BlockConditionsFilteredDictTime: 567.727us - BlockConditionsFilteredTime: 638.484us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.175us - BlockInitSeekCount: 26 - BlockInitSeekTime: 262.123us - BlockInitTime: 985.574us - BlockLoadTime: 93.931ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 106.369us - FirstReadTime: 2.197ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.942us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 79.684ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.318ms - OutputIndexResultColumnTimer: 35.815us - RawRowsRead: 1.163011M (1163011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 837.736K (837736) - RowsShortCircuitPredInput: 1.163011M (1163011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.438ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 128.389us PipelineXTask (index=10):(Active: 8.842ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.156ms - CloseTime: 45.832us - GetBlockTime: 151.771us - OpenTime: 442.118us - PrepareTime: 187.994us - SinkTime: 7.511ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.111ms - WaitBfTime: 420.906ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.928ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.225us - CompressTime: 0ns - ExecTime: 7.603ms - InputRows: 32.142K (32142) - LocalBytesSent: 1.87 MB - LocalSendTime: 75.863us - LocalSentRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 2.72 MB - MergeBlockTime: 0ns - OpenTime: 78.620us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 32.142K (32142) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 6.115ms - SplitBlockHashComputeTime: 917.30us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 154.609us - BlocksProduced: 9 - CloseTime: 27.669us - ExecTime: 75.728ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 497.700us - ProcessConjunctTime: 167.21us - ProjectionTime: 0ns - RowsProduced: 32.142K (32142) - RowsRead: 32.142K (32142) - RuntimeFilterInfo: - filter id = -1 filtered: 389.738K (389738) - filter id = -1 input: 454.022K (454022) - ScannerWorkerWaitTime: 10.273ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 75.55ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [35.221ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [10.273ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 34.974ms - MemoryUsage: - FreeBlocks: 2.34 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.981ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 573ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.671ms - ScannerCtxSchedTime: 10.271ms - ScannerFilterTime: 64.643us - ScannerGetBlockTime: 35.122ms - ScannerInitTime: 86.382us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 364ns - BlockConditionsFilteredBloomFilterTime: 1.42us - BlockConditionsFilteredDictTime: 38.405us - BlockConditionsFilteredTime: 55.468us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 9.33us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.647us - BlockInitTime: 87.600us - BlockLoadTime: 35.733ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 17.741us - FirstReadTime: 539.551us - IOTimer: 0ns - InvertedIndexFilterTime: 2.222us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 33.455ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 592.337us - OutputIndexResultColumnTimer: 12.374us - RawRowsRead: 227.011K (227011) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 194.869K (194869) - RowsShortCircuitPredInput: 227.011K (227011) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 702.776us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 31.744us PipelineXTask (index=11):(Active: 6.889ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.416ms - CloseTime: 51.49us - GetBlockTime: 174.702us - OpenTime: 230.437us - PrepareTime: 181.837us - SinkTime: 5.958ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.815ms - WaitBfTime: 450.813ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.776ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 12 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.688us - CompressTime: 0ns - ExecTime: 6.42ms - InputRows: 36.782K (36782) - LocalBytesSent: 2.14 MB - LocalSendTime: 73.806us - LocalSentRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 3.06 MB - MergeBlockTime: 0ns - OpenTime: 73.16us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 36.782K (36782) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 4.391ms - SplitBlockHashComputeTime: 1.37ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=4. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : RuntimeFilter: (id = 0, type = minmax), RuntimeFilter: (id = 1, type = in_or_bloomfilter), - PushDownPredicates: [{USER_ID IN [13302448394, 13302448474, 13302448532, 13302448536, 13302448575, 13302448605, 13302448606, 15338781239, 15338781240, 15338781256, 17722474805, 17727477340, 17727478256, 17727563971, 17727564315, 17727814803, 17727819873, 17727825360, 17727827352, 17727845583, 17727848497, 17727928350, 18002564854, 18128821002, 18128821062, 18128821080, 18129979387, 18129979389, 18194066816, 18923783749, 18923898279, 18925251114, 18926578135, 18926578326, 18926792337, 18926792502, 18928464495, 18938023519, 18938056034, 18948188020, 18948188021, 18948188026, 18948188227, 18948711373, 18948782782, 19128326453, 19129367910, 19129401029, 19129413243, 19129415753, 19129490170, 19129514633, 19129535052, 19129981687, 19129981697, 19146442712, 19146445973, 19146466129, 19146482283, 19924515439, 19924924859, 19925317549, 19925367959, 19925371462, 19925384869, 19925391465, 19925460261, 19925489907, 19926428343, 19926554572, 19926822852, 19928734421, 19928841361, liangq, linjx, liupl, liuyn, lvlx, penghw, zhangsb]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 86.810us - BlocksProduced: 10 - CloseTime: 34.853us - ExecTime: 56.375ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 286.642us - ProcessConjunctTime: 89.926us - ProjectionTime: 0ns - RowsProduced: 36.782K (36782) - RowsRead: 36.782K (36782) - RuntimeFilterInfo: - filter id = -1 filtered: 412.336K (412336) - filter id = -1 input: 485.9K (485900) - ScannerWorkerWaitTime: 6.396ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 55.882ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 0, type = minmax): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 1, type = in_or_bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: in - InFilterSize: 80 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, EXTERNAL_USER_DELETE_FLAG, USER_DELETE_FLAG] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=1, opposite=false - PerScannerRunningTime: [44.398ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [6.396ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 44.158ms - MemoryUsage: - FreeBlocks: 2.69 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 716.735us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 566ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.507ms - ScannerCtxSchedTime: 6.394ms - ScannerFilterTime: 59.560us - ScannerGetBlockTime: 44.305ms - ScannerInitTime: 34.964us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 394ns - BlockConditionsFilteredBloomFilterTime: 814ns - BlockConditionsFilteredDictTime: 15.430us - BlockConditionsFilteredTime: 29.712us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.720us - BlockInitSeekCount: 8 - BlockInitSeekTime: 11.957us - BlockInitTime: 65.820us - BlockLoadTime: 44.708ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 25.692us - FirstReadTime: 582.622us - IOTimer: 0ns - InvertedIndexFilterTime: 1.475us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 42.256ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 611.526us - OutputIndexResultColumnTimer: 7.847us - RawRowsRead: 242.95K (242950) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 206.168K (206168) - RowsShortCircuitPredInput: 242.95K (242950) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 829.177us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 30.416us Fragment 151: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 842.501ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 841.999ms - CloseTime: 55.651us - GetBlockTime: 6.689ms - OpenTime: 169.304us - PrepareTime: 266.306us - SinkTime: 833.422ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 16 - NumYieldTimes: 4 - PendingFinishTimes: 0 - TaskCpuTime: 281.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 793.499ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 497 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.596us - CompressTime: 0ns - ExecTime: 833.392ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 91.34 MB - LocalSendTime: 29.480ms - LocalSentRows: 2.082156M (2082156) - MemoryUsage: - PeakMemoryUsage: 160.30 MB - MergeBlockTime: 0ns - OpenTime: 142.224us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 700.81ms - SplitBlockHashComputeTime: 82.205ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 670ns - BlocksProduced: 514 - CloseTime: 35.265us - ExecTime: 478.619ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 258.967us - ProcessConjunctTime: 35.870us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 309.842ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 471.773ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [165.152ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [309.842ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 162.258ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.141ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.574us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.722ms - ScannerCtxSchedTime: 309.824ms - ScannerFilterTime: 464.259us - ScannerGetBlockTime: 164.399ms - ScannerInitTime: 93.810us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 2.144us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.618us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 29.25us - BlockInitTime: 178.892us - BlockLoadTime: 163.788ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.192ms - FirstReadTime: 161.223ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.707us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 173.130us - OutputIndexResultColumnTimer: 68.172us - RawRowsRead: 2.082156M (2082156) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.349K (1349) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=1):(Active: 819.798ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 819.459ms - CloseTime: 68.551us - GetBlockTime: 2.870ms - OpenTime: 106.329us - PrepareTime: 156.34us - SinkTime: 814.752ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 14 - NumYieldTimes: 3 - PendingFinishTimes: 0 - TaskCpuTime: 296.899ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 793.807ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 501 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.410us - CompressTime: 0ns - ExecTime: 814.651ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 91.52 MB - LocalSendTime: 34.39ms - LocalSentRows: 2.086234M (2086234) - MemoryUsage: - PeakMemoryUsage: 161.32 MB - MergeBlockTime: 0ns - OpenTime: 69.513us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 535.234ms - SplitBlockHashComputeTime: 152.789ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 640ns - BlocksProduced: 514 - CloseTime: 49.158us - ExecTime: 453.917ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 159.214us - ProcessConjunctTime: 25.70us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 241.637ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 451.12ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [215.570ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [241.637ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 212.814ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.291ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.655us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 96.128ms - ScannerCtxSchedTime: 241.622ms - ScannerFilterTime: 446.196us - ScannerGetBlockTime: 214.888ms - ScannerInitTime: 62.511us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.672us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.696us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 26.930us - BlockInitTime: 115.493us - BlockLoadTime: 214.555ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.651ms - FirstReadTime: 212.122ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.822us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 171.58us - OutputIndexResultColumnTimer: 71.186us - RawRowsRead: 2.086234M (2086234) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 720.393ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 719.993ms - CloseTime: 49.174us - GetBlockTime: 2.638ms - OpenTime: 188.66us - PrepareTime: 152.885us - SinkTime: 715.318ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 14 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 320.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 806.571ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 499 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.800us - CompressTime: 0ns - ExecTime: 715.200ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 91.56 MB - LocalSendTime: 5.451ms - LocalSentRows: 2.087045M (2087045) - MemoryUsage: - PeakMemoryUsage: 161.45 MB - MergeBlockTime: 0ns - OpenTime: 66.377us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 564.650ms - SplitBlockHashComputeTime: 120.538ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 575ns - BlocksProduced: 515 - CloseTime: 29.960us - ExecTime: 521.285ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 247.694us - ProcessConjunctTime: 33.962us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 267.569ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 518.545ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [222.276ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [267.569ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 219.496ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.50ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.522us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 98.572ms - ScannerCtxSchedTime: 267.553ms - ScannerFilterTime: 502.22us - ScannerGetBlockTime: 221.521ms - ScannerInitTime: 130.150us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.191us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.248us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 15.456us - BlockInitTime: 102.538us - BlockLoadTime: 220.976ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.375ms - FirstReadTime: 218.440ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.383us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 169.827us - OutputIndexResultColumnTimer: 72.293us - RawRowsRead: 2.087045M (2087045) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 728.532ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 728.115ms - CloseTime: 45.507us - GetBlockTime: 2.606ms - OpenTime: 176.430us - PrepareTime: 184.478us - SinkTime: 723.602ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 14 - NumYieldTimes: 2 - PendingFinishTimes: 0 - TaskCpuTime: 291.92ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 978.791ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 502 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.928us - CompressTime: 0ns - ExecTime: 723.495ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 91.55 MB - LocalSendTime: 5.474ms - LocalSentRows: 2.086892M (2086892) - MemoryUsage: - PeakMemoryUsage: 161.61 MB - MergeBlockTime: 0ns - OpenTime: 65.441us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 455.400ms - SplitBlockHashComputeTime: 227.671ms - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 440ns - BlocksProduced: 515 - CloseTime: 27.720us - ExecTime: 434.782ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 237.55us - ProcessConjunctTime: 52.387us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 247.50ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 432.73ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [182.455ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [247.050ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 179.853ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.785ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.50us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.493ms - ScannerCtxSchedTime: 247.30ms - ScannerFilterTime: 475.910us - ScannerGetBlockTime: 181.735ms - ScannerInitTime: 75.494us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 2.133us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.708us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 22.782us - BlockInitTime: 158.591us - BlockLoadTime: 181.901ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.680ms - FirstReadTime: 179.290ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.195us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 0ns - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 156.215us - OutputIndexResultColumnTimer: 69.86us - RawRowsRead: 2.086892M (2086892) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 0ns - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Fragment 152: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 106.768ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 53.349ms - CloseTime: 44.527us - GetBlockTime: 64.749us - OpenTime: 53.231ms - PrepareTime: 133.718us - SinkTime: 20.13us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 717.207us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.716ms DATA_STREAM_SINK_OPERATOR (id=1,dst_id=1): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.127us - CompressTime: 0ns - ExecTime: 57.419us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 9.438us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.174us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 80 - RpcAvgTime: 0ns - RpcCount: 0 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=0. table name = ODS_EXCEL_QYWX_ZONGBU): - RuntimeFilters: : - PushDownPredicates: [{TYPE_ID IN [01]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 715ns - BlocksProduced: 1 - CloseTime: 29.236us - ExecTime: 280.924ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 53.290ms - ProcessConjunctTime: 78.328us - ProjectionTime: 3.932us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 227.257ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 227.536ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [23.388us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [227.257ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.345us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 143.908us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 123ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 295.95us - ScannerCtxSchedTime: 227.255ms - ScannerFilterTime: 735ns - ScannerGetBlockTime: 19.455us - ScannerInitTime: 86.972us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 193ns - BlockConditionsFilteredBloomFilterTime: 840ns - BlockConditionsFilteredDictTime: 3.762us - BlockConditionsFilteredTime: 12.806us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.342us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.377us - BlockInitTime: 40.547us - BlockLoadTime: 70.815us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.854us - FirstReadTime: 6.371us - IOTimer: 0ns - InvertedIndexFilterTime: 1.65us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.178us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.732us - OutputIndexResultColumnTimer: 88ns - RawRowsRead: 109 - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 29 - RowsVectorPredInput: 109 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 31ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.872us LoadChannels: